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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
# -*- coding: utf-8 -*-
"""
Tests for pika.adapters.blocking_connection.BlockingChannel
"""
from collections import deque
import unittest
from unittest import mock
from pika.adapters import blocking_connection
from pika import channel
BLOCKING_CHANNEL = 'pika.adapters.blocking_connection.BlockingChannel'
BLOCKING_CONNECTION = 'pika.adapters.blocking_connection.BlockingConnection'
class ChannelTemplate(channel.Channel):
channel_number = 1
class BlockingChannelTests(unittest.TestCase):
@mock.patch(BLOCKING_CONNECTION)
def _create_connection(self, connection=None):
return connection
def setUp(self):
self.connection = self._create_connection()
channel_impl_mock = mock.Mock(
spec=ChannelTemplate,
is_closing=False,
is_closed=False,
is_open=True)
self.obj = blocking_connection.BlockingChannel(channel_impl_mock,
self.connection)
def tearDown(self):
del self.connection
del self.obj
def test_init_initial_value_confirmation(self):
self.assertFalse(self.obj._delivery_confirmation)
def test_init_initial_value_pending_events(self):
self.assertEqual(self.obj._pending_events, deque())
def test_init_initial_value_buback_return(self):
self.assertIsNone(self.obj._puback_return)
def test_basic_consume_legacy_parameter_queue(self):
# This is for the unlikely scenario where only
# the first parameter is updated
with self.assertRaises(TypeError):
self.obj.basic_consume('queue',
'whoops this should be a callback')
def test_basic_consume_legacy_parameter_callback(self):
with self.assertRaises(TypeError):
self.obj.basic_consume(mock.Mock(), 'queue')
def test_queue_declare_legacy_parameter_callback(self):
with self.assertRaises(TypeError):
self.obj.queue_declare(mock.Mock(), 'queue')
def test_exchange_declare_legacy_parameter_callback(self):
with self.assertRaises(TypeError):
self.obj.exchange_declare(mock.Mock(), 'exchange')
def test_queue_bind_legacy_parameter_callback(self):
with self.assertRaises(TypeError):
self.obj.queue_bind(mock.Mock(),
'queue',
'exchange')
def test_basic_cancel_legacy_parameter(self):
with self.assertRaises(TypeError):
self.obj.basic_cancel(mock.Mock(), 'tag')
def test_basic_get_legacy_parameter(self):
with self.assertRaises(TypeError):
self.obj.basic_get(mock.Mock())
def test_basic_consume(self):
with mock.patch.object(self.obj._impl, '_generate_consumer_tag'):
self.obj._impl._generate_consumer_tag.return_value = 'ctag0'
self.obj._impl.basic_consume.return_value = 'ctag0'
self.obj.basic_consume('queue', mock.Mock())
self.assertEqual(self.obj._consumer_infos['ctag0'].state,
blocking_connection._ConsumerInfo.ACTIVE)
def test_context_manager(self):
with self.obj as chan:
self.assertFalse(chan._impl.close.called)
chan._impl.close.assert_called_once_with(
reply_code=0, reply_text='Normal shutdown')
def test_context_manager_does_not_suppress_exception(self):
class TestException(Exception):
pass
with self.assertRaises(TestException):
with self.obj as chan:
self.assertFalse(chan._impl.close.called)
raise TestException()
chan._impl.close.assert_called_once_with(
reply_code=0, reply_text='Normal shutdown')
def test_context_manager_exit_with_closed_channel(self):
with self.obj as chan:
self.assertFalse(chan._impl.close.called)
chan.close()
chan._impl.close.assert_called_with(
reply_code=0, reply_text='Normal shutdown')
def test_consumer_tags_property(self):
with mock.patch.object(self.obj._impl, '_generate_consumer_tag'):
self.assertEqual(0, len(self.obj.consumer_tags))
self.obj._impl._generate_consumer_tag.return_value = 'ctag0'
self.obj._impl.basic_consume.return_value = 'ctag0'
self.obj.basic_consume('queue', mock.Mock())
self.assertEqual(1, len(self.obj.consumer_tags))
self.assertIn('ctag0', self.obj.consumer_tags)
|