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
|
import asyncio
from functools import partial
from unittest import mock
import pytest
from async_lru import _LRUCacheWrapper
async def test_done_callback_cancelled() -> None:
wrapped = _LRUCacheWrapper(mock.ANY, None, False, None)
loop = asyncio.get_running_loop()
task = loop.create_future()
fut = loop.create_future()
key = 1
task.add_done_callback(partial(wrapped._task_done_callback, fut, key))
wrapped._LRUCacheWrapper__tasks.add(task) # type: ignore[attr-defined]
task.cancel()
await asyncio.sleep(0)
assert fut.cancelled()
async def test_done_callback_exception() -> None:
wrapped = _LRUCacheWrapper(mock.ANY, None, False, None)
loop = asyncio.get_running_loop()
task = loop.create_future()
fut = loop.create_future()
key = 1
task.add_done_callback(partial(wrapped._task_done_callback, fut, key))
wrapped._LRUCacheWrapper__tasks.add(task) # type: ignore[attr-defined]
exc = ZeroDivisionError()
task.set_exception(exc)
await asyncio.sleep(0)
with pytest.raises(ZeroDivisionError):
await fut
with pytest.raises(ZeroDivisionError):
fut.result()
assert fut.exception() is exc
async def test_done_callback() -> None:
wrapped = _LRUCacheWrapper(mock.ANY, None, False, None)
loop = asyncio.get_running_loop()
task = loop.create_future()
key = 1
fut = loop.create_future()
task.add_done_callback(partial(wrapped._task_done_callback, fut, key))
wrapped._LRUCacheWrapper__tasks.add(task) # type: ignore[attr-defined]
task.set_result(1)
await asyncio.sleep(0)
assert fut.result() == 1
async def test_cache_invalidate_typed() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, True, None)
from_cache = wrapped.cache_invalidate(1, a=1)
assert not from_cache
await wrapped(1, a=1)
from_cache = wrapped.cache_invalidate(1, a=1)
assert from_cache
assert wrapped.cache_info().currsize == 0
from_cache = wrapped.cache_invalidate(1.0, a=1)
assert not from_cache
assert wrapped.cache_info().currsize == 0
await wrapped(1.0, a=1)
assert wrapped.cache_info().currsize == 1
from_cache = wrapped.cache_invalidate(1.0, a=1)
assert from_cache
async def test_cache_invalidate_not_typed() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, False, None)
from_cache = wrapped.cache_invalidate(1, a=1)
assert not from_cache
await wrapped(1, a=1)
assert wrapped.cache_info().currsize == 1
from_cache = wrapped.cache_invalidate(1, a=1)
assert from_cache
assert wrapped.cache_info().currsize == 0
await wrapped(1, a=1)
assert wrapped.cache_info().currsize == 1
from_cache = wrapped.cache_invalidate(1.0, a=1)
assert from_cache
assert wrapped.cache_info().currsize == 0
async def test_cache_clear() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, True, None)
await wrapped(123)
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 1
assert wrapped.cache_info().currsize == 1
assert wrapped.cache_parameters()["tasks"] == 0
await wrapped(123)
assert wrapped.cache_info().hits == 1
assert wrapped.cache_info().misses == 1
assert wrapped.cache_info().currsize == 1
assert wrapped.cache_parameters()["tasks"] == 0
wrapped.cache_clear()
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 0
assert wrapped.cache_info().currsize == 0
assert wrapped.cache_parameters()["tasks"] == 0
def test_cache_info() -> None:
wrapped = _LRUCacheWrapper(mock.ANY, 3, True, None)
assert (0, 0, 3, 0) == wrapped.cache_info()
wrapped._LRUCacheWrapper__cache[1] = 1 # type: ignore[attr-defined]
assert (0, 0, 3, 1) == wrapped.cache_info()
wrapped._LRUCacheWrapper__hits = 2 # type: ignore[attr-defined]
wrapped._LRUCacheWrapper__misses = 3 # type: ignore[attr-defined]
wrapped._LRUCacheWrapper__cache[2] = 2 # type: ignore[attr-defined]
assert (2, 3, 3, 2) == wrapped.cache_info()
async def test_cache_hit() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, True, None)
await wrapped(1)
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 1
await wrapped(1)
assert wrapped.cache_info().hits == 1
assert wrapped.cache_info().misses == 1
await wrapped(1)
assert wrapped.cache_info().hits == 2
assert wrapped.cache_info().misses == 1
async def test_cache_miss() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, True, None)
await wrapped(1)
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 1
await wrapped(2)
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 2
await wrapped(3)
assert wrapped.cache_info().hits == 0
assert wrapped.cache_info().misses == 3
async def test_forbid_call_closed() -> None:
wrapped = _LRUCacheWrapper(mock.AsyncMock(return_value=1), None, True, None)
wrapped._LRUCacheWrapper__closed = True # type: ignore[attr-defined]
with pytest.raises(RuntimeError):
await wrapped(123)
|