RabbitMQ process and client fixtures for pytest
Project description
pytest-rabbitmq
Package status
What is this?
This is a pytest plugin, that enables you to test your code that relies on a running RabbitMQ Queues. It allows you to specify additional fixtures for RabbitMQ process and client.
How to use
Plugin contains two fixtures
rabbitmq - it’s a client fixture that has functional scope. After each test, it cleans RabbitMQ, cleans queues and exchanges for more reliable tests.
rabbitmq_proc - session scoped fixture, that starts RabbitMQ instance at it’s 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 rabbitmq client and process fixtures if you’d need to:
from pytest_rabbitmq import factories
rabbitmq_my_proc = factories.rabbitmq_proc(
port=None, logsdir='/tmp')
rabbitmq_my = factories.rabbitmq('rabbitmq_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
RabbitMQ option |
Fixture factory argument |
Command line option |
pytest.ini option |
Default |
---|---|---|---|---|
host |
host |
–rabbitmq-host |
rabbitmq_host |
127.0.0.1 |
RABBITMQ_NODE_PORT |
port |
–rabbitmq-port |
rabbitmq_port |
random |
RABBITMQ_DIST_PORT |
distribution_port |
–rabbitmq-distribution-port |
rabbitmq_distribution_port |
random |
rabbitmqctl path |
ctl |
–rabbitmq-ctl |
rabbitmq_ctl |
/usr/lib/rabbitmq/bin/rabbitmqctl |
rabbitmq server path |
server |
–rabbitmq-server |
rabbitmq_server |
/usr/lib/rabbitmq/bin/rabbitmq-server |
Log directory location |
logsdir |
–rabbitmq-logsdir |
rabbitmq_logsdir |
$TMPDIR |
Plugin directory location |
plugin_path |
–rabbitmq-plugindir |
rabbitmq_plugindir |
$TMPDIR |
Node name |
node |
–rabbitmq-node |
rabbitmq_node |
rabbitmq-test-{port} |
Example usage:
pass it as an argument in your own fixture
rabbitmq_proc = factories.rabbitmq_proc(port=8888)
use --rabbitmq-port command line option when you run your tests
py.test tests --rabbitmq-port=8888
specify your port as rabbitmq_port in your pytest.ini file.
To do so, put a line like the following under the [pytest] section of your pytest.ini:
[pytest] rabbitmq_port = 8888
Package resources
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 Distribution
File details
Details for the file pytest_rabbitmq-3.1.1.tar.gz
.
File metadata
- Download URL: pytest_rabbitmq-3.1.1.tar.gz
- Upload date:
- Size: 31.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e2650040a0d70bdd44dee5ad6e05443126a7e0c195f719aa667c447320a9b4d |
|
MD5 | 88457e85e8bf29944d927742366771ea |
|
BLAKE2b-256 | 8293bba7413a9a30394621a4e3cc1e139e4738214ec55253e1ba71e6513c1715 |
File details
Details for the file pytest_rabbitmq-3.1.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_rabbitmq-3.1.1-py3-none-any.whl
- Upload date:
- Size: 30.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d8e2db235bc43ebee7a127848af9a565e81c0cdc97409062700ac58751b8710 |
|
MD5 | 282c6f3fc72246af870968a5d4dd6c46 |
|
BLAKE2b-256 | d8bb407a56cea9075f1902bb7881c4cebde9ce106aac3ebc68bc6c27b596823a |