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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
import time
import async_test_base
from pika import adapters
from pika import spec
class AsyncTestCase(async_test_base.AsyncTestCase):
ADAPTER = adapters.TornadoConnection
class BoundQueueTestCase(async_test_base.BoundQueueTestCase):
ADAPTER = adapters.TornadoConnection
class TestConfirmSelect(AsyncTestCase):
def begin(self, channel):
channel._on_selectok = self.on_complete
channel.confirm_delivery()
def on_complete(self, frame):
self.assertIsInstance(frame.method, spec.Confirm.SelectOk)
self.stop()
def start_test(self):
"""TornadoConnection should receive confirmation of Confirm.Select"""
self.start()
class TestExchangeDeclareAndDelete(AsyncTestCase):
X_TYPE = 'direct'
def begin(self, channel):
self.name = self.__class__.__name__ + ':' + str(id(self))
channel.exchange_declare(self.on_exchange_declared,
self.name,
exchange_type=self.X_TYPE,
passive=False,
durable=False,
auto_delete=True)
def on_exchange_declared(self, frame):
self.assertIsInstance(frame.method, spec.Exchange.DeclareOk)
self.channel.exchange_delete(self.on_exchange_delete, self.name)
def on_exchange_delete(self, frame):
self.assertIsInstance(frame.method, spec.Exchange.DeleteOk)
self.stop()
def start_test(self):
"""TornadoConnection should create and delete an exchange"""
self.start()
class TestExchangeRedeclareWithDifferentValues(AsyncTestCase):
X_TYPE1 = 'direct'
X_TYPE2 = 'topic'
def begin(self, channel):
self.name = self.__class__.__name__ + ':' + str(id(self))
self.channel.add_on_close_callback(self.on_channel_closed)
channel.exchange_declare(self.on_exchange_declared,
self.name,
exchange_type=self.X_TYPE1,
passive=False,
durable=False,
auto_delete=True)
def on_cleanup_channel(self, channel):
channel.exchange_delete(None, self.name, nowait=True)
self.stop()
def on_channel_closed(self, channel, reply_code, reply_text):
self.connection.channel(self.on_cleanup_channel)
def on_exchange_declared(self, frame):
self.channel.exchange_declare(self.on_exchange_declared,
self.name,
exchange_type=self.X_TYPE2,
passive=False,
durable=False,
auto_delete=True)
def on_bad_result(self, frame):
self.channel.exchange_delete(None, self.name, nowait=True)
raise AssertionError("Should not have received a Queue.DeclareOk")
def start_test(self):
"""TornadoConnection should close chan: re-declared exchange w/ diff params
"""
self.start()
class TestQueueDeclareAndDelete(AsyncTestCase):
def begin(self, channel):
channel.queue_declare(self.on_queue_declared,
passive=False,
durable=False,
exclusive=True,
auto_delete=False,
nowait=False,
arguments={'x-expires': self.TIMEOUT})
def on_queue_declared(self, frame):
self.assertIsInstance(frame.method, spec.Queue.DeclareOk)
self.channel.queue_delete(self.on_queue_delete, frame.method.queue)
def on_queue_delete(self, frame):
self.assertIsInstance(frame.method, spec.Queue.DeleteOk)
self.stop()
def start_test(self):
"""TornadoConnection should create and delete a queue"""
self.start()
class TestQueueNameDeclareAndDelete(AsyncTestCase):
def begin(self, channel):
channel.queue_declare(self.on_queue_declared, str(id(self)),
passive=False,
durable=False,
exclusive=True,
auto_delete=True,
nowait=False,
arguments={'x-expires': self.TIMEOUT})
def on_queue_declared(self, frame):
self.assertIsInstance(frame.method, spec.Queue.DeclareOk)
self.assertEqual(frame.method.queue, str(id(self)))
self.channel.queue_delete(self.on_queue_delete, frame.method.queue)
def on_queue_delete(self, frame):
self.assertIsInstance(frame.method, spec.Queue.DeleteOk)
self.stop()
def start_test(self):
"""TornadoConnection should create and delete a named queue"""
self.start()
class TestQueueRedeclareWithDifferentValues(AsyncTestCase):
def begin(self, channel):
self.channel.add_on_close_callback(self.on_channel_closed)
channel.queue_declare(self.on_queue_declared,
str(id(self)),
passive=False,
durable=False,
exclusive=True,
auto_delete=True,
nowait=False,
arguments={'x-expires': self.TIMEOUT})
def on_channel_closed(self, channel, reply_code, reply_text):
self.stop()
def on_queue_declared(self, frame):
self.channel.queue_declare(self.on_bad_result,
str(id(self)),
passive=False,
durable=True,
exclusive=False,
auto_delete=True,
nowait=False,
arguments={'x-expires': self.TIMEOUT})
def on_bad_result(self, frame):
self.channel.queue_delete(None, str(id(self)), nowait=True)
raise AssertionError("Should not have received a Queue.DeclareOk")
def start_test(self):
"""TornadoConnection should close chan: re-declared queue w/ diff params
"""
self.start()
class TestTX1_Select(AsyncTestCase):
def begin(self, channel):
channel.tx_select(self.on_complete)
def on_complete(self, frame):
self.assertIsInstance(frame.method, spec.Tx.SelectOk)
self.stop()
def test_confirm_select(self):
"""TornadoConnection should receive confirmation of Tx.Select"""
self.start()
class TestTX2_Commit(AsyncTestCase):
def begin(self, channel):
channel.tx_select(self.on_selectok)
def on_selectok(self, frame):
self.assertIsInstance(frame.method, spec.Tx.SelectOk)
self.channel.tx_commit(self.on_commitok)
def on_commitok(self, frame):
self.assertIsInstance(frame.method, spec.Tx.CommitOk)
self.stop()
def start_test(self):
"""TornadoConnection should start a transaction, then commit it back"""
self.start()
class TestTX2_CommitFailure(AsyncTestCase):
def begin(self, channel):
self.channel.add_on_close_callback(self.on_channel_closed)
self.channel.tx_commit(self.on_commitok)
def on_channel_closed(self, channel, reply_code, reply_text):
self.stop()
def on_selectok(self, frame):
self.assertIsInstance(frame.method, spec.Tx.SelectOk)
def on_commitok(self, frame):
raise AssertionError("Should not have received a Tx.CommitOk")
def start_test(self):
"""TornadoConnection should close the channel: commit without a TX"""
self.start()
class TestTX3_Rollback(AsyncTestCase):
def begin(self, channel):
channel.tx_select(self.on_selectok)
def on_selectok(self, frame):
self.assertIsInstance(frame.method, spec.Tx.SelectOk)
self.channel.tx_rollback(self.on_rollbackok)
def on_rollbackok(self, frame):
self.assertIsInstance(frame.method, spec.Tx.RollbackOk)
self.stop()
def start_test(self):
"""TornadoConnection should start a transaction, then roll it back"""
self.start()
class TestTX3_RollbackFailure(AsyncTestCase):
def begin(self, channel):
self.channel.add_on_close_callback(self.on_channel_closed)
self.channel.tx_rollback(self.on_commitok)
def on_channel_closed(self, channel, reply_code, reply_text):
self.stop()
def on_commitok(self, frame):
raise AssertionError("Should not have received a Tx.RollbackOk")
def start_test(self):
"""TornadoConnection should close the channel: rollback without a TX"""
self.start()
class TestZ_PublishAndConsume(BoundQueueTestCase):
def on_ready(self, frame):
self.ctag = self.channel.basic_consume(self.on_message, self.queue)
self.msg_body = "%s: %i" % (self.__class__.__name__, time.time())
self.channel.basic_publish(self.exchange,
self.routing_key,
self.msg_body)
def on_cancelled(self, frame):
self.assertIsInstance(frame.method, spec.Basic.CancelOk)
self.stop()
def on_message(self, channel, method, header, body):
self.assertIsInstance(method, spec.Basic.Deliver)
self.assertEqual(body, self.msg_body)
self.channel.basic_ack(method.delivery_tag)
self.channel.basic_cancel(self.on_cancelled, self.ctag)
def start_test(self):
"""TornadoConnection should publish a message and consume it"""
self.start()
class TestZ_PublishAndConsumeBig(BoundQueueTestCase):
def _get_msg_body(self):
return '\n'.join(["%s" % i for i in range(0, 2097152)])
def on_ready(self, frame):
self.ctag = self.channel.basic_consume(self.on_message, self.queue)
self.msg_body = self._get_msg_body()
self.channel.basic_publish(self.exchange,
self.routing_key,
self.msg_body)
def on_cancelled(self, frame):
self.assertIsInstance(frame.method, spec.Basic.CancelOk)
self.stop()
def on_message(self, channel, method, header, body):
self.assertIsInstance(method, spec.Basic.Deliver)
self.assertEqual(body, self.msg_body)
self.channel.basic_ack(method.delivery_tag)
self.channel.basic_cancel(self.on_cancelled, self.ctag)
def start_test(self):
"""TornadoConnection should publish a big message and consume it"""
self.start()
class TestZ_PublishAndGet(BoundQueueTestCase):
def on_ready(self, frame):
self.msg_body = "%s: %i" % (self.__class__.__name__, time.time())
self.channel.basic_publish(self.exchange,
self.routing_key,
self.msg_body)
self.channel.basic_get(self.on_get, self.queue)
def on_get(self, channel, method, header, body):
self.assertIsInstance(method, spec.Basic.GetOk)
self.assertEqual(body, self.msg_body)
self.channel.basic_ack(method.delivery_tag)
self.stop()
def start_test(self):
"""TornadoConnection should publish a message and get it"""
self.start()
|