This is a pytest plugin, that enables you to test your code that relies on a running PostgreSQL Database. It allows you to specify fixtures for PostgreSQL process and client.
Warning
Tested on PostgreSQL versions > 9.x. See tests for more details.
Plugin contains two fixtures
- postgresql - it's a client fixture that has functional scope. After each test it ends all leftover connections, and drops test database from PostgreSQL ensuring repeatability.
- postgresql_proc - session scoped fixture, that starts PostgreSQL instance at it's first use and stops at the end of the tests.
Simply include one of these fixtures into your tests fixture list.
You can also create additional postgresql client and process fixtures if you'd need to:
from pytest_postgresql import factories
postgresql_my_proc = factories.postgresql_proc(
port=None, logsdir='/tmp')
postgresql_my = factories.postgresql('postgresql_my_proc')Note
Each PostgreSQL process fixture can be configured in a different way than the others through the fixture factory arguments.
You can define your settings in three ways, it's fixture factory argument, command line option and pytest.ini configuration option. You can pick which you prefer, but remember that these settings are handled in the following order:
Fixture factory argumentCommand line optionConfiguration option in your pytest.ini file
| PostgreSQL option | Fixture factory argument | Command line option | pytest.ini option | Default |
|---|---|---|---|---|
| Path to executable | executable | --postgresql-exec | postgresql_exec | /usr/lib/postgresql/9.1/bin/pg_ctl |
| host | host | --postgresql-host | postgresql_host | 127.0.0.1 |
| port | port | --postgresql-port | postgresql_port | random |
| postgresql user | user | --postgresql-user | postgresql_user | postgres |
| Starting parameters | startparams | --postgresql-startparams | postgresql_startparams | -w |
| Log directory location | logsdir | --postgresql-logsdir | postgresql_logsdir | $TMPDIR |
| Log filename's prefix | logsprefix | --postgresql-logsprefix | postgresql_logsprefix | |
| Location for unixsockets | unixsocket | --postgresql-unixsocketdir | postgresql_unixsocketdir | $TMPDIR |
Example usage:
pass it as an argument in your own fixture
postgresql_proc = factories.postgresql_proc( port=8888)
use
--postgresql-portcommand line option when you run your testspy.test tests --postgresql-port=8888
specify your port as
postgresql_portin yourpytest.inifile.To do so, put a line like the following under the
[pytest]section of yourpytest.ini:[pytest] postgresql_port = 8888