Automatically mock your Postgres interactions to simplify and speed up testing
Project description
Asyncpg Recorder
Installation
uv add asyncpg-recorder
Usage
import asyncpg
from asyncpg_recorder import use_cassette
async def query():
con = await asyncpg.connect(DSN)
res = await con.fetch("SELECT NOW();")
await con.close()
return res
@use_cassette
def test_select_now_replay():
query()
When using pytest parametrized fixtures put the @use_cassette decorator on the test function not the fixture:
import asyncpg
from asyncpg_recorder import use_cassette
import pytest
import pytest_asyncio
@pytest_asyncio.fixture(params=[False, True])
async def param(request):
return request.param
@pytest.mark.asyncio
@pytest.mark.usefixtures("param")
@use_cassette
async def test_parametrized_fixtures(path):
async def query():
con = await asyncpg.connect(DSN)
res = await con.fetch("SELECT NOW();")
await con.close()
return res
await select_version()
If you want to save the cassettes in a specific directory, set the variable cassettes-dir in your pyproject.toml. The path should be relative to pyproject.toml.
[tool.asyncpg-recorder]
"cassettes-dir"="tests/cassettes"
Caveats
The same database request on Python >= 3.14 yields a different hash for cassette entry than on Python <= 3.13. If it is important to run tests against both Python version ranges you need to record twice.
Development
uv run prek install # pre-commit
uv run pytest
Release
This project uses SemVer.
To make a new release run ./scripts/release.sh <version number>.
Limitation
- Works only with pytest
- Depends on testcontainers
- Testcontainers is used to boot up a temporary Postgres instance to which asyncpg will be connected.
- This slows test suite down.
Project details
Release history Release notifications | RSS feed
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 asyncpg_recorder-0.10.2.tar.gz.
File metadata
- Download URL: asyncpg_recorder-0.10.2.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e1e4fe055eccc9149a9b8a1948668c6fc36b22b38378aa2f07b307e5a1afc7e
|
|
| MD5 |
5a62b51054530ee046f19cb294b76fec
|
|
| BLAKE2b-256 |
151e4a4002065b7055b58f786fa32b5e991fbb0eef8cb0fbe2a41871cc69cb80
|
File details
Details for the file asyncpg_recorder-0.10.2-py3-none-any.whl.
File metadata
- Download URL: asyncpg_recorder-0.10.2-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1df86f5475393637da89a1fb700735f6c2138807e4a96835ff7ffb6012cf5a63
|
|
| MD5 |
4bd60d2ff9b5bac18d49f5c02e461f44
|
|
| BLAKE2b-256 |
155150d7e11f62bb24ded19d83a17c29a6345736878d899e6a953b0581a6c5e5
|