MongoDB process and client fixtures plugin for py.test.
Project description
pytest-mongo
============
.. image:: https://img.shields.io/pypi/v/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/wheel/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Wheel Status
.. image:: https://img.shields.io/pypi/pyversions/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Supported Python Versions
.. image:: https://img.shields.io/pypi/l/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: License
Package status
--------------
.. image:: https://travis-ci.org/ClearcodeHQ/pytest-mongo.svg?branch=v1.2.0
:target: https://travis-ci.org/ClearcodeHQ/pytest-mongo
:alt: Tests
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-mongo/badge.png?branch=v1.2.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-mongo?branch=v1.2.0
:alt: Coverage Status
.. image:: https://requires.io/github/ClearcodeHQ/pytest-mongo/requirements.svg?tag=v1.2.0
:target: https://requires.io/github/ClearcodeHQ/pytest-mongo/requirements/?tag=v1.2.0
:alt: Requirements Status
What is this?
=============
This is a pytest plugin, that enables you to test your code that relies on a running MongoDB database.
It allows you to specify fixtures for MongoDB process and client.
How to use
==========
Plugin contains two fixtures
* **mongodb** - it's a client fixture that has functional scope, and which cleans MongoDB at the end of each test.
* **mongo_proc** - session scoped fixture, that starts MongoDB instance at the 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 MongoDB client and process fixtures if you'd need to:
.. code-block:: python
from pytest_mongo import factories
mongo_my_proc = factories.mongo_proc(
port=None, logsdir='/tmp')
mongo_my = factories.mongodb('mongo_my_proc')
.. note::
Each MongoDB process fixture can be configured in a different way than the others through the fixture factory arguments.
Configuration
=============
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 argument``
* ``Command line option``
* ``Configuration option in your pytest.ini file``
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| What | Fixture factory argument | Command line option | pytest.ini option | Default |
+=======================+==========================+=====================+===================+=================+
| Path to mongodb exec | executable | --mongo-exec | mongo_exec | /usr/bin/mongod |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| MongoDB host | host | --mongo-host | mongo_host | 127.0.0.1 |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| MongoDB port | port | --mongo-port | mongo_port | random |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| Path to store logs | logsdir | --mongo-logsdir | mongo_logsdir | $TMPDIR |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| Additional parameters | params | --mongo-params | mongo_params | |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
Example usage:
* pass it as an argument in your own fixture
.. code-block:: python
mongo_proc = factories.mongo_proc(port=8888)
* use ``--mongo-port`` command line option when you run your tests
.. code-block::
py.test tests --mongo-port=8888
* specify your directory as ``mongo_port`` in your ``pytest.ini`` file.
To do so, put a line like the following under the ``[pytest]`` section of your ``pytest.ini``:
.. code-block:: ini
[pytest]
mongo_port = 8888
Package resources
-----------------
* Bug tracker: https://github.com/ClearcodeHQ/pytest-mongo/issues
CHANGELOG
=========
- [enhancement] require at least pymongo 3.6
1.2.0
-------
-------
- [enhancement] removed path.py depdendency
1.1.1
-------
- [enhancements] set executor timeout to 60. By default mirakuru waits indefinitely, which might cause test hangs
1.1.0
-------
- [feature] - migrate usage of getfuncargvalue to getfixturevalue. require at least pytest 3.0.0
1.0.0
-------
- [feature] defaults logs dir to $TMPDIR by default
- [feature] run on random port by default (easier xdist integration)
- [feature] add command line and ini option for: executable, host, port, params and logsdir
============
.. image:: https://img.shields.io/pypi/v/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/wheel/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Wheel Status
.. image:: https://img.shields.io/pypi/pyversions/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: Supported Python Versions
.. image:: https://img.shields.io/pypi/l/pytest-mongo.svg
:target: https://pypi.python.org/pypi/pytest-mongo/
:alt: License
Package status
--------------
.. image:: https://travis-ci.org/ClearcodeHQ/pytest-mongo.svg?branch=v1.2.0
:target: https://travis-ci.org/ClearcodeHQ/pytest-mongo
:alt: Tests
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-mongo/badge.png?branch=v1.2.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-mongo?branch=v1.2.0
:alt: Coverage Status
.. image:: https://requires.io/github/ClearcodeHQ/pytest-mongo/requirements.svg?tag=v1.2.0
:target: https://requires.io/github/ClearcodeHQ/pytest-mongo/requirements/?tag=v1.2.0
:alt: Requirements Status
What is this?
=============
This is a pytest plugin, that enables you to test your code that relies on a running MongoDB database.
It allows you to specify fixtures for MongoDB process and client.
How to use
==========
Plugin contains two fixtures
* **mongodb** - it's a client fixture that has functional scope, and which cleans MongoDB at the end of each test.
* **mongo_proc** - session scoped fixture, that starts MongoDB instance at the 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 MongoDB client and process fixtures if you'd need to:
.. code-block:: python
from pytest_mongo import factories
mongo_my_proc = factories.mongo_proc(
port=None, logsdir='/tmp')
mongo_my = factories.mongodb('mongo_my_proc')
.. note::
Each MongoDB process fixture can be configured in a different way than the others through the fixture factory arguments.
Configuration
=============
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 argument``
* ``Command line option``
* ``Configuration option in your pytest.ini file``
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| What | Fixture factory argument | Command line option | pytest.ini option | Default |
+=======================+==========================+=====================+===================+=================+
| Path to mongodb exec | executable | --mongo-exec | mongo_exec | /usr/bin/mongod |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| MongoDB host | host | --mongo-host | mongo_host | 127.0.0.1 |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| MongoDB port | port | --mongo-port | mongo_port | random |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| Path to store logs | logsdir | --mongo-logsdir | mongo_logsdir | $TMPDIR |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
| Additional parameters | params | --mongo-params | mongo_params | |
+-----------------------+--------------------------+---------------------+-------------------+-----------------+
Example usage:
* pass it as an argument in your own fixture
.. code-block:: python
mongo_proc = factories.mongo_proc(port=8888)
* use ``--mongo-port`` command line option when you run your tests
.. code-block::
py.test tests --mongo-port=8888
* specify your directory as ``mongo_port`` in your ``pytest.ini`` file.
To do so, put a line like the following under the ``[pytest]`` section of your ``pytest.ini``:
.. code-block:: ini
[pytest]
mongo_port = 8888
Package resources
-----------------
* Bug tracker: https://github.com/ClearcodeHQ/pytest-mongo/issues
CHANGELOG
=========
- [enhancement] require at least pymongo 3.6
1.2.0
-------
-------
- [enhancement] removed path.py depdendency
1.1.1
-------
- [enhancements] set executor timeout to 60. By default mirakuru waits indefinitely, which might cause test hangs
1.1.0
-------
- [feature] - migrate usage of getfuncargvalue to getfixturevalue. require at least pytest 3.0.0
1.0.0
-------
- [feature] defaults logs dir to $TMPDIR by default
- [feature] run on random port by default (easier xdist integration)
- [feature] add command line and ini option for: executable, host, port, params and logsdir
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file pytest_mongo-1.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_mongo-1.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eef5dbea625502d4212a8c94cb943df879a2e9ce6ebc7a34cb6ef2df01b63b5b |
|
MD5 | 988473670b60c8d17e6286c057866a56 |
|
BLAKE2b-256 | aaff32022d3fe494a5ab96004b2bae939baa063b0e73b94af63e0ffade9f0f30 |