Skip to main content

automatically setups a rabbitmq server instance for use in tests

Project description

About

testing.rabbitmq automatically setups a rabbitmq instance, and destroys it after testing.

https://travis-ci.org/tristan/testing.rabbitmq.svg?branch=master https://coveralls.io/repos/tristan/testing.rabbitmq/badge.png?branch=master https://codeclimate.com/github/tristan/testing.rabbitmq/badges/gpa.svg
Documentation

https://github.com/tristan/testing.rabbitmq

Issues

https://github.com/tristan/testing.rabbitmq/issues

Download

https://pypi.python.org/pypi/testing.rabbitmq

Install

Use pip:

$ pip install testing.rabbitmq

And testing.rabbitmq requires rabbitmq-server and rabbitmqctl at /usr/lib/rabbitmq/bin. If rabbitmq is installed at a different path set rabbitmq_script_dir when creating the RabbitMQServer instance.

Usage

Create RabbitMQServer instance using testing.rabbitmq.RabbitMQServer:

import testing.rabbitmq
import pika

# Lanuch new RabbitMQ server
with testing.rabbitmq.RabbitMQServer() as rmq:
    connection = pika.BlockingConnection(
        pika.ConnectionParameters(**rmq.dsn()))
    channel = connection.channel()
    channel.basic_publish(exchange='',
                          routing_key='test',
                          body=b'Test message.')
    connection.close()

# Rabbitmq server is terminated here

Requirements

  • Python 2.7, 3.4, 3.5, 3.6

License

Apache License 2.0

History

1.0.0 (2019-08-19)

  • First release

1.0.1 (2020-01-31)

  • Update runner script header to fix issues running on macOS

1.0.2 (2021-06-15)

  • Fix log string formatting in _terminate_process()

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

testing.rabbitmq-1.0.2.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

testing.rabbitmq-1.0.2-py2.py3-none-any.whl (9.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page