Skip to main content

Ratcheted testing in Python.

Project description

Ratchets

Tests that lazily enforce a requirement across the entire repository.

What is it?

Ratchets is a lazy way to enforce code compliance on an ongoing basis. This is done by defining regular expressions and shell commands to run against all non-excluded python files in a given repository. Tests pass when the number of non-compliant instances of code decreases and fail when they increase. This ensures future code does not have bad patterns, while still allowing old code to coexist until it is phased out.

Installation

Required

pip install ratchets

Optional

This is only required if you plan to use Ratchets with PyTest.

pip install pytest

Usage

First, create a tests.toml file at the root of your repository. See tests.toml for an example of how this should look. There are two primary rule types that can be defined in the tests.toml file.

ratchet.regex

These are tests that check regular expressions for each line of code in each file being examined.

Example:

[ratchet.regex.exceptions]
regex = "except:"
valid = [
  """try:
    x = 1
except ValueError:
    pass""",
  """try:
    do_something()
except (IOError, ValueError):
    handle()"""
]
invalid = [
  """
try:
    pass
except:
    pass""",
  """try:
    dangerous()
except:
    recover()"""
]

The valid and invalid entries are not necessary, but we provide a CLI utility, executable with python3 -m ratchets.validate, to verify the regular expressions don't exist in the valid string and do exist in the invalid string. If you are testing a .toml file that is not the repository default, specify it with python3 -m ratchets.validate -f FILENAME.

ratchet.shell

These are tests that run against each file where each evaluation is of the form:

FILEPATH | SHELL_COMMAND

The standard output of the command is assumed to describe infractions, and the number of lines dictates the total number of infractions. It should also be noted that internally we perform a lookup for the line number based on the standard output. As such, ensure the standard output is the exact same text from the line that contains infractions.

Example:

[ratchet.shell.line_too_long]
command = "xargs -n1 awk 'length($0) > 88'"

This is an example of an awk command being used to print each line that has more than 88 characters (the default for black. As these are printed, they are counted as infractions.

Updating Ratchets

Once your rules are defined, you need to count the infractions. This is done by running.

python3 -m ratchets -u

This creates a ratchet_values.json file in the root of your project. This should be checked into git to manage state.

Excluding Files

Once the update command has been executed, the ratchet_excluded.txt file is created at the root of the repository. By default, this file is empty, but standard .gitignore syntax can be used to specify files that shouldn't be included in tests. Additional files that won't be tested are files specified in your gitignore and files that don't have the extension .py.

Running as part of PyTest

To set up tests, we provide an example file at examples/example_test_ratchet.py, which defines tests to be ran with PyTest. In this file there are two uncommented methods that runs one test per rule in both sections (regex and shell).

The commented methods aggregate these tests together into two total tests (regex and shell).

When creating your PyTest file, ensure it is being indexed by PyTest. If you are unsure what this means, create a file named test_ratchet.py in the root of your project.

Running Tests

Running tests is as simple as running pytest from the root of the repository or specifying the testing file with pytest test_ratchet.py.

Additional Functionality

Beyond a seamless integration with PyTest, Ratchets provides functionality to find the location of infringements. This and other functionality can be found by running:

python3 -m ratchets --help

Where you will see the following help message describing CLI usage for Ratchets:

usage: run_tests.py [-h] [-t TOML_FILE] [-f FILES [FILES ...]] [-s] [-r] [-v] [-b] [-m MAX_COUNT] [-c] [-u]

Python ratchet testing

options:
  -h, --help            show this help message and exit
  -t TOML_FILE, --toml-file TOML_FILE
                        specify a .toml file with tests
  -f FILES [FILES ...], --files FILES [FILES ...]
                        specify file(s) to evaluate
  -s, --shell-only      run only shell-based tests
  -r, --regex-only      run only regex-based tests
  -v, --verbose         run verbose tests, printing each infringing line
  -b, --blame           run an additional git-blame for each infraction, ordering results by timestamp
  -m MAX_COUNT, --max-count MAX_COUNT
                        maximum infractions to display per test (only applies with --blame; default is 10)
  -c, --compare-counts  show only the differences in infraction counts between the current and last saved tests
  -u, --update-ratchets
                        update ratchets_values.json

Testing Ratchets Locally

To run the tests for the source code of Ratchets, you can clone this repository with:

git clone https://github.com/andrewlaack/ratchets/

Then cd into ratchets and run PyTest. The tests use the installed version of Ratchets from your virtual environment. This means you must ensure changes to source files are applied to your installed ratchets package prior to running the tests.

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

ratchets-0.2.0.tar.gz (25.0 kB view details)

Uploaded Source

Built Distribution

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

ratchets-0.2.0-py3-none-any.whl (24.1 kB view details)

Uploaded Python 3

File details

Details for the file ratchets-0.2.0.tar.gz.

File metadata

  • Download URL: ratchets-0.2.0.tar.gz
  • Upload date:
  • Size: 25.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for ratchets-0.2.0.tar.gz
Algorithm Hash digest
SHA256 66ac0514f1e713ecfea6860cdb56db0dc21393f96700b382ee17bc87460abe4c
MD5 ddc1fdf1545b1ec1c7f55bcc6a0db848
BLAKE2b-256 35a1b0ce1b7c1dd836063dcf1941eb2e452640bf4595fe75efc6807c77cb5223

See more details on using hashes here.

File details

Details for the file ratchets-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: ratchets-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for ratchets-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b6bb87b076a7fe3215db29d7a399f08c33038759906170979d4d5a37446df00f
MD5 09f18b854b2fc60133868cfc5847f984
BLAKE2b-256 a1a7e5fc904559d2890ccb68d2372c3319f05576285ce12ae449efb10a30f63c

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