Python mutation testing: test your tests!
Project description
mutatest: Python mutation testing
Are you confident in your tests? Try out mutatest and see if your tests will detect small modifications (mutations) in the code. Surviving mutations represent subtle changes that are undetectable by your tests. These mutants are potential modifications in source code that continuous integration checks would miss.
Features
Simple command line tool with multiple configuration options.
Built on Python’s Abstract Syntax Tree (AST) grammar to ensure mutants are valid.
No source code modification, only the __pycache__ is changed.
Uses coverage to create only meaningful mutants.
Built for efficiency with multiple running modes and random sampling of mutation targets.
Flexible enough to run on a whole package or a single file.
Includes an API for custom mutation controls.
Example Output
This is an output example running mutation trials against the API Tutorial example folder example folder.
$ mutatest -s example/ -t "pytest" -r 314
Running clean trial
2 mutation targets found in example/a.py AST.
1 mutation targets found in example/b.py AST.
Setting random.seed to: 314
Total sample space size: 2
10 exceeds sample space, using full sample: 2.
Starting individual mutation trials!
Current target location: a.py, LocIndex(ast_class='BinOp', lineno=6, col_offset=11, op_type=<class '_ast.Add'>)
Detected mutation at example/a.py: (6, 11)
Detected mutation at example/a.py: (6, 11)
Surviving mutation at example/a.py: (6, 11)
Break on survival: stopping further mutations at location.
Current target location: b.py, LocIndex(ast_class='CompareIs', lineno=6, col_offset=11, op_type=<class '_ast.Is'>)
Detected mutation at example/b.py: (6, 11)
Running clean trial
Mutatest diagnostic summary
===========================
- Source location: /home/user/Github/mutatest/docs/api_tutorial/example
- Test commands: ['pytest']
- Mode: s
- Excluded files: []
- N locations input: 10
- Random seed: 314
Random sample details
---------------------
- Total locations mutated: 2
- Total locations identified: 2
- Location sample coverage: 100.00 %
Running time details
--------------------
- Clean trial 1 run time: 0:00:00.348999
- Clean trial 2 run time: 0:00:00.350213
- Mutation trials total run time: 0:00:01.389095
Trial Summary Report:
Overall mutation trial summary
==============================
- DETECTED: 3
- SURVIVED: 1
- TOTAL RUNS: 4
- RUN DATETIME: 2019-10-17 16:57:08.645355
Detected mutations:
DETECTED
--------
- example/a.py: (l: 6, c: 11) - mutation from <class '_ast.Add'> to <class '_ast.Sub'>
- example/a.py: (l: 6, c: 11) - mutation from <class '_ast.Add'> to <class '_ast.Mod'>
- example/b.py: (l: 6, c: 11) - mutation from <class '_ast.Is'> to <class '_ast.IsNot'>
Surviving mutations:
SURVIVED
--------
- example/a.py: (l: 6, c: 11) - mutation from <class '_ast.Add'> to <class '_ast.Mult'>
Documentation
For full documentation, including installation, CLI references, API references, and tutorials, please see https://mutatest.readthedocs.io/en/latest/. The project is hosted on PyPI at https://pypi.org/project/mutatest/.
Bugs/Requests
Please use the GitHub issue tracker to submit bugs or request features. See Contributing Guidelines if you are interested in submitting code in the form of pull requests.
ChangeLog
Consult the Changelog page for fixes and enhancements of each version.
License
Copyright Evan Kepner 2018-2019.
Distributed under the terms of the MIT license, mutatest is free and open source software.
Changelog
Beta Releases
2.0.1
Explicit including of typing-extensions in setup.py requirements to fix breaking documentation builds on Python version 3.7 vs. 3.8.
2.0.0
Python 3.8 support! There are breaking changes with the LocIndex and other components of the transformers from prior versions of mutatest. Python 3.8 introduces a new AST structure - including additional node attributes end_lineno and end_col_offset that have to be accounted for. transformers.MutateAST is now build from a base class and a mixin class depending on the Python version (3.7 vs. 3.8) for the appropriate AST treatment. There are no changes in the CLI usage.
1.2.1
Bugfix to ensure exclude path processing in GenomeGroup.add_folder always uses full resolved paths for files.
1.2.0
Feature #18: Allow mutation trials to time out. There are cases where a mutation could cause an infinite loop, such as changing the comparator in a while statement e.g., while x < 5 becomes while x >= 5. A new --timeout_factor argument is added to set a cap on the maximum trial time as a multiplier of the clean-trial run.
Bugfix on using exclude where files were logged but still becoming part of the sample.
1.1.1
Bug Fix #15: Fix LocIndex.ast_class setting for Index node mutations.
1.1.0
Add support for a mutatest.ini configuration file for command line arguments.
1.0.1
Documentation updates, including the API tutorial.
Fix on latest mypy errors related to strict processing of run and cache.
1.0.0
Moving from the alpha to the beta version with an API design. The alpha releases were focused on defining the functionality of the CLI. In the beta version, the CLI remains unchanged; however, a full internal design has been applied to create a coherent API. The controller, optimizers, and maker modules have been fully replaced by run, api, and filters. See the new full API documentation for details on using these modules outside of the CLI.
Additionally, pytest was removed from the installation requirements since it is assumed for the default running modes but not required for the API or installation.
Alpha Releases
0.9.2
Added --exception and -x as a survivor tolerance to raise an exception after the trial completes if the count of surviving mutants is greater than or equal to the specified value.
0.9.1
Added --whitelist and --blacklist with category codes for mutation families.
Provides CLI selection of mutation types to be used during the trials.
0.9.0
- Added new If mutation:
Original statements are represented by If_Statement and mutated to be either If_True where the statement always passes, or If_False where the statement is never passed.
0.8.0
- Breaking changes to the CLI arguments and new defaults:
Output files are now optional, the default behavior has changed from always writing an RST file using the -o option on the command line.
Exclusions are still marked as -e; however, now multiple -e arguments are supported and arguments must point to a Python file. The argument used to be: mutatest -e "__init__.py _devtools.py" and now it is mutatest -e src/__init__.py -e src/_devtools.py. There are no longer default exclusions applied.
Improved CLI reporting, including selected test counts and line/col locations for trial results while processing.
0.7.1
Internal changes to Slice mutations for clearer categorization and report output.
Includes clearing names to Slice_Swap and Slice_RangeChange for categories.
Updates operation names to Slice_Unbounded... with “lower” or “upper”.
0.7.0
- Added new slice mutations:
Slice_SwapNoneUL and Slice_SwapNoneLU for swapping the upper and lower bound values when only one is specified e.g. x[1:] to x[:1].
Slice_UPosToZero and Slice_UNegToZero for moving the upper bound of a slice by 1 unit e.g. x[1:5] becomes x[1:4].
0.6.1
Added explicit tests for argparse cli options.
Added mechanism to sort reporting mutations by source file, then line number, then column number.
0.6.0
Including pytest in the installation requirements. Technically, any test runner can be used but with all base package assumptions being built around pytest this feels like the right assumption to call out as an install dependency. It is the default behavior.
Updated controller for test file exclusion to explicitly match prefix or suffix cases for "test_" and "_test" per pytest conventions.
Changed error and unknown status results to console color as yellow instead of red.
Added multiple invariant property tests, primarily to controller and cache.
Added hypothesis to the test components of extras_require.
Moved to @property decorators for internal class properties that should only be set at initialization, may add custom setters at a later time.
Fixed a zero-division bug in the cli when reporting coverage percentage.
0.5.0
Addition of optimizers, including the new class CoverageOptimizer.
This optimizer restricts the full sample space only to source locations that are marked as covered in the .coverage file. If you have a pytest.ini that includes the --cov= command it will automatically generate during the clean-trial run.
0.4.2
More behind the scenes maintenance: updated debug level logging to include source file names and line numbers for all visit operations and separated colorized output to a new function.
0.4.1
Updated the reporting functions to return colorized display results to CLI.
0.4.0
- Added new mutation support for:
AugAssign in AST e.g. += -= *= /=.
Index substitution in lists e.g. take a positive number like i[1] and mutate to zero and a negative number e.g. i[-1] i[0].
Added a desc attribute to transformers.MutationOpSet that is used in the cli help display.
Updated the cli help display to show the description and valid members.
0.3.0
Added new mutation support for NameConstant in AST.
This includes substitutions for singleton assignments such as: True, False, and None.
This is the first non-type mutation and required adding a readonly parameter to the transformers.MutateAST class. Additionally, the type-hints for the LocIndex and MutationOpSet were updated to Any to support the mixed types. This was more flexible than a series of overload signatures.
0.2.0
- Added new compare mutation support for:
Compare Is mutations e.g. is, is not.
Compare In mutations e.g. in, not in.
0.1.0
Initial release!
Requires Python 3.7 due to the importlib internal references for manipulating cache.
Run mutation tests using the mutatest command line interface.
Supported operations:
BinOp mutations e.g. + - / * including bit-operations.
Compare mutations e.g. == >= < <= !=.
BoolOp mutations e.g. and or.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mutatest-2.0.1-py37-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d16ac2a92eaec18b8fad2fa4938436a497abdadc04aaf397e8bb1cfece972bb2 |
|
MD5 | 7a06e103cc04a778a1f093493c0b19bd |
|
BLAKE2b-256 | 4a4743a5842aeb9536ac2033ce6a16ad64dfc9941aae6e512559733fd1df8087 |