PostgreSQL testing helpers
Project description
Postgresql Testing
Simple Postgres helpers for testing with Python - no docker, brew, apt, etc - uses postgresql-binaries. The interface is simple, but close enough to the metal that you can use it to eg. have a new database per testing thread/use a fresh database from a TEMPLATE or archive.
pip install 'postgresql-testing[15]'
Then to use with pytest, eg:
import postgresql_testing
@pytest.fixture(scope="session")
def db() -> Iterator[str]:
config = postgresql_testing.DatabaseConfig.default("testing-db")
postgresql_testing.initdb(config.directory, on_existing="use")
with postgresql_testing.serve(config):
postgresql_testing.ensure_user(config)
postgresql_testing.create_database(config, on_existing="replace")
yield config.dsn
There are various useful flags and things - the source code is short enough to just dive in.
You can spin up a fresh db for immediate testing with:
postgresql-testing-serve postgres://testing:@localhost:8421/my-db
Bundled for good measure is a local-first copy of explain.dalibo.com
Get your query plan by:
EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON) SELECT ...
Then copy and:
pbpaste | postgresql-testing-explain
There are a couple of helpers for creating/using template dbs and archives. I have some vague long term plan for some kind of "Docker layers for migrated databases" with clever caching (or not), but I'm not quite sure what it looks like yet.
Some benchmarking:
| number of tables | create from template | dump to archive | create from archive |
|---|---|---|---|
| 100 | 80ms | 80ms (0.2MB) | 150ms |
| 1000 | 500ms | 300ms (2MB) | 1100ms |
On macos using a ramdisk, it is slightly quicker:
| number of tables | create from template | dump to archive | create from archive |
|---|---|---|---|
| 100 | 70ms | 70ms | 120ms |
| 1000 | 350ms | 300ms | 1000ms |
See claims/advice from planet Go.
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 postgresql_testing-0.0.8.tar.gz.
File metadata
- Download URL: postgresql_testing-0.0.8.tar.gz
- Upload date:
- Size: 288.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 |
a755161f529709f3e9d8cb4e18ddded74a44e660b41a9d98c9b65135d91f5274
|
|
| MD5 |
c3076799ba8eddc5fc34d58fd57fb37e
|
|
| BLAKE2b-256 |
cb829c6b649c6d64accbf30941e4f76feb2badd2f2f32044e0f3b3110bc81ab5
|
File details
Details for the file postgresql_testing-0.0.8-py3-none-any.whl.
File metadata
- Download URL: postgresql_testing-0.0.8-py3-none-any.whl
- Upload date:
- Size: 289.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 |
a2d59eed63a85867213cab5c36abf2b05285ea7aba969132f201e6fba2ef4179
|
|
| MD5 |
869738b27d6bce19cc3ce49f54d525fa
|
|
| BLAKE2b-256 |
2cae35417a2395e1e3a04776f14148568871e67188d7c026ae45ecb342bddd1f
|