-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtest_receiver_task.py
56 lines (40 loc) · 1.2 KB
/
test_receiver_task.py
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
import asyncio
import contextlib
import pytest
from taskiq.api import run_receiver_task
from tests.utils import AsyncQueueBroker
@pytest.mark.anyio
async def test_successful() -> None:
broker = AsyncQueueBroker()
kicked = 0
desired_kicked = 3
@broker.task
def test_func() -> None:
nonlocal kicked
kicked += 1
receiver_task = asyncio.create_task(run_receiver_task(broker))
for _ in range(desired_kicked):
await test_func.kiq()
await broker.wait_tasks()
receiver_task.cancel()
assert kicked == desired_kicked
@pytest.mark.anyio
async def test_cancelation() -> None:
broker = AsyncQueueBroker()
kicked = 0
@broker.task
def test_func() -> None:
nonlocal kicked
kicked += 1
receiver_task = asyncio.create_task(run_receiver_task(broker))
await test_func.kiq()
await broker.wait_tasks()
assert kicked == 1
receiver_task.cancel()
with contextlib.suppress(asyncio.CancelledError):
await receiver_task
assert receiver_task.cancelled()
await test_func.kiq()
with pytest.raises(asyncio.TimeoutError):
await asyncio.wait_for(broker.wait_tasks(), 0.2)
assert kicked == 1