.. image:: https://img.shields.io/pypi/v/pytest-ponyorm.svg :target: https://pypi.python.org/pypi/pytest-ponyorm :alt: PyPI version
.. image:: https://img.shields.io/pypi/pyversions/pytest-ponyorm.svg :target: https://pypi.python.org/pypi/pytest-ponyorm :alt: Python versions
.. image:: https://travis-ci.org/jgirardet/pytest-ponyorm.svg?branch=master :target: https://travis-ci.org/jgirardet/pytest-ponyorm :alt: 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.
Tested from Pony ORM
_ >= '0.7.3' and python : 3.5, 3.6
You can install "pytest-ponyorm" via pip
from PyPI
::
$ pip install pytest-ponyorm
or
$ pipenv install -d pytest-ponyorm
.. warning:: By default, database is cleared after each test. You must never use it in a production environment. This plugin doesn't change the database config.It's you'job to create the testing environment and change database params.
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 :
.. code-block:: ini
[pytest]
PONY_DB=path.models.main
Then just apply the pony marker :
.. code-block:: python
# 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 may takes as argument :
.. code-block:: python
# 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.
@pytest.mark.pony(db_session=False)
def test 3:
a = MyEntity() # will fail
with db_session():
a = MyEntitty() # Ok
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.
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.
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.
Distributed under the terms of the GNU GPL v3.0
_ license, "pytest-ponyorm" is free and open source software
If you encounter any problems, please file an issue
_ along with a detailed description.
1.0.0 :
.. Cookiecutter
: https://github.com/audreyr/cookiecutter
.. @hackebrot
: https://github.com/hackebrot
.. MIT
: http://opensource.org/licenses/MIT
.. BSD-3
: http://opensource.org/licenses/BSD-3-Clause
.. GNU GPL v3.0
: http://www.gnu.org/licenses/gpl-3.0.txt
.. Apache Software License 2.0
: http://www.apache.org/licenses/LICENSE-2.0
.. cookiecutter-pytest-plugin
: https://github.com/pytest-dev/cookiecutter-pytest-plugin
.. file an issue
: https://github.com/jgirardet/pytest-ponyorm/issues
.. pytest
: https://github.com/pytest-dev/pytest
.. tox
: https://tox.readthedocs.io/en/latest/
.. pip
: https://pypi.python.org/pypi/pip/
.. PyPI
: https://pypi.python.org/pypi
.. Pony ORM
: http://ponyorm.com
.. pytest-env
: https://github.com/MobileDynasty/pytest-env