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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
|
# Disable warning Missing docstring
# pylint: disable=C0111
# Disable warning Invalid variable name
# pylint: disable=C0103
# Suppress pylint warning about access to protected member
# pylint: disable=W0212
# Suppress no-member: Twisted's reactor methods are not easily discoverable
# pylint: disable=E1101
"""twisted adapter test"""
import functools
import unittest
from unittest import mock
from nose.twistedtools import reactor, deferred
from twisted.internet import defer, error as twisted_error
from twisted.python.failure import Failure
from pika.adapters.twisted_connection import (
ClosableDeferredQueue, ReceivedMessage, TwistedChannel,
_TwistedConnectionAdapter, TwistedProtocolConnection, _TimerHandle)
from pika import spec
from pika.exceptions import (
AMQPConnectionError, ConsumerCancelled, DuplicateGetOkCallback, NackError,
UnroutableError, ChannelClosedByBroker)
from pika.frame import Method
class TestCase(unittest.TestCase):
"""Imported from twisted.trial.unittest.TestCase
We only want the assertFailure implementation, using the class directly
hides some assertion errors.
"""
def assertFailure(self, d, *expectedFailures):
"""
Fail if C{deferred} does not errback with one of C{expectedFailures}.
Returns the original Deferred with callbacks added. You will need
to return this Deferred from your test case.
"""
def _cb(ignore):
raise self.failureException(
"did not catch an error, instead got %r" % (ignore,))
def _eb(failure):
if failure.check(*expectedFailures):
return failure.value
else:
output = ('\nExpected: %r\nGot:\n%s'
% (expectedFailures, str(failure)))
raise self.failureException(output)
return d.addCallbacks(_cb, _eb)
class ClosableDeferredQueueTestCase(TestCase):
@deferred(timeout=5.0)
def test_put_closed(self):
# Verify that the .put() method errbacks when the queue is closed.
q = ClosableDeferredQueue()
q.closed = RuntimeError("testing")
d = self.assertFailure(q.put(None), RuntimeError)
d.addCallback(lambda e: self.assertEqual(e.args[0], "testing"))
return d
@deferred(timeout=5.0)
def test_get_closed(self):
# Verify that the .get() method errbacks when the queue is closed.
q = ClosableDeferredQueue()
q.closed = RuntimeError("testing")
d = self.assertFailure(q.get(), RuntimeError)
d.addCallback(lambda e: self.assertEqual(e.args[0], "testing"))
return d
def test_close(self):
# Verify that the queue can be closed.
q = ClosableDeferredQueue()
q.close("testing")
self.assertEqual(q.closed, "testing")
self.assertEqual(q.waiting, [])
self.assertEqual(q.pending, [])
def test_close_waiting(self):
# Verify that the deferred waiting for new data are errbacked when the
# queue is closed.
q = ClosableDeferredQueue()
d = q.get()
q.close(RuntimeError("testing"))
self.assertTrue(q.closed)
self.assertEqual(q.waiting, [])
self.assertEqual(q.pending, [])
return self.assertFailure(d, RuntimeError)
def test_close_twice(self):
# If a queue it called twice, it must not crash.
q = ClosableDeferredQueue()
q.close("testing")
self.assertEqual(q.closed, "testing")
q.close("testing")
self.assertEqual(q.closed, "testing")
class TwistedChannelTestCase(TestCase):
def setUp(self):
self.pika_channel = mock.Mock()
self.channel = TwistedChannel(self.pika_channel)
# This is only needed on Python2 for functools.wraps to work.
wrapped = (
"basic_cancel", "basic_get", "basic_qos", "basic_recover",
"exchange_bind", "exchange_unbind", "exchange_declare",
"exchange_delete", "confirm_delivery", "flow",
"queue_bind", "queue_declare", "queue_delete", "queue_purge",
"queue_unbind", "tx_commit", "tx_rollback", "tx_select",
)
for meth_name in wrapped:
getattr(self.pika_channel, meth_name).__name__ = meth_name
def test_repr(self):
self.pika_channel.__repr__ = lambda _s: "<TestChannel>"
self.assertEqual(
repr(self.channel),
"<TwistedChannel channel=<TestChannel>>",
)
@deferred(timeout=5.0)
def test_on_close(self):
# Verify that the channel can be closed and that pending calls and
# consumers are errbacked.
self.pika_channel.add_on_close_callback.assert_called_with(
self.channel._on_channel_closed)
calls = self.channel._calls = [defer.Deferred()]
consumers = self.channel._consumers = {
"test-delivery-tag": mock.Mock()
}
error = RuntimeError("testing")
self.channel._on_channel_closed(None, error)
consumers["test-delivery-tag"].close.assert_called_once_with(error)
self.assertEqual(len(self.channel._calls), 0)
self.assertEqual(len(self.channel._consumers), 0)
return self.assertFailure(calls[0], RuntimeError)
@deferred(timeout=5.0)
def test_basic_consume(self):
# Verify that the basic_consume method works properly.
d = self.channel.basic_consume(queue="testqueue")
self.pika_channel.basic_consume.assert_called_once()
kwargs = self.pika_channel.basic_consume.call_args_list[0][1]
self.assertEqual(kwargs["queue"], "testqueue")
on_message = kwargs["on_message_callback"]
def check_cb(result):
queue, _consumer_tag = result
# Make sure the queue works
queue_get_d = queue.get()
queue_get_d.addCallback(
self.assertEqual,
(self.channel, "testmethod", "testprops", "testbody")
)
# Simulate reception of a message
on_message("testchan", "testmethod", "testprops", "testbody")
return queue_get_d
d.addCallback(check_cb)
# Simulate a ConsumeOk from the server
frame = Method(1, spec.Basic.ConsumeOk(consumer_tag="testconsumertag"))
kwargs["callback"](frame)
return d
@deferred(timeout=5.0)
def test_basic_consume_while_closed(self):
# Verify that a Failure is returned when the channel's basic_consume
# is called and the channel is closed.
error = RuntimeError("testing")
self.channel._on_channel_closed(None, error)
d = self.channel.basic_consume(queue="testqueue")
return self.assertFailure(d, RuntimeError)
@deferred(timeout=5.0)
def test_basic_consume_failure(self):
# Verify that a Failure is returned when the channel's basic_consume
# method fails.
self.pika_channel.basic_consume.side_effect = RuntimeError()
d = self.channel.basic_consume(queue="testqueue")
return self.assertFailure(d, RuntimeError)
def test_basic_consume_errback_on_close(self):
# Verify Deferreds that haven't had their callback invoked errback when
# the channel closes.
d = self.channel.basic_consume(queue="testqueue")
self.channel._on_channel_closed(
self, ChannelClosedByBroker(404, "NOT FOUND"))
return self.assertFailure(d, ChannelClosedByBroker)
@deferred(timeout=5.0)
def test_queue_delete(self):
# Verify that the consumers are cleared when a queue is deleted.
queue_obj = mock.Mock()
self.channel._consumers = {
"test-delivery-tag": queue_obj,
}
self.channel._queue_name_to_consumer_tags["testqueue"] = set([
"test-delivery-tag"
])
self.channel._calls = set()
self.pika_channel.queue_delete.__name__ = "queue_delete"
d = self.channel.queue_delete(queue="testqueue")
self.pika_channel.queue_delete.assert_called_once()
call_kw = self.pika_channel.queue_delete.call_args_list[0][1]
self.assertEqual(call_kw["queue"], "testqueue")
def check(_):
self.assertEqual(len(self.channel._consumers), 0)
queue_obj.close.assert_called_once()
close_call_args = queue_obj.close.call_args_list[0][0]
self.assertEqual(len(close_call_args), 1)
self.assertTrue(isinstance(close_call_args[0], ConsumerCancelled))
d.addCallback(check)
# Simulate a server response
self.assertEqual(len(self.channel._calls), 1)
list(self.channel._calls)[0].callback(None)
return d
@deferred(timeout=5.0)
def test_wrapped_method(self):
# Verify that the wrapped method is called and the result is properly
# transmitted via the Deferred.
self.pika_channel.queue_declare.__name__ = "queue_declare"
d = self.channel.queue_declare(queue="testqueue")
self.pika_channel.queue_declare.assert_called_once()
call_kw = self.pika_channel.queue_declare.call_args_list[0][1]
self.assertIn("queue", call_kw)
self.assertEqual(call_kw["queue"], "testqueue")
self.assertIn("callback", call_kw)
self.assertTrue(callable(call_kw["callback"]))
call_kw["callback"]("testresult")
d.addCallback(self.assertEqual, "testresult")
return d
@deferred(timeout=5.0)
def test_wrapped_method_while_closed(self):
# Verify that a Failure is returned when one of the channel's wrapped
# methods is called and the channel is closed.
error = RuntimeError("testing")
self.channel._on_channel_closed(None, error)
self.pika_channel.queue_declare.__name__ = "queue_declare"
d = self.channel.queue_declare(queue="testqueue")
return self.assertFailure(d, RuntimeError)
@deferred(timeout=5.0)
def test_wrapped_method_multiple_args(self):
# Verify that multiple arguments to the callback are properly converted
# to a tuple for the Deferred's result.
self.pika_channel.queue_declare.__name__ = "queue_declare"
d = self.channel.queue_declare(queue="testqueue")
call_kw = self.pika_channel.queue_declare.call_args_list[0][1]
call_kw["callback"]("testresult-1", "testresult-2")
d.addCallback(self.assertEqual, ("testresult-1", "testresult-2"))
return d
@deferred(timeout=5.0)
def test_wrapped_method_failure(self):
# Verify that exceptions are properly handled in wrapped methods.
error = RuntimeError("testing")
self.pika_channel.queue_declare.__name__ = "queue_declare"
self.pika_channel.queue_declare.side_effect = error
d = self.channel.queue_declare(queue="testqueue")
return self.assertFailure(d, RuntimeError)
def test_method_not_wrapped(self):
# Test that only methods that can be wrapped are wrapped.
result = self.channel.basic_ack()
self.assertFalse(isinstance(result, defer.Deferred))
self.pika_channel.basic_ack.assert_called_once()
def test_passthrough(self):
# Check the simple attribute passthroughs
attributes = (
"channel_number", "connection", "is_closed", "is_closing",
"is_open", "flow_active", "consumer_tags",
)
for name in attributes:
value = "testvalue-{}".format(name)
setattr(self.pika_channel, name, value)
self.assertEqual(getattr(self.channel, name), value)
def test_callback_deferred(self):
# Check that the deferred will be called back.
d = defer.Deferred()
replies = [spec.Basic.CancelOk]
self.channel.callback_deferred(d, replies)
self.pika_channel.add_callback.assert_called_with(
d.callback, replies)
def test_add_on_return_callback(self):
# Check that the deferred contains the right value.
cb = mock.Mock()
self.channel.add_on_return_callback(cb)
self.pika_channel.add_on_return_callback.assert_called_once()
self.pika_channel.add_on_return_callback.call_args[0][0](
"testchannel", "testmethod", "testprops", "testbody")
cb.assert_called_once()
self.assertEqual(len(cb.call_args[0]), 1)
self.assertEqual(
cb.call_args[0][0],
(self.channel, "testmethod", "testprops", "testbody")
)
@deferred(timeout=5.0)
def test_basic_cancel(self):
# Verify that basic_cancels calls clean up the consumer queue.
queue_obj = mock.Mock()
queue_obj_2 = mock.Mock()
self.channel._consumers["test-consumer"] = queue_obj
self.channel._consumers["test-consumer-2"] = queue_obj_2
self.channel._queue_name_to_consumer_tags.update({
"testqueue": set(["test-consumer"]),
"testqueue-2": set(["test-consumer-2"]),
})
d = self.channel.basic_cancel("test-consumer")
def check(result):
self.assertTrue(isinstance(result, Method))
queue_obj.close.assert_called_once()
self.assertTrue(isinstance(
queue_obj.close.call_args[0][0], ConsumerCancelled))
self.assertEqual(len(self.channel._consumers), 1)
queue_obj_2.close.assert_not_called()
self.assertEqual(
self.channel._queue_name_to_consumer_tags["testqueue"],
set())
d.addCallback(check)
self.pika_channel.basic_cancel.assert_called_once()
self.pika_channel.basic_cancel.call_args[1]["callback"](
Method(1, spec.Basic.CancelOk(consumer_tag="test-consumer"))
)
return d
@deferred(timeout=5.0)
def test_basic_cancel_no_consumer(self):
# Verify that basic_cancel does not crash if there is no consumer.
d = self.channel.basic_cancel("test-consumer")
def check(result):
self.assertTrue(isinstance(result, Method))
d.addCallback(check)
self.pika_channel.basic_cancel.assert_called_once()
self.pika_channel.basic_cancel.call_args[1]["callback"](
Method(1, spec.Basic.CancelOk(consumer_tag="test-consumer"))
)
return d
def test_consumer_cancelled_by_broker(self):
# Verify that server-originating cancels are handled.
self.pika_channel.add_on_cancel_callback.assert_called_with(
self.channel._on_consumer_cancelled_by_broker)
queue_obj = mock.Mock()
self.channel._consumers["test-consumer"] = queue_obj
self.channel._queue_name_to_consumer_tags["testqueue"] = set([
"test-consumer"])
self.channel._on_consumer_cancelled_by_broker(
Method(1, spec.Basic.Cancel(consumer_tag="test-consumer"))
)
queue_obj.close.assert_called_once()
self.assertTrue(isinstance(
queue_obj.close.call_args[0][0], ConsumerCancelled))
self.assertEqual(self.channel._consumers, {})
self.assertEqual(
self.channel._queue_name_to_consumer_tags["testqueue"],
set())
@deferred(timeout=5.0)
def test_basic_get(self):
# Verify that the basic_get method works properly.
d = self.channel.basic_get(queue="testqueue")
self.pika_channel.basic_get.assert_called_once()
kwargs = self.pika_channel.basic_get.call_args_list[0][1]
self.assertEqual(kwargs["queue"], "testqueue")
def check_cb(result):
self.assertEqual(
result,
(self.channel, "testmethod", "testprops", "testbody")
)
d.addCallback(check_cb)
# Simulate reception of a message
kwargs["callback"](
"testchannel", "testmethod", "testprops", "testbody")
return d
def test_basic_get_twice(self):
# Verify that the basic_get method raises the proper exception when
# called twice.
self.channel.basic_get(queue="testqueue")
self.assertRaises(
DuplicateGetOkCallback, self.channel.basic_get, "testqueue")
@deferred(timeout=5.0)
def test_basic_get_empty(self):
# Verify that the basic_get method works when the queue is empty.
self.pika_channel.add_callback.assert_called_with(
self.channel._on_getempty, [spec.Basic.GetEmpty], False)
d = self.channel.basic_get(queue="testqueue")
self.channel._on_getempty("testmethod")
d.addCallback(self.assertIsNone)
return d
def test_basic_nack(self):
# Verify that basic_nack is transmitted properly.
self.channel.basic_nack("testdeliverytag")
self.pika_channel.basic_nack.assert_called_once_with(
delivery_tag="testdeliverytag",
multiple=False, requeue=True)
@deferred(timeout=5.0)
def test_basic_publish(self):
# Verify that basic_publish wraps properly.
args = [object()]
kwargs = {"routing_key": object(), "body": object()}
d = self.channel.basic_publish(*args, **kwargs)
kwargs.update(dict(
# Args are converted to kwargs
exchange=args[0],
# Defaults
mandatory=False, properties=None,
))
self.pika_channel.basic_publish.assert_called_once_with(
**kwargs)
return d
@deferred(timeout=5.0)
def test_basic_publish_closed(self):
# Verify that a Failure is returned when the channel's basic_publish
# is called and the channel is closed.
self.channel._on_channel_closed(None, RuntimeError("testing"))
d = self.channel.basic_publish(None, None, None)
self.pika_channel.basic_publish.assert_not_called()
d = self.assertFailure(d, RuntimeError)
d.addCallback(lambda e: self.assertEqual(e.args[0], "testing"))
return d
def _test_wrapped_func(self, func, kwargs, do_callback=False):
func.assert_called_once()
call_kw = dict(
(key, value) for key, value in
func.call_args[1].items()
if key != "callback"
)
self.assertEqual(kwargs, call_kw)
if do_callback:
func.call_args[1]["callback"](do_callback)
@deferred(timeout=5.0)
def test_basic_qos(self):
# Verify that basic_qos wraps properly.
kwargs = {"prefetch_size": 2}
d = self.channel.basic_qos(**kwargs)
# Defaults
kwargs.update(dict(prefetch_count=0, global_qos=False))
self._test_wrapped_func(self.pika_channel.basic_qos, kwargs, True)
return d
def test_basic_reject(self):
# Verify that basic_reject is transmitted properly.
self.channel.basic_reject("testdeliverytag")
self.pika_channel.basic_reject.assert_called_once_with(
delivery_tag="testdeliverytag", requeue=True)
@deferred(timeout=5.0)
def test_basic_recover(self):
# Verify that basic_recover wraps properly.
d = self.channel.basic_recover()
self._test_wrapped_func(
self.pika_channel.basic_recover, {"requeue": False}, True)
return d
def test_close(self):
# Verify that close wraps properly.
self.channel.close()
self.pika_channel.close.assert_called_once_with(
reply_code=0, reply_text="Normal shutdown")
@deferred(timeout=5.0)
def test_confirm_delivery(self):
# Verify that confirm_delivery works
d = self.channel.confirm_delivery()
self.pika_channel.confirm_delivery.assert_called_once()
self.assertEqual(
self.pika_channel.confirm_delivery.call_args[1][
"ack_nack_callback"],
self.channel._on_delivery_confirmation)
def send_message(_result):
d = self.channel.basic_publish("testexch", "testrk", "testbody")
frame = Method(1, spec.Basic.Ack(delivery_tag=1))
self.channel._on_delivery_confirmation(frame)
return d
def check_response(frame_method):
self.assertTrue(isinstance(frame_method, spec.Basic.Ack))
d.addCallback(send_message)
d.addCallback(check_response)
# Simulate Confirm.SelectOk
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
return d
@deferred(timeout=5.0)
def test_confirm_delivery_nacked(self):
# Verify that messages can be nacked when delivery
# confirmation is on.
d = self.channel.confirm_delivery()
def send_message(_result):
d = self.channel.basic_publish("testexch", "testrk", "testbody")
frame = Method(1, spec.Basic.Nack(delivery_tag=1))
self.channel._on_delivery_confirmation(frame)
return d
def check_response(error):
self.assertIsInstance(error.value, NackError)
self.assertEqual(len(error.value.messages), 0)
d.addCallback(send_message)
d.addCallbacks(self.fail, check_response)
# Simulate Confirm.SelectOk
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
return d
@deferred(timeout=5.0)
def test_confirm_delivery_returned(self):
# Verify handling of unroutable messages.
d = self.channel.confirm_delivery()
self.pika_channel.add_on_return_callback.assert_called_once()
return_cb = self.pika_channel.add_on_return_callback.call_args[0][0]
def send_message(_result):
d = self.channel.basic_publish("testexch", "testrk", "testbody")
# Send the Basic.Return frame
method = spec.Basic.Return(
exchange="testexch", routing_key="testrk")
return_cb(self.channel, method,
spec.BasicProperties(), "testbody")
# Send the Basic.Ack frame
frame = Method(1, spec.Basic.Ack(delivery_tag=1))
self.channel._on_delivery_confirmation(frame)
return d
def check_response(error):
self.assertIsInstance(error.value, UnroutableError)
self.assertEqual(len(error.value.messages), 1)
msg = error.value.messages[0]
self.assertEqual(msg.body, "testbody")
d.addCallbacks(send_message, self.fail)
d.addCallbacks(self.fail, check_response)
# Simulate Confirm.SelectOk
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
return d
@deferred(timeout=5.0)
def test_confirm_delivery_returned_nacked(self):
# Verify that messages can be nacked when delivery
# confirmation is on.
d = self.channel.confirm_delivery()
self.pika_channel.add_on_return_callback.assert_called_once()
return_cb = self.pika_channel.add_on_return_callback.call_args[0][0]
def send_message(_result):
d = self.channel.basic_publish("testexch", "testrk", "testbody")
# Send the Basic.Return frame
method = spec.Basic.Return(
exchange="testexch", routing_key="testrk")
return_cb(self.channel, method,
spec.BasicProperties(), "testbody")
# Send the Basic.Nack frame
frame = Method(1, spec.Basic.Nack(delivery_tag=1))
self.channel._on_delivery_confirmation(frame)
return d
def check_response(error):
self.assertTrue(isinstance(error.value, NackError))
self.assertEqual(len(error.value.messages), 1)
msg = error.value.messages[0]
self.assertEqual(msg.body, "testbody")
d.addCallback(send_message)
d.addCallbacks(self.fail, check_response)
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
return d
@deferred(timeout=5.0)
def test_confirm_delivery_multiple(self):
# Verify that multiple messages can be acked at once when
# delivery confirmation is on.
d = self.channel.confirm_delivery()
def send_message(_result):
d1 = self.channel.basic_publish("testexch", "testrk", "testbody1")
d2 = self.channel.basic_publish("testexch", "testrk", "testbody2")
frame = Method(1, spec.Basic.Ack(delivery_tag=2, multiple=True))
self.channel._on_delivery_confirmation(frame)
return defer.DeferredList([d1, d2])
def check_response(results):
self.assertTrue(len(results), 2)
for is_ok, result in results:
self.assertTrue(is_ok)
self.assertTrue(isinstance(result, spec.Basic.Ack))
d.addCallback(send_message)
d.addCallback(check_response)
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
return d
@deferred(timeout=5.0)
def test_delivery_confirmation_errback_on_close(self):
# Verify deliveries that haven't had their callback invoked errback when
# the channel closes.
d = self.channel.confirm_delivery()
# Simulate Confirm.SelectOk
self.pika_channel.confirm_delivery.call_args[1]["callback"](None)
def send_message_and_close_channel(_result):
d = self.channel.basic_publish("testexch", "testrk", "testbody")
self.channel._on_channel_closed(None, RuntimeError("testing"))
self.assertEqual(len(self.channel._deliveries), 0)
return d
d.addCallback(send_message_and_close_channel)
return self.assertFailure(d, RuntimeError)
class TwistedProtocolConnectionTestCase(TestCase):
def setUp(self):
self.conn = TwistedProtocolConnection()
self.conn._impl = mock.Mock()
@deferred(timeout=5.0)
def test_connection(self):
# Verify that the connection opening is properly wrapped.
transport = mock.Mock()
self.conn.connectionMade = mock.Mock()
self.conn.makeConnection(transport)
self.conn._impl.connection_made.assert_called_once_with(
transport)
self.conn.connectionMade.assert_called_once()
d = self.conn.ready
self.conn._on_connection_ready(None)
return d
@deferred(timeout=5.0)
def test_channel(self):
# Verify that the request for a channel works properly.
channel = mock.Mock()
self.conn._impl.channel.side_effect = lambda n, cb: cb(channel)
d = self.conn.channel()
self.conn._impl.channel.assert_called_once()
def check(result):
self.assertTrue(isinstance(result, TwistedChannel))
d.addCallback(check)
return d
@deferred(timeout=5.0)
def test_channel_errback_if_connection_closed(self):
# Verify calls to channel() that haven't had their callback invoked
# errback when the connection closes.
self.conn._on_connection_ready("dummy")
d = self.conn.channel()
self.conn._on_connection_closed("test conn", RuntimeError("testing"))
self.assertEqual(len(self.conn._calls), 0)
return self.assertFailure(d, RuntimeError)
def test_dataReceived(self):
# Verify that the data is transmitted to the callback method.
self.conn.dataReceived("testdata")
self.conn._impl.data_received.assert_called_once_with("testdata")
@deferred(timeout=5.0)
def test_connectionLost(self):
# Verify that the "ready" Deferred errbacks on connectionLost, and that
# the underlying implementation callback is called.
ready_d = self.conn.ready
error = RuntimeError("testreason")
self.conn.connectionLost(error)
self.conn._impl.connection_lost.assert_called_with(error)
self.assertIsNone(self.conn.ready)
return self.assertFailure(ready_d, RuntimeError)
def test_connectionLost_twice(self):
# Verify that calling connectionLost twice will not cause an
# AlreadyCalled error on the Deferred.
ready_d = self.conn.ready
error = RuntimeError("testreason")
self.conn.connectionLost(error)
self.assertTrue(ready_d.called)
ready_d.addErrback(lambda f: None) # silence the error
self.assertIsNone(self.conn.ready)
# A second call must not raise AlreadyCalled
self.conn.connectionLost(error)
@deferred(timeout=5.0)
def test_on_connection_ready(self):
# Verify that the "ready" Deferred is resolved on _on_connection_ready.
d = self.conn.ready
self.conn._on_connection_ready("testresult")
self.assertTrue(d.called)
d.addCallback(functools.partial(self.assertIsInstance, cls=TwistedProtocolConnection))
return d
def test_on_connection_ready_twice(self):
# Verify that calling _on_connection_ready twice will not cause an
# AlreadyCalled error on the Deferred.
d = self.conn.ready
self.conn._on_connection_ready("testresult")
self.assertTrue(d.called)
# A second call must not raise AlreadyCalled
self.conn._on_connection_ready("testresult")
@deferred(timeout=5.0)
def test_on_connection_ready_method(self):
# Verify that the connectionReady method is called when the "ready"
# Deferred is resolved.
d = self.conn.ready
self.conn.connectionReady = mock.Mock()
self.conn._on_connection_ready("testresult")
self.conn.connectionReady.assert_called_once()
return d
@deferred(timeout=5.0)
def test_on_connection_failed(self):
# Verify that the "ready" Deferred errbacks on _on_connection_failed.
d = self.conn.ready
self.conn._on_connection_failed(None)
return self.assertFailure(d, AMQPConnectionError)
def test_on_connection_failed_twice(self):
# Verify that calling _on_connection_failed twice will not cause an
# AlreadyCalled error on the Deferred.
d = self.conn.ready
self.conn._on_connection_failed(None)
self.assertTrue(d.called)
d.addErrback(lambda f: None) # silence the error
# A second call must not raise AlreadyCalled
self.conn._on_connection_failed(None)
@deferred(timeout=5.0)
def test_on_connection_closed(self):
# Verify that the "closed" Deferred is resolved on
# _on_connection_closed.
self.conn._on_connection_ready("dummy")
d = self.conn.closed
self.conn._on_connection_closed("test conn", "test reason")
self.assertTrue(d.called)
d.addCallback(self.assertEqual, "test reason")
return d
def test_on_connection_closed_twice(self):
# Verify that calling _on_connection_closed twice will not cause an
# AlreadyCalled error on the Deferred.
self.conn._on_connection_ready("dummy")
d = self.conn.closed
self.conn._on_connection_closed("test conn", "test reason")
self.assertTrue(d.called)
# A second call must not raise AlreadyCalled
self.conn._on_connection_closed("test conn", "test reason")
@deferred(timeout=5.0)
def test_on_connection_closed_Failure(self):
# Verify that the _on_connection_closed method can be called with
# a Failure instance without triggering the errback path.
self.conn._on_connection_ready("dummy")
error = RuntimeError()
d = self.conn.closed
self.conn._on_connection_closed("test conn", Failure(error))
self.assertTrue(d.called)
def _check_cb(result):
self.assertEqual(result, error)
def _check_eb(_failure):
self.fail("The errback path should not have been triggered")
d.addCallbacks(_check_cb, _check_eb)
return d
def test_close(self):
# Verify that the close method is properly wrapped.
self.conn._impl.is_closed = False
self.conn.closed = "TESTING"
value = self.conn.close()
self.assertEqual(value, "TESTING")
self.conn._impl.close.assert_called_once_with(200, "Normal shutdown")
def test_close_twice(self):
# Verify that the close method is only transmitted when open.
self.conn._impl.is_closed = True
self.conn.close()
self.conn._impl.close.assert_not_called()
class TwistedConnectionAdapterTestCase(TestCase):
def setUp(self):
self.conn = _TwistedConnectionAdapter(
None, None, None, None, None
)
def tearDown(self):
if self.conn._transport is None:
self.conn._transport = mock.Mock()
self.conn.close()
def test_adapter_disconnect_stream(self):
# Verify that the underlying transport is aborted.
transport = mock.Mock()
self.conn.connection_made(transport)
self.conn._adapter_disconnect_stream()
transport.loseConnection.assert_called_once()
def test_adapter_emit_data(self):
# Verify that the data is transmitted to the underlying transport.
transport = mock.Mock()
self.conn.connection_made(transport)
self.conn._adapter_emit_data("testdata")
transport.write.assert_called_with("testdata")
def test_timeout(self):
# Verify that timeouts are registered and cancelled properly.
callback = mock.Mock()
timer_id = self.conn._adapter_call_later(5, callback)
self.assertEqual(len(reactor.getDelayedCalls()), 1)
self.conn._adapter_remove_timeout(timer_id)
self.assertEqual(len(reactor.getDelayedCalls()), 0)
callback.assert_not_called()
@deferred(timeout=5.0)
def test_call_threadsafe(self):
# Verify that the method is actually called using the reactor's
# callFromThread method.
callback = mock.Mock()
self.conn._adapter_add_callback_threadsafe(callback)
d = defer.Deferred()
def check():
callback.assert_called_once()
d.callback(None)
# Give time to run the callFromThread call
reactor.callLater(0.1, check)
return d
def test_connection_made(self):
# Verify the connection callback
transport = mock.Mock()
self.conn.connection_made(transport)
self.assertEqual(self.conn._transport, transport)
self.assertEqual(
self.conn.connection_state, self.conn.CONNECTION_PROTOCOL)
def test_connection_lost(self):
# Verify that the correct callback is called and that the
# attributes are reinitialized.
self.conn._on_stream_terminated = mock.Mock()
error = Failure(RuntimeError("testreason"))
self.conn.connection_lost(error)
self.conn._on_stream_terminated.assert_called_with(error.value)
self.assertIsNone(self.conn._transport)
def test_connection_lost_connectiondone(self):
# When the ConnectionDone is transmitted, consider it an expected
# disconnection.
self.conn._on_stream_terminated = mock.Mock()
error = Failure(twisted_error.ConnectionDone())
self.conn.connection_lost(error)
self.assertEqual(self.conn._error, error.value)
self.conn._on_stream_terminated.assert_called_with(None)
self.assertIsNone(self.conn._transport)
def test_data_received(self):
# Verify that the received data is forwarded to the Connection.
data = b"test data"
self.conn._on_data_available = mock.Mock()
self.conn.data_received(data)
self.conn._on_data_available.assert_called_once_with(data)
class TimerHandleTestCase(TestCase):
def setUp(self):
self.handle = mock.Mock()
self.timer = _TimerHandle(self.handle)
def test_cancel(self):
# Verify that the cancel call is properly transmitted.
self.timer.cancel()
self.handle.cancel.assert_called_once()
self.assertIsNone(self.timer._handle)
def test_cancel_twice(self):
# Verify that cancel() can be called twice.
self.timer.cancel()
self.timer.cancel() # This must not traceback
def test_cancel_already_called(self):
# Verify that the timer gracefully handles AlreadyCalled errors.
self.handle.cancel.side_effect = twisted_error.AlreadyCalled()
self.timer.cancel()
self.handle.cancel.assert_called_once()
def test_cancel_already_cancelled(self):
# Verify that the timer gracefully handles AlreadyCancelled errors.
self.handle.cancel.side_effect = twisted_error.AlreadyCancelled()
self.timer.cancel()
self.handle.cancel.assert_called_once()
|