Skip to main content

automatically setups a postgresql instance in a temporary directory, and destroys it after testing

Project description

testing.postgresql automatically setups a postgresql instance in a temporary directory, and destroys it after testing

Install

Use easy_install (or pip):

$ easy_install testing.postgresql

And testing.postgresql requires PostgreSQL server in your PATH.

Usage

Create PostgreSQL instance using testing.postgresql.Postgresql:

import testing.postgresql
postgresql = testing.postgresql.Postgresql()  # Lanuch new PostgreSQL server

# connect to PostgreSQL
from sqlalchemy import create_engine
engine = create_engine(postgresql.url())

# if you use postgresql or other drivers:
#   import psycopg2
#   db = psycopg2.connect(**postgresql.dsn())

#
# do any tests using PostgreSQL...
#

del postgresql                     # Terminate PostgreSQL server

testing.postgresql.Postgresql executes initdb and postmaster on instantiation. On deleting Postgresql object, it terminates PostgreSQL instance and removes temporary directory.

If you want a database including tables and any fixtures for your apps, use copy_data_from keyword:

# uses a copy of specified data directory of PostgreSQL.
postgresql = testing.postgresql.Postgresql(copy_data_from='/path/to/your/database')

You can specify parameters for PostgreSQL with my_cnf keyword:

# boot PostgreSQL server without socket listener (use unix-domain socket)
postgresql = testing.postgresql.Postgresql(my_cnf={'skip-networking': None})

For example, you can setup new PostgreSQL server for each testcases on setUp() method:

import unittest
import testing.postgresql

class MyTestCase(unittest.TestCase):
    def setUp(self):
        self.postgresql = testing.postgresql.Postgresql(my_cnf={'skip-networking': None})

Requirements

  • Python 2.7, 3.3

  • psycopg2

License

Apache License 2.0

History

1.0.0 (2013-12-04)

  • Add @skipIfNotFound decorator

0.1.0 (2013-11-26)

  • First release

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

testing.postgresql-1.0.0.tar.gz (9.0 kB view details)

Uploaded Source

File details

Details for the file testing.postgresql-1.0.0.tar.gz.

File metadata

File hashes

Hashes for testing.postgresql-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e41f6360967b3878fd20ee212e85797d8aaa4e8c3bce4a60997a1bd929bd2ca6
MD5 3c60e9227cba06e2c566c6d23c8c41d9
BLAKE2b-256 4e74e6e3b8dbe7af0d8710a111adf0fdbfbb4704860dfe2aba418e83a24ed8f3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page