roave / infection-static-analysis-plugin
Static analysis on top of mutation testing - prevents escaped mutants from being invalid according to static analysis
Installs: 2 779 213
Dependents: 426
Suggesters: 0
Security: 0
Stars: 121
Watchers: 8
Forks: 17
Open Issues: 15
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0
- composer-runtime-api: ^2.2
- infection/infection: 0.27.10
- sanmai/later: ^0.1.4
- vimeo/psalm: ^4.30.0 || ^5.15
Requires (Dev)
- doctrine/coding-standard: ^12.0.0
- phpunit/phpunit: ^10.5.12
- 1.36.x-dev
- 1.35.x-dev
- 1.35.0
- 1.34.x-dev
- 1.34.0
- 1.33.x-dev
- 1.33.0
- 1.32.x-dev
- 1.32.0
- 1.31.x-dev
- 1.31.0
- 1.30.x-dev
- 1.30.0
- 1.29.x-dev
- 1.29.0
- 1.28.x-dev
- 1.28.0
- 1.27.x-dev
- 1.27.0
- 1.26.x-dev
- 1.26.0
- 1.25.x-dev
- 1.25.0
- 1.24.x-dev
- 1.24.0
- 1.23.x-dev
- 1.23.0
- 1.22.x-dev
- 1.22.0
- 1.21.x-dev
- 1.21.0
- 1.20.x-dev
- 1.20.0
- 1.19.x-dev
- 1.19.0
- 1.18.x-dev
- 1.18.0
- 1.17.x-dev
- 1.17.0
- 1.16.x-dev
- 1.16.0
- 1.15.x-dev
- 1.15.0
- 1.14.x-dev
- 1.14.0
- 1.13.x-dev
- 1.13.0
- 1.12.x-dev
- 1.12.0
- 1.11.x-dev
- 1.11.1
- 1.11.0
- 1.10.x-dev
- 1.10.0
- 1.9.x-dev
- 1.9.0
- 1.8.x-dev
- 1.8.0
- 1.7.x-dev
- 1.7.1
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- dev-renovate/all-minor-patch
- dev-renovate/phpunit-phpunit-11.x
- dev-renovate/lock-file-maintenance
- dev-temp-1.26.0-with-php-8.0-support
- dev-1.9.0-php-7.4.3-support
This package is auto-updated.
Last update: 2024-10-30 01:29:01 UTC
README
This plugin is designed to run static analysis on top of infection/infection
test runs in order to discover if escaped mutants
are valid mutations, or if they do not respect the type signature of your
program. If the mutation would result in a type error, it is "killed".
TL;DR:
- This will improve your mutation score, since mutations which result in type errors become killed.
- This is very hacky, and replaces
vendor/bin/infection
essentially. Please read theStability
section below first for details. - This is currently much slower than running infection by itself. There are ideas/suggestions to improve this in the future.
Usage
The current design of this tool requires you to run vendor/bin/roave-infection-static-analysis-plugin
instead of running vendor/bin/infection
:
composer require --dev roave/infection-static-analysis-plugin vendor/bin/roave-infection-static-analysis-plugin
Configuration
The roave-infection-static-analysis-plugin
binary accepts all of infection
flags and arguments, and an additional --psalm-config
argument.
Using --psalm-config
, you can specify the psalm configuration file to use when analysing the generated mutations:
vendor/bin/roave-infection-static-analysis-plugin --psalm-config config/psalm.xml
Background
If you come from a statically typed language with AoT compilers, you may be confused about the scope of this project, but in the PHP ecosystem, producing runnable code that does not respect the type system is very easy, and mutation testing tools do this all the time.
Take for example following snippet:
/** * @template T * @param array<T> $values * @return list<T> */ function makeAList(array $values): array { return array_values($values); }
Given a valid test as follows:
function test_makes_a_list(): void { $list = makeAList(['a' => 'b', 'c' => 'd']); assert(count($list) === 2); assert(in_array('b', $list, true)); assert(in_array('d', $list, true)); }
The mutation testing framework will produce following mutation, since we failed to verify the output in a more precise way:
/** * @template T * @param array<T> $values * @return list<T> */ function makeAList(array $values): array { - return array_values($values); + return $values; }
The code above is valid PHP, but not valid according to our type declarations.
While we can indeed write a test for this, such test would probably be
unnecessary, as existing type checkers can detect that our actual return value is
no longer a list<T>
, but a map of array<int|string, T>
, which is in conflict
with what we declared.
This plugin detects such mutations, and prevents them from making you write unnecessary tests, leveraging the full power of existing PHP type checkers such as phpstan and psalm.
Stability
Since infection/infection
is not yet
designed to support plugins, this tool uses a very aggressive approach to bootstrap
itself, and relies on internal details of the underlying runner.
To prevent compatibility issues, it therefore always pins to a very specific version
of infection/infection
, so please be patient when you wish to use the latest and
greatest version of infection/infection
, as we may still be catching up to it.
Eventually, we will contribute patches to infection/infection
so that there is a
proper way to design and use plugins, without the need for dirty hacks.
PHPStan? Psalm? Where's my favourite static analysis tool?
Our initial scope of work for 1.0.x
is to provide vimeo/psalm
support as a start,
while other static analysers will be included at a later point in time.