Structural coverage for Python
Project description
cfgcoverage
A Python package to analyze and verify structural coverage criteria for Python programs using control-flow graphs (CFGs). Currently: all-nodes, all-edges (and essential edges), edge pairs and prime paths.
V 0.1 - This is a very early, highly experimental version.
V 0.1.1 - Fixes module execution. Include new criteria: essential edges, edge pairs and prime paths. Still a very early, highly experimental version.
V 0.1.2 - Introduces
--reportargument.
V 0.1.3 - Fixes Prime Paths requirements calculation. Includes
--csvoption and--fargument to set infeasible requirements.
Installation
pip install cfgcoverage
🚀 How to Use
Analyzes the file foo.py, builds its control-flow graphs, and stores the internal analysis data in foo.py.cfg.
python -m cfgcoverage foo.py
Executes foo.py with instrumentation and records covered blocks and edges.
python -m cfgcoverage --run foo.py
Executes foo.py with arguments ['bar', '1972'] and records the covered structural requirements.
python -m cfgcoverage --run --args "bar 1972" foo.py
Runs foo.py using the test cases defined in test_foo.py.
The --unittest argument can be used multiple times in a command line.
Both --run and --unittest execute cumulatively relative to previous runs. To reset the coverage count, the cfgcoverage command must be run without arguments, as shown previously.
python -m cfgcoverage --unittest test_foo.py foo.py
python -m cfgcoverage --unittest tests/test_foo.py src/foo.py
python -m cfgcoverage --unittest test_a.py --unittest test_b.py foo.py
You can also use one or more --path <folder path> arguments to include additional folders in sys.path when executing unit tests. In this way, imports will also be searched in these folders.
python -m cfgcoverage --path src --unittest tests/test_foo.py src/foo.py
python -m cfgcoverage --path src --path tests --unittest tests/test_foo.py src/foo.py
Creates an HTML report in html/foo.py/index.html using the data stored in foo.py.cfg.
python -m cfgcoverage --html foo.py
Generate a text report using the data stored in foo.py.cfg
python -m cfgcoverage --report foo.py
Generate a report with only the total coverage numbers
python -m cfgcoverage --report --total foo.py
Remove one or some of the requirements from all test criteria. For example, remove(5,2) means that the edge will be removed from the all-edges criterion and that all paths containing that arc will also be removed from the other criteria.
If an edge is removed along with the --recalc parameter, then the requirements of the other criteria are recalculated, including the essential edges criterion. And, in that case, the execution data is discarded.
The first number indicates the function from which the requirement is to be removed. The remaining numbers represent the edge or path that should be removed. The --f argument can be used to read infeasible requirements from a text file. This file must contain one infeasible requirement per line and must not contain empty lines, including at the end of the file.
python -m cfgcoverage --infeasible "1 5 2" "2 7 9 5 1" foo.py
python -m cfgcoverage --infeasible "1 5 2" --recalc foo.py
python -m cfgcoverage --infeasible --f infeasible_foo.txt foo.py
Creates CSV files that show, for each test requirement (spreadsheet rows), whether or not they are covered by the test cases (spreadsheet columns) contained in the unittest files mentioned in the command line. Note that coverage is not updated in the ".cfg" file; it is only recorded in the CSV files. More than one test file can be used in the same command.
python -m cfgcoverage --csv --unittest test_foo.py foo.py
python -m cfgcoverage --csv --unittest test_a.py --unittest test_b.py foo.py
🔍 Example
python3 -m cfgcoverage example.py
Example output:
Function: foo -- 1
Function: foo.inner -- 2
Run time: 0.00052
python3 -m cfgcoverage --run example.py
Example output:
Run time: 0.00071
python3 -m cfgcoverage --unittest test_example.py example.py
Example output:
.
----------------------------------------------------------------------
Ran 1 test in 0.000s
OK
Run time: 0.00110
python3 -m cfgcoverage --html example.py
Example output:
File generated at: html/example.py/index.html
📊 Coverage Criteria
The current HTML report includes the following criteria for each analyzed function:
- Blocks
- Edges
- Essential edges
- Edge Pairs
- Prime paths
📝 Notes
- The analysis stores its internal data in a file named
<source_file>.cfg. - HTML reports depend on previously generated
.cfgdata. - The tool analyzes functions and nested functions found in the source file.
- For each execution, the coverage data from previous executions is accumulated, not replaced.
- The HTML report is generated per source file and organized under the
html/folder. - To use visualization features, install Graphviz on your system and make sure the
dotexecutable is available on your PATH.
👤 Author
Marcio Delamaro
📄 License
MIT
🤝 Contributions
Feel free to contact the author.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cfgcoverage-0.1.3.tar.gz.
File metadata
- Download URL: cfgcoverage-0.1.3.tar.gz
- Upload date:
- Size: 33.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
720e14ea95ba30a8a92524a45a19aeef3a8d048b053de0e7a4b6c57d53f3d049
|
|
| MD5 |
0a0ec081e3f72d79f1eba2419c1288f8
|
|
| BLAKE2b-256 |
3ba2ff13ea3c3b230d07d3d3d0b26c392aa353af62e670e19614d19f3cb02928
|
File details
Details for the file cfgcoverage-0.1.3-py3-none-any.whl.
File metadata
- Download URL: cfgcoverage-0.1.3-py3-none-any.whl
- Upload date:
- Size: 34.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ace889a6220c6a27a9138b12afbf7db6dd86e54e687f1982163e70fcc73a7caf
|
|
| MD5 |
aa1d73f9cfdae645002ff6fa0666a25a
|
|
| BLAKE2b-256 |
72bf6471891e7903b6ec9e8ed9add2439342c0bc6c893c52422825e3d9164374
|