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
|
import asyncio
import pytest
from async_lru import alru_cache
@pytest.mark.parametrize("num_to_cancel", (0, 1, 2, 3))
async def test_cancel(num_to_cancel: int) -> None:
@alru_cache
async def coro(val: int) -> int:
# I am a long running coro function
await asyncio.sleep(0.1)
return val
# create 3 tasks for the cached function using the same key
tasks = [asyncio.create_task(coro(i)) for i in range(3)]
# force the event loop to run once so the tasks can begin
await asyncio.sleep(0)
# maybe cancel some tasks
for i in range(num_to_cancel):
tasks[i].cancel()
# allow enough time for the non-cancelled tasks to complete
await asyncio.sleep(0.2)
# check tasks are properly cancelled
for i in range(num_to_cancel):
assert tasks[i].cancelled()
# check non-cancelled tasks return expected outputs
for i in range(num_to_cancel, 3):
assert await tasks[i] == i
@pytest.mark.asyncio
async def test_cancel_single_waiter_triggers_handle_cancelled_error() -> None:
# This test ensures the _handle_cancelled_error path (waiters == 1) is exercised.
cache_item_task_finished = False
@alru_cache
async def coro(val: int) -> None:
nonlocal cache_item_task_finished
await asyncio.sleep(2)
cache_item_task_finished = True # pragma: no cover
task = asyncio.create_task(coro(42))
await asyncio.sleep(0)
task.cancel()
try:
await task
except asyncio.CancelledError:
pass
# The underlying coroutine should be cancelled, so the flag should remain False
assert cache_item_task_finished is False
|