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 only fail when the number of non-compliant lines of code increases. This ensures future code does not have bad patterns, while allowing old code to coexist until it is phased out.

Installation

Required

pip install ratchets

Optional

Note: 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()"""
]
description = "Bare except clauses catch all exceptions indiscriminately. This can hide bugs and important exceptions. To mitigate this, explicitly state the exception types that will be handled in the except clause."

The valid and invalid entries are not necessary, but we provide a CLI utility to verify the regular expressions don't exist in the valid strings and do exist in the invalid strings. This can be ran with:

python3 -m ratchets.validate

If you are testing a .toml file that is not the repository default, it can be specified with:

python3 -m ratchets.validate -t FILENAME

The description entry is also optional, but if provided, it will be included in the output of failing PyTest tests.

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'"
description = "Black sets the max line-width to 88 to help with the readability of code. Ensure all lines have <89 characters. You can run 'black FILENAME' to fix this issue."

This is an example of an awk command being used to print each line that has more than 88 characters (this is the default line-length 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 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: __main__.py [-h] [-t TOML_FILE] [-f FILES [FILES ...]] [-s] [-r] [-v] [-b] [--clear-cache] [-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
  --clear-cache         clear the blame cache
  -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

Note: Ensure you add .ratchet_blame.db to your .gitignore file when using the --blame option. This is the location Ratchets caches blame evaluations to improve performance for larger codebases.

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.10.tar.gz (27.8 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.10-py3-none-any.whl (27.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ratchets-0.2.10.tar.gz
  • Upload date:
  • Size: 27.8 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.10.tar.gz
Algorithm Hash digest
SHA256 dce4f9740e5388ca0628d3608ffcd9cd24940b8c2cfb67e75a8ce7af97a74f9d
MD5 4a2db9c33829393dff006bfacf0d702e
BLAKE2b-256 85485d897b5f86c033c75fd9a995dd6ee84d92fd3b899c0d856f2936465c6cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ratchets-0.2.10-py3-none-any.whl
  • Upload date:
  • Size: 27.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.10-py3-none-any.whl
Algorithm Hash digest
SHA256 173f00a8719bc54b9416d0b36357dad85d86c42a0526bd6a3f4a8603e5340301
MD5 400e2074155d55e38705dff50bfc30f2
BLAKE2b-256 836ecfda6156d85f18549bbf9d541c42873d54a0f201d16e2f710fb793b9707c

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