MongoDB process and client fixtures plugin for py.test.
Project description
pytest-mongo
Package 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:
from pytest_mongo import factories
mongo_my_proc = factories.mongo_proc(
port=None, logsdir='/tmp')
mongo_my = factories.mongodb('mongo_my_proc')
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
mongo_proc = factories.mongo_proc(port=8888)
use --mongo-port command line option when you run your tests
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:
[pytest] mongo_port =
8888
Package resources
Bug tracker: https://github.com/ClearcodeHQ/pytest-mongo/issues
CHANGELOG
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 Distribution
Built Distributions
File details
Details for the file pytest-mongo-1.1.0.tar.gz
.
File metadata
- Download URL: pytest-mongo-1.1.0.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b12c3096605affe4c284ffce442ebd2a26d30079b16ae20ab5b3c0a36d1c411b |
|
MD5 | 9fc102d23e0c7eecf9f93c7b47481378 |
|
BLAKE2b-256 | 01bef9eda000c49ab17ab200cee432e27c26c4212b526ba81dccbaae05616265 |
File details
Details for the file pytest_mongo-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_mongo-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa5419715c3cd0fef4295bcdae88abdf2a22a832491725007816a16196dfb3c7 |
|
MD5 | c0f54cec8c5796df8bb99e136b1b3c10 |
|
BLAKE2b-256 | eb7a88b21b74444f17552fa526c2e59255c0d32615d386549599055f6c6d9b85 |
File details
Details for the file pytest_mongo-1.1.0-py2.7.egg
.
File metadata
- Download URL: pytest_mongo-1.1.0-py2.7.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85430525ace96f48f6bcc4cec531b8a71781b821a42cd38eedb11b435085e5ec |
|
MD5 | d9945d7b0767eda87e0dad0ea0e78cd1 |
|
BLAKE2b-256 | 060eaa0b2a13098cb17246f5df9db65af5daf140d75db1e2ff8b73c19b039949 |