Skip to main content

PonyORM in Pytest

Project description

PyPI version Python versions See Build Status on Travis CI

PonyORM in Pytest


Plugin for use Pony ORM in Pytest.

This Pytest plugin was generated with Cookiecutter along with @hackebrot’s Cookiecutter-pytest-plugin template.

Features

  • Access Database instance (db) via ponydb fixture

  • Mark tests to auto allow use of pony.orm.db_session

  • Database is by default cleared after each test

  • Database reset can be cancelled for test/class/module

Requirements

Tested from Pony ORM >= ‘0.7.3’ and python : 3.5, 3.6

Installation

You can install “pytest-ponyorm” via pip from PyPI:

$ pip install pytest-ponyorm
or
$ pipenv install -d pytest-ponyorm

Usage

First, configure PONY_DB in pytest.ini. PonyORM main Database instance module location must be specified in pytest.ini to make it work : for example if db is in /path/models/main.py, you must configure like this :

[pytest]
    PONY_DB=path.models.main

Then just apply the pony marker :

# models.py

db = Database()

# test.py

@pytest.mark.pony
def my_test(ponydb):
    new_mod = ponydb.Mymodel(name="me",...)

You can mark a class or function with @pytest.mark.pony or the whole module with pytestmark = pytest.mark.pony

The marker pony takes one argument : reset_db, default is True. In this case the marked test doesn’t reset the database at ending.

    # test.py
pytestmark = pytest.mark.pony # marks all tests of the module

def test1:
    pass

def test2:
    pass

@pytest.mark.pony(reset_db=False)
def test 3:
    pass

# test3 will use database in the state that test2 left it.

About Reseting Database:

Test database tables are dropped/recreate before the test SESSION.

Initialy this plugin did drop/recreate table for each test. Due to perfomance reason, this has changed. Now tables are cleared but not dropped.

Sql sequences like “auto PrimaryKey” will also be reset but actually, it’s only supported for PostgreSQL and Sqlite. For other databases, Primarykey might not start at 1 for each test. This has to be considered when writing tests.

About Fixtures :

Fixtures should not use db_session decorator or context manager. Each test is automaticaly run inside a db_session and each operation inside fixtures will be commited at test start.

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the GNU GPL v3.0 license, “pytest-ponyorm” is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

Changelog

0.3.1 :
  • sql sequence reset for postgre and sqlite

  • testing py35/36 and pg/sqlite

0.3.0 :
  • made faster with just deleting database entries after each test

  • no drop/recreate

  • db_session splitted into 2 hooks, not anymore in a fixture

0.2.9 :
  • add fixture autocommit before run test

0.2.0 :
  • add marker

0.1.5 :
  • add db_session for each test

0.1.0 :
  • auto clear database

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-ponyorm-0.3.3.tar.gz (17.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_ponyorm-0.3.3-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file pytest-ponyorm-0.3.3.tar.gz.

File metadata

  • Download URL: pytest-ponyorm-0.3.3.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15rc1

File hashes

Hashes for pytest-ponyorm-0.3.3.tar.gz
Algorithm Hash digest
SHA256 8c17bf7cdb339d55bbe83d03e173bcf68d619b539bd957d12968834ca7e8b75b
MD5 00715c48f9c55d27cda5461c428107ea
BLAKE2b-256 2c3e74746d08ef121a88808159acbb6af00e3af0023efac81acc23ae49d6569b

See more details on using hashes here.

File details

Details for the file pytest_ponyorm-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: pytest_ponyorm-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 4.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15rc1

File hashes

Hashes for pytest_ponyorm-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e387ce9572b64a63c9aa2b74391c24a21ef75e855c1b390fb5e7d862df0b25fb
MD5 348b020bd3594f233a6f049765aa4e68
BLAKE2b-256 b8d110de94c4363d2f13957e6f5659cef9294add8215cf401118fed771693347

See more details on using hashes here.

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