Pytest plugin to load resource files relative to test code and to expect values to match them.
Project description
pytest-respect
Pytest plugin to load resource files relative to test code and to expect values to match them. The name is a contraction of resources.expect, which is frequently typed when using this plugin.
Motivation
The primary use-case is running tests over moderately large datasets where adding them as constants in the test code would be cumbersome. This happens frequently with integration tests or when retrofitting tests onto an existing code-base.
Examples
Json Data
The absolute simplest example is the following test:
def test_compute(resources):
input = resources.load_json("input")
output = compute(input)
resources.expect_json(output, "output")
If it is found in a file called foo/test_stuff.py, then it will load the content of
foo/test_stuff/test_compute__input.json, run the
compute function on it, and assert that the output exactly matches the content of the file
foo/test_stuff/test_compute__output.json.
Pydantic Models
With the optional
pydantic extra, the same can be done with pydantic data if you have models for your input and output data:
def test_compute(resources):
input = resources.load_pydantic(InputModel, "input")
output = compute(input)
resources.expect_pydantic(output, "output")
The input and output paths will be identical, since we re-used the name of the test function.
Failing Tests
If one of the above expectations fails, then a new file is created at foo/test_stuff/test_compute__output__actual.json with the actual value passed to the expect function, as well as the usual diff from pytest's assert. You can then use your existing diff tools to compare the expected and actual values and even to pick individual changes from the actual file before fixing the code to deal with any remaining differences.
Once the test passes, the actual file will be removed. Note that if you change the name of a test after an actual file has been created, the actual file will have to be deleted manually.
Parametric Tests
The load and expect (and other) methods can take multiple strings for the resource file name parts. Above we only used "input" and "output" parts and failures implicitly added an "actual" part. We can pass in as many parts as we like, which nicely brings us to parametric tests:
@pytest.mark.paramtrize("case", ["red", "blue", "green"])
def test_compute(resources, case):
input = resources.load_json("input", case)
output = compute(input)
resources.expect_json(output, "output", case)
Omitting directory name, this test will load each of test_compute__input__red.json, test_compute__input__blue.json, test_compute__input__green.json and compare the results to test_compute__output__red.json, test_compute__output__blue.json, test_compute__output__green.json
Installation
Install with your favourite package manager such as:
pip install pydantic-respectpoetry add --dev pydantic-respectuv add --dev pydantic-respect
See your package management tool for details, especially on how to install optional extra dependencies.
Extras
The following extra dependencies are required for additional functionality:
poetry- Load, save, and expect pydantic models or arbitrary data through type adapters.numpy- Convert numpy arrays and scalars to python equivalents when generating JSON both in save and expect.jsonyx- Alternative JSON encoder for semi-compact files, numeric keys, trailing commas, etc.
The resources Fixture
The main entry point to the library is the resources fixture. Each method is fully documented in-line so here we will discuss clusters of functionality and list the members.
Load
- To Document:
load_text,load_json,load_pydantic,load_pydantic_adapter
Save
- To Document:
save_text,save_json - To Implement:
save_pydantic,save_pydantic_adapter
Delete
- To Document:
delete,delete_json - To Implement:
delete_text,delete_pydantic
Expect
- To Document:
expect_text,expect_json,expect_pydantic - To Implement:
expect_pydantic_adapter
Utilities
- To Document:
path,dir,json_to_text
Path Makers
- To Implement
JSON Enocders
- To Implement
Configuration
- To Implement
Development
Installation
- Install uv
- Run
uv sync --all-extras - Run
pre-commit installto enable pre-commit linting. - Run
pytestto verify installation.
Testing
This is a pytest plugin so you're expected to know how to run pytest when hacking on it. Additionally,
scripts/pytest-extras runs the test suite with different sets of optional extras. The CI Pipelines will go through an equivalent process for each Pull Request.
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 pytest_respect-0.1.1.tar.gz.
File metadata
- Download URL: pytest_respect-0.1.1.tar.gz
- Upload date:
- Size: 59.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c222cb9918191245013ddb4e8e4f11851da98878de992c698f64b9c8d58d00
|
|
| MD5 |
9a9a23c0fb85390aec630c6dcdabace3
|
|
| BLAKE2b-256 |
59d339c81cd26d1b26641b4dfd9b791eaa8d15465dbf404a505fbf22d380ec98
|
File details
Details for the file pytest_respect-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pytest_respect-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e05f91d03f33ce3874322e6b8adb3ef606136015cb7e97482897deca19b76586
|
|
| MD5 |
0a2e5fbf90851d7e512bd0fb3bd948b4
|
|
| BLAKE2b-256 |
eb9b05e68dddf1ff3855ffdd6ac466879ce2a8a2752485400c341c2ca3aa5612
|