Skip to main content

A pytest fixture for high-precision SQL testing in SQLAlchemy.

Project description

pytest-capquery

Build Status Codecov Python Version License

Testing your business logic is good, but documenting and testing your database interactions is critical.

pytest-capquery treats your SQL queries as first-class citizens in your Pytest suite. By capturing and asserting the exact queries executed, you create a living documentation of what is truly happening behind the ORM abstraction.

This plugin does not force any specific SQLAlchemy architectural changes or optimization strategies. It delegates all design decisions to the developer, acting strictly as a deterministic guardrail. Once you've optimized your query footprint, pytest-capquery locks it in, ensuring cross-dialect equality, validating exact transaction boundaries (BEGIN, COMMIT, ROLLBACK), and catching silent N+1 regressions the second they are introduced.

Key Features

  • Contextual Isolation: Use the capture() context manager to track queries locally without global state leakage or manual resets.
  • SQL Snapshots: Automatically generate and track expected .sql snapshots to easily document executed queries without cluttering test files.
  • Strict Timeline Assertion: Validate the exact chronological sequence of SQL strings and transaction events.
  • Auto-Generating Assertions: When explicit assertions fail, the plugin drops a fully formatted, copy-paste-ready Python block into stdout.
  • Heuristic Guards: Use "loose assertion" mode to enforce maximum query counts.

Used By

pytest-capquery is actively used to protect the database performance of:


Installation

Install via pip:

pip install pytest-capquery

Quick Start

The capquery fixture captures all SQLAlchemy statements executed by your code. The best practice is to use the capture() context manager to isolate specific execution phases.

1. Documenting with SQL Snapshots (Recommended)

The most efficient way to document and protect your queries is by utilizing physical snapshots. This automatically compares execution behavior against tracked .sql files stored in a __capquery_snapshots__ directory.

def test_update_user_status(sqlite_session, capquery):
    # Enable assert_snapshot to verify execution against the disk
    with capquery.capture(assert_snapshot=True):
        user = sqlite_session.query(User).filter_by(id=1).first()
        user.status = "active"
        sqlite_session.commit()

Workflow: When writing a new test or updating existing query logic, run Pytest with the update flag to automatically generate or overwrite the snapshot files:

pytest --capquery-update

Future runs without the flag will strictly assert that the runtime queries perfectly match the generated .sql file.

2. Manual Explicit Assertions (Verbose)

If you prefer to explicitly document the executed SQL directly inside your test cases, you can use strict manual assertions.

def test_update_user_status(sqlite_session, capquery):
    with capquery.capture() as phase:
        user = sqlite_session.query(User).filter_by(id=1).first()
        user.status = "active"
        sqlite_session.commit()

    # Verify the precise chronological timeline of the transaction
    phase.assert_executed_queries(
        "BEGIN",
        (
            """
            SELECT users.id, users.status
            FROM users
            WHERE users.id = ?
            """,
            (1,)
        ),
        (
            """
            UPDATE users SET status=? WHERE users.id = ?
            """,
            ("active", 1)
        ),
        "COMMIT"
    )

Auto-Generation on Failure: Maintaining long SQL strings can be tedious. If your code changes and the assertion fails, pytest-capquery will intercept the failure and drop the correct Python assertion block directly into your terminal's stdout. Simply copy and paste the block from your terminal directly into your test to instantly fix the regression!

3. Preventing N+1 Queries (Loose Assertion)

If you want to protect a block of code against N+1 regressions without hardcoding exact SQL strings, you can enforce a strict expected query count at the context boundary:

def test_fetch_users(sqlite_session, capquery):
    # Enforce that exactly 1 query is executed inside this block.
    # If a lazy-loading loop triggers extra queries, this will raise an AssertionError.
    with capquery.capture(expected_count=1):
        users = sqlite_session.query(User).all()
        for user in users:
            _ = user.address

Contributing

We welcome contributions to make this plugin even better! To ensure a smooth process, please follow these steps:

  1. Open an Issue: Before writing any code, please open an issue to discuss the feature, enhancement, or bug fix you have in mind.
  2. Contribute the Code: Once discussed, fork the repository, create your branch, make your changes, and submit a Pull Request.
  3. Review & Release: All PRs will be reviewed. Once approved and merged, the release process will be managed by the maintainer.

Developer Setup

To get your local environment ready for contribution, run the following commands. We prioritize a Test-Driven Development (TDD) workflow to continuously monitor database interactions.

# Clone the repository
git clone https://github.com/fmartins/pytest-capquery.git
cd pytest-capquery

# Install Python, dependencies, and pre-commit hooks
make setup

# Start the TDD watcher (auto-runs tests and updates snapshots on file changes)
make tdd

Makefile Reference

make help

Usage:
  make <target>

Targets:
  help                 Show this help message
  setup                Full local setup: install pyenv python, create venv, and install deps
  setup-env            Install local python version via pyenv (macOS/Linux dev only)
  install              Create venv and install dependencies
  db-up                Start Docker Compose databases
  db-down              Tear down Docker Compose databases
  test                 Run all tests with code coverage and test analytics
  tdd                  Run tests in watch mode for test-driven development
  clean                Remove virtual environment and cached files
  format               Run formatters for python, markdown, yaml, and json files
  check-format         Check if files comply with formatting rules (for CI)

License

This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0).

Author: Felipe Cardoso Martins

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_capquery-0.3.0.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

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

pytest_capquery-0.3.0-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytest_capquery-0.3.0.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytest_capquery-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5c79eb30bb4fe1949543212790978e430c8a65df7e61ce8a0e96468768e674b7
MD5 79b50f0ae503da78cc73c03d06b83f73
BLAKE2b-256 3aed4e108d6d0f4441d3ed63419940b792fc597535e5d533e4e88e58fd97212b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_capquery-0.3.0.tar.gz:

Publisher: publish.yml on fmartins/pytest-capquery

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pytest_capquery-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 417e49440893faa9e7ddb86860ab4d716729fd295a571bcc27a4544b976f0286
MD5 32998776fba2358ad3d2b9927b83d78c
BLAKE2b-256 44a25a0f2ad31e4e36bef9f440fc0245b9f42bdca7a01140a369b9f0d8df9c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_capquery-0.3.0-py3-none-any.whl:

Publisher: publish.yml on fmartins/pytest-capquery

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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