-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cassandra_scylla_support
- Loading branch information
Showing
10 changed files
with
159 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,3 +63,7 @@ docs/_build/ | |
.idea/ | ||
.venv/ | ||
.testrepository/ | ||
|
||
# vscode: | ||
.devcontainer/ | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
import os | ||
from typing import Optional | ||
|
||
import pika | ||
from testcontainers.core.container import DockerContainer | ||
from testcontainers.core.waiting_utils import wait_container_is_ready | ||
|
||
|
||
class RabbitMqContainer(DockerContainer): | ||
""" | ||
Test container for RabbitMQ. | ||
Example | ||
------- | ||
The example spins up a RabbitMQ broker and uses the `pika` client library | ||
(https://pypi.org/project/pika/) establish a connection to the broker. | ||
:: | ||
from testcontainer.rabbitmq import RabbitMqContainer | ||
import pika | ||
with RabbitMqContainer("rabbitmq:3.9.10") as rabbitmq: | ||
connection = pika.BlockingConnection(rabbitmq.get_connection_params()) | ||
channel = connection.channel() | ||
""" | ||
|
||
RABBITMQ_NODE_PORT = os.environ.get("RABBITMQ_NODE_PORT", 5672) | ||
RABBITMQ_DEFAULT_USER = os.environ.get("RABBITMQ_DEFAULT_USER", "guest") | ||
RABBITMQ_DEFAULT_PASS = os.environ.get("RABBITMQ_DEFAULT_PASS", "guest") | ||
|
||
def __init__( | ||
self, | ||
image: str = "rabbitmq:latest", | ||
port: Optional[int] = None, | ||
username: Optional[str] = None, | ||
password: Optional[str] = None, | ||
) -> None: | ||
"""Initialize the RabbitMQ test container. | ||
Args: | ||
image (str, optional): | ||
The docker image from docker hub. Defaults to "rabbitmq:latest". | ||
port (int, optional): | ||
The port to reach the AMQP API. Defaults to 5672. | ||
username (str, optional): | ||
Overwrite the default username which is "guest". | ||
password (str, optional): | ||
Overwrite the default username which is "guest". | ||
""" | ||
super(RabbitMqContainer, self).__init__(image=image) | ||
self.RABBITMQ_NODE_PORT = port or int(self.RABBITMQ_NODE_PORT) | ||
self.RABBITMQ_DEFAULT_USER = username or self.RABBITMQ_DEFAULT_USER | ||
self.RABBITMQ_DEFAULT_PASS = password or self.RABBITMQ_DEFAULT_PASS | ||
|
||
self.with_exposed_ports(self.RABBITMQ_NODE_PORT) | ||
self.with_env("RABBITMQ_NODE_PORT", self.RABBITMQ_NODE_PORT) | ||
self.with_env("RABBITMQ_DEFAULT_USER", self.RABBITMQ_DEFAULT_USER) | ||
self.with_env("RABBITMQ_DEFAULT_PASS", self.RABBITMQ_DEFAULT_PASS) | ||
|
||
@wait_container_is_ready() | ||
def readiness_probe(self) -> bool: | ||
"""Test if the RabbitMQ broker is ready.""" | ||
connection = pika.BlockingConnection(self.get_connection_params()) | ||
if connection.is_open: | ||
connection.close() | ||
return self | ||
raise RuntimeError("Could not open connection to RabbitMQ broker.") | ||
|
||
def get_connection_params(self) -> pika.ConnectionParameters: | ||
""" | ||
Get connection params as a pika.ConnectionParameters object. | ||
For more details see: | ||
https://pika.readthedocs.io/en/latest/modules/parameters.html | ||
""" | ||
credentials = pika.PlainCredentials(username=self.RABBITMQ_DEFAULT_USER, | ||
password=self.RABBITMQ_DEFAULT_PASS) | ||
|
||
return pika.ConnectionParameters( | ||
host=self.get_container_host_ip(), | ||
port=self.get_exposed_port(self.RABBITMQ_NODE_PORT), | ||
credentials=credentials, | ||
) | ||
|
||
def start(self): | ||
"""Start the test container.""" | ||
super().start() | ||
self.readiness_probe() | ||
return self |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
from typing import Optional | ||
import json | ||
|
||
import pika | ||
import pytest | ||
from testcontainers.rabbitmq import RabbitMqContainer | ||
|
||
QUEUE = "test-q" | ||
EXCHANGE = "test-exchange" | ||
ROUTING_KEY = "test-route-key" | ||
MESSAGE = {"hello": "world"} | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"port,username,password", | ||
[ | ||
(None, None, None), # use the defaults | ||
(5673, None, None), # test with custom port | ||
(None, "my_test_user", "my_secret_password"), # test with custom credentials | ||
] | ||
) | ||
def test_docker_run_rabbitmq( | ||
port: Optional[int], | ||
username: Optional[str], | ||
password: Optional[str] | ||
): | ||
"""Run rabbitmq test container and use it to deliver a simple message.""" | ||
kwargs = {} | ||
if port is not None: | ||
kwargs["port"] = port | ||
if username is not None: | ||
kwargs["username"] = username | ||
if password is not None: | ||
kwargs["password"] = password | ||
|
||
rabbitmq_container = RabbitMqContainer("rabbitmq:latest", **kwargs) | ||
with rabbitmq_container as rabbitmq: | ||
# connect to rabbitmq: | ||
connection_params = rabbitmq.get_connection_params() | ||
connection = pika.BlockingConnection(connection_params) | ||
|
||
# create exchange and queue: | ||
channel = connection.channel() | ||
channel.exchange_declare(exchange=EXCHANGE, exchange_type="topic") | ||
channel.queue_declare(QUEUE, arguments={}) | ||
channel.queue_bind(QUEUE, EXCHANGE, ROUTING_KEY) | ||
|
||
# pulish message: | ||
encoded_message = json.dumps(MESSAGE) | ||
channel.basic_publish(EXCHANGE, ROUTING_KEY, body=encoded_message) | ||
|
||
_, _, body = channel.basic_get(queue=QUEUE) | ||
received_message = json.loads(body.decode()) | ||
assert received_message == MESSAGE |