A linter to scrutinize how you are using mocks in Python.
Project description
Pillory
A linter to scrutinize how you are using mocks in Python.
If you often hear or make the comment "patch the import not the definition" or spend a lot of time explaining or helping people debug mocks, this linter could help you.
Usage
Install from PyPI with pip:
pip install pillory
Run pillory on the current directory:
python -m pillory
Or give a specific file, directory, or glob:
python -m pillory 'tests/**/test_*.py'
Rules
PM101 patched implementation : You patched the implementation of a class or function instead of where it is imported to in the module under test. e.g. "parsers.Parser" where Parser is defined instead of "main.Parser" where it is used. This means you may not have affected the module under test at all, or you have replaced the target in a way which will affect other code that uses it, which is bad for test isolation (making sure tests don't affect other tests, and that each test tests what is intended and don't change how other parts of the code work). There is a warning about not affecting the right module in the Python Standard Library docs, but there is an even better article by Ned Batchelder explaining how it works and the additional problems with test isolation.
PM102 patched is not a top level module attribute : You patched something like a method on a class. Because class methods can't be imported by themselves, this means all uses of the class will be affected, not just the module under test.
PM103 patched builtins : You patched the builtins module instead of the built-in function in the module under test. Built-ins are actually added to every module and that's where they should be patched, to avoid similar issues to patching the implementation. There is a CPython detail that means the builtins module may be added to the lookup of each module, so patching the builtins module can work, but it's not guaranteed and it still has problems with test isolation.
Known issues
- No --help text.
- No console script entry point (pillory command), have to use with python -m.
- Only takes one path or glob.
- Only tested with Python 3.10.
- No config file support.
- No comments to ignore rules.
- Not fast.
- Globs have to be relative to the current directory.
- No further explanations for the errors.
- No pretty error handling, just tracebacks.
- Will error when mocking something in the module under test, which is arguably "OK".
- No pre-commit integration.
What's with the name?
I thought it was funny that mock can also mean "make fun of" as well as the meaning of "mimic" that we use in testing. I imagined the linter cruelly calling out how you are using mocks incorrectly. Except I couldn't call it "mock", or "mock mocker", that would be confusing! So I picked a name with a similar meaning, and starting with a P for that Python feeling.
Contributing
Thank you for your interest in making a contribution.
Please talk to the maintainer before making a pull request to make sure what you are adding is wanted.
This project uses the Apache License 2.0. You will be credited in the git history, but for ease of maintenance copyright stays with the maintainer.
There are linters, formatters, and tests as part of the CI. You can check them yourself locally too. To set up the linters as a pre-commit hook:
# Install the dev dependencies if not done already
pip install -r dev-requirements.txt
# Install the pre-commit hooks
pre-commit install
You can run the linters on command with:
pre-commit run -a
The unit tests are supposed to be fast tests for testing logic in a test driven developement style. They shouldn't have mocking or accounting for side effects. You can run them with:
python test_pillory.py
The example tests have a more complicated setup to include the file system and command line args. Try to limit the number of example tests. The tests use doctest to easily check the outputs. You can run them with:
python test_example.py -v
To run all the different tests and see the coverage given you can use:
make
The default make target is the coverage report in HTML format. You can look at the file in a browser, or if you don’t want to leave the terminal but still want a line by line coverage report, you can use browsh as your browser. You can run the tests, start a HTTP server, and view the report in browsh with this oneliner:
( make && cd build/htmlcov && python -m http.server 8081 &>/dev/null & browsh http://localhost:8081 ; kill $! )
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
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 pillory-1.1.1.tar.gz.
File metadata
- Download URL: pillory-1.1.1.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4c20ad2f25db568e5677b7c12a37ff8628184f632adb685512e03452dffbade
|
|
| MD5 |
0d9e63de26c058023c531e4ba3a253a0
|
|
| BLAKE2b-256 |
b320ab2c9422ba9abaca152fab28d987483273242a6c8cf0a72e89d34b23fdb2
|
File details
Details for the file pillory-1.1.1-py2.py3-none-any.whl.
File metadata
- Download URL: pillory-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
729f143c4628d89512a49b8ad3872d14db21c882bd745ffbb949f5c868528e73
|
|
| MD5 |
90d1366c84f5c536c0566475ae88758f
|
|
| BLAKE2b-256 |
93c94eca2efe16c156a852494f652b78539dd1daee3a9b9b403ca6647399517a
|