From 79c816ed0f49358c51dd2c3f9cc411c9995cd03c Mon Sep 17 00:00:00 2001 From: Edin Sarajlic Date: Thu, 19 Sep 2019 15:47:50 +1000 Subject: [PATCH] Test: messages can be sent/retrieved to/from Rmq cluster without SSL --- zaza/openstack/charm_tests/rabbitmq_server/tests.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/zaza/openstack/charm_tests/rabbitmq_server/tests.py b/zaza/openstack/charm_tests/rabbitmq_server/tests.py index 9808150..37375d2 100644 --- a/zaza/openstack/charm_tests/rabbitmq_server/tests.py +++ b/zaza/openstack/charm_tests/rabbitmq_server/tests.py @@ -126,3 +126,13 @@ class RmqTests(test_utils.OpenStackBaseTest): logging.info('OK\n') + def test_406_rmq_amqp_messages_all_units_ssl_off(self): + """Send amqp messages to every rmq unit and check every rmq unit + for messages. Standard amqp tcp port, no ssl.""" + logging.debug('Checking amqp message publish/get on all units ' + '(ssl off)...') + + units = zaza.model.get_units(self.application_name) + self._test_rmq_amqp_messages_all_units(units, ssl=False) + logging.info('OK\n') +