Skip to main content

Used to lock object during testing. Essentially changing assertions from being hard coded to asserting that nothing changed

Project description

PyTest-Locker

Example

PyTest-Locker: The fastest way to check for unexpected changes between test runs

actions batch pypi python versions codecov License: MIT Code style: black

The general concept

In essense Pytest-Locker changes the basis of testing from having to assert everything that is relevant about an object to only having to assert that an object should not change unexpectedly (i.e. the object is locked).

This, of course, implies that the pytest-locker approach makes a lot of sense when the assertion logic becomes complex. I found it especially handy when testing if I'm sending the right API calls.

Since objects can be just about anything in python (output, state, or even function calls via mocking) you can use this approach for just about everything.

Since you need to validate if the object to lock is correct, both in the first run and after desired modifications, the test flow is slightly different:

pytest-locker's flow diagram

Why use PyTest-Locker

  • Time efficient: No need to hard code expected responses. (Especially usefull for data heavy unittests)

  • Easy to verify changes:

    • Seperates the logic of the test from the expected values.
    • The lock files (containing the expected values), and changes to them, are easy to interpret. This makes it really simple to evaluate changes during testing, in commits and in pull request.

Install

run pip install pytest-locker

Usage

Configuring the project and writing your first test.

  1. Add from pytest_locker import locker to your conftest.py file
  2. To access the locker by adding it to the method parameters i.e. def test_example(locker)
  1. Use locker.lock(your_string, optional_name) to lock the data (of-course you can also lock other types).
  2. Ensure that the pytest rootdir is fixed. See the pytest customize documentation for all the options (one is adding a pytest.ini to the root folder)
  3. Ensure that .pytest_locker/ is synced via git, to ensure that you, your team, and your CI/CD pipelines are working with the same data.

And you're all set!

Accepting the current behavior and checking fo changes in this behavior

There are two modes based on for locking. The first is

  1. When user input is allowed, i.e. when running pytest with --capture no or -s

    When user input is allowed and the given data does not correspond to the data in the lock the user is prompted if the new data should be stored or if the tests should fail.

  2. When user input is captured which is default behavior for pytest

    If user input is not allowed the tests will automatically fail if the expected lock file does not exist or if the data does not correspond to the data in the lock file.

The Locker class

You can also use pytest_locker.Locker (i.e. the class of which the locker fixture returns an instance) directly to create fixtures that locks a (non-string) object without needing to turn the object into a string it.

Examples

For example of use look at the tests in repr-utils.

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

pytest_locker-0.3.0.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_locker-0.3.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file pytest_locker-0.3.0.tar.gz.

File metadata

  • Download URL: pytest_locker-0.3.0.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.8 Linux/6.8.0-1017-azure

File hashes

Hashes for pytest_locker-0.3.0.tar.gz
Algorithm Hash digest
SHA256 973748990c2e5b2b014068fbfa1356ee23d5d17a17756d20054ffd0d30086edc
MD5 24b5f917fafce1b18e6beb5149906c1a
BLAKE2b-256 d119e1de1e1b7057331086d908078dfabecbd67e705e09c502e4e2a3a03a8b6e

See more details on using hashes here.

File details

Details for the file pytest_locker-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_locker-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.8 Linux/6.8.0-1017-azure

File hashes

Hashes for pytest_locker-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 89f9bf518beb93ff123f8abcf46b5b94160498b9b2fbbe4a86e6a29e66bbb33e
MD5 e0a3df77b9ba915a5a350317d2d2c48b
BLAKE2b-256 b702e6bd4d778b82f2203c20266b790762c45936650b5d959c46ca934f5c6c99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page