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
|
import asyncio
from functools import partial
import pytest
from aiormq import ChannelNotFoundEntity
from aiormq.exceptions import ChannelPreconditionFailed
import aio_pika
from aio_pika import RobustChannel
from tests import get_random_name
from tests.test_amqp import (
TestCaseAmqp, TestCaseAmqpNoConfirms, TestCaseAmqpWithConfirms,
)
@pytest.fixture
def connection_fabric():
return aio_pika.connect_robust
@pytest.fixture
def create_connection(connection_fabric, event_loop, amqp_url):
return partial(connection_fabric, amqp_url, loop=event_loop)
class TestCaseNoRobust(TestCaseAmqp):
PARAMS = [{"robust": True}, {"robust": False}]
IDS = ["robust=1", "robust=0"]
@staticmethod
@pytest.fixture(name="declare_queue", params=PARAMS, ids=IDS)
def declare_queue_(request, declare_queue):
async def fabric(*args, **kwargs) -> aio_pika.Queue:
kwargs.update(request.param)
return await declare_queue(*args, **kwargs)
return fabric
@staticmethod
@pytest.fixture(name="declare_exchange", params=PARAMS, ids=IDS)
def declare_exchange_(request, declare_exchange):
async def fabric(*args, **kwargs) -> aio_pika.Queue:
kwargs.update(request.param)
return await declare_exchange(*args, **kwargs)
return fabric
async def test_add_reconnect_callback(self, create_connection):
connection = await create_connection()
def cb(*a, **kw):
pass
connection.reconnect_callbacks.add(cb)
del cb
assert len(connection.reconnect_callbacks) == 1
async def test_channel_blocking_timeout_reopen(self, connection):
channel: RobustChannel = await connection.channel() # type: ignore
close_reasons = []
close_event = asyncio.Event()
reopen_event = asyncio.Event()
channel.reopen_callbacks.add(lambda *_: reopen_event.set())
queue_name = get_random_name("test_channel_blocking_timeout_reopen")
def on_done(*args):
close_reasons.append(args)
close_event.set()
return
channel.close_callbacks.add(on_done)
with pytest.raises(ChannelNotFoundEntity):
await channel.declare_queue(queue_name, passive=True)
await close_event.wait()
assert channel.is_closed
# Ensure close callback has been called
assert close_reasons
await asyncio.wait_for(reopen_event.wait(), timeout=60)
await channel.declare_queue(queue_name, auto_delete=True)
async def test_get_queue_fail(self, connection):
channel: RobustChannel = await connection.channel() # type: ignore
close_event = asyncio.Event()
reopen_event = asyncio.Event()
channel.close_callbacks.add(lambda *_: close_event.set())
channel.reopen_callbacks.add(lambda *_: reopen_event.set())
name = get_random_name("passive", "queue")
await channel.declare_queue(
name,
auto_delete=True,
arguments={"x-max-length": 1},
)
with pytest.raises(ChannelPreconditionFailed):
await channel.declare_queue(name, auto_delete=True)
await asyncio.sleep(0)
await close_event.wait()
await reopen_event.wait()
with pytest.raises(ChannelPreconditionFailed):
await channel.declare_queue(name, auto_delete=True)
async def test_channel_is_ready_after_close_and_reopen(self, connection):
channel: RobustChannel = await connection.channel() # type: ignore
await channel.ready()
await channel.close()
assert channel.is_closed is True
await channel.reopen()
await asyncio.wait_for(channel.ready(), timeout=1)
assert channel.is_closed is False
async def test_channel_can_be_closed(self, connection):
channel: RobustChannel = await connection.channel() # type: ignore
await channel.ready()
await channel.close()
assert channel.is_closed
with pytest.raises(asyncio.TimeoutError):
await asyncio.wait_for(channel.ready(), timeout=1)
assert channel.is_closed
class TestCaseAmqpNoConfirmsRobust(TestCaseAmqpNoConfirms):
pass
class TestCaseAmqpWithConfirmsRobust(TestCaseAmqpWithConfirms):
pass
|