summaryrefslogtreecommitdiff
path: root/tests/test_rabbit.py
blob: 3cb2203dab3a61026a73064c4940ce3ed8a16d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright 2013 Red Hat, Inc.
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

from oslo import messaging
from oslo.messaging._drivers import impl_rabbit as rabbit_driver
from oslo.messaging import transport as msg_transport
from tests import utils as test_utils


class TestRabbitDriver(test_utils.BaseTestCase):

    def setUp(self):
        super(TestRabbitDriver, self).setUp()
        self.conf.register_opts(msg_transport._transport_opts)
        self.conf.register_opts(rabbit_driver.rabbit_opts)
        self.config(rpc_backend='rabbit')
        self.config(fake_rabbit=True)

    def test_driver_load(self):
        transport = messaging.get_transport(self.conf)
        self.assertTrue(isinstance(transport._driver,
                                   rabbit_driver.RabbitDriver))

    def test_send_receive(self):
        transport = messaging.get_transport(self.conf)
        self.addCleanup(transport.cleanup)

        driver = transport._driver

        target = messaging.Target(topic='testtopic')

        listener = driver.listen(target)

        ctxt = {}
        message = {'foo': 'bar'}

        driver.send(target, ctxt, message)

        received = listener.poll()
        self.assertTrue(received is not None)
        self.assertEquals(received.ctxt, {})

        # FIXME(markmc): this should be done by the driver
        received.message.pop('_unique_id')
        self.assertEquals(received.message, {'foo': 'bar'})