-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_utils.py
301 lines (219 loc) · 6.55 KB
/
test_utils.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
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
from cachebox import (
Frozen,
LRUCache,
cached,
make_typed_key,
make_key,
cachedmethod,
EVENT_HIT,
EVENT_MISS,
is_cached,
)
import asyncio
import pytest
import time
def test_frozen():
cache = LRUCache(10, {i: i for i in range(8)})
f = Frozen(cache)
assert f.maxsize == cache.maxsize
with pytest.raises(TypeError):
f[0] = 0
with pytest.raises(TypeError):
f.pop(0)
with pytest.raises(TypeError):
f.popitem()
assert len(f) == 8
assert len(f) == len(cache)
cache.insert(9, 9)
assert len(f) == 9
assert len(f) == len(cache)
def test_cached():
obj = LRUCache(3) # type: LRUCache[int, int]
@cached(obj)
def factorial(n):
fact = 1
for num in range(2, n + 1):
fact *= num
time.sleep(0.1) # need for testing
return fact
perf_1 = time.perf_counter()
factorial(15)
perf_1 = time.perf_counter() - perf_1
assert factorial.cache_info().length == 1
assert factorial.cache_info().misses == 1
perf_2 = time.perf_counter()
factorial(15)
perf_2 = time.perf_counter() - perf_2
assert perf_1 > perf_2
assert factorial.cache_info().hits == 1
factorial.cache_clear()
assert factorial.cache_info().hits == 0
assert factorial.cache_info().misses == 0
perf_3 = time.perf_counter()
factorial(15)
perf_3 = time.perf_counter() - perf_3
assert perf_3 > perf_2
# test cachebox__ignore
factorial.cache_clear()
assert len(factorial.cache) == 0
factorial(15, cachebox__ignore=True)
assert len(factorial.cache) == 0
def test_key_makers():
@cached(LRUCache(125), key_maker=make_key)
def func(a, b, c):
return a, b, c
func(1, 2, 3)
func(1.0, 2, 3.0)
func(3, 2, 1)
assert len(func.cache) == 2
@cached(LRUCache(125), key_maker=make_typed_key)
def func(a, b, c):
return a, b, c
func(1, 2, 3)
func(1.0, 2, 3.0)
func(3, 2, 1)
assert len(func.cache) == 3
@pytest.mark.asyncio
async def test_async_cached():
obj = LRUCache(3) # type: LRUCache[int, int]
@cached(obj)
async def factorial(n: int, _: str):
fact = 1
for num in range(2, n + 1):
fact *= num
await asyncio.sleep(0.1) # need for testing
return fact
perf_1 = time.perf_counter()
await factorial(15, "cachebox")
perf_1 = time.perf_counter() - perf_1
assert factorial.cache_info().length == 1
assert factorial.cache_info().misses == 1
perf_2 = time.perf_counter()
await factorial(15, "cachebox")
perf_2 = time.perf_counter() - perf_2
assert perf_1 > perf_2
assert factorial.cache_info().hits == 1
factorial.cache_clear()
assert factorial.cache_info().hits == 0
assert factorial.cache_info().misses == 0
perf_3 = time.perf_counter()
await factorial(15, "cachebox")
perf_3 = time.perf_counter() - perf_3
assert perf_3 > perf_2
# test cachebox__ignore
factorial.cache_clear()
assert len(factorial.cache) == 0
await factorial(15, "me", cachebox__ignore=True)
assert len(factorial.cache) == 0
def test_cachedmethod():
class TestCachedMethod:
def __init__(self, num) -> None:
self.num = num
@cachedmethod(None)
def method(self, char: str):
assert type(self) is TestCachedMethod
return char * self.num
cls = TestCachedMethod(10)
assert cls.method("a") == ("a" * 10)
@pytest.mark.asyncio
async def test_async_cachedmethod():
class TestCachedMethod:
def __init__(self, num) -> None:
self.num = num
@cachedmethod(LRUCache(0))
async def method(self, char: str):
assert type(self) is TestCachedMethod
return char * self.num
cls = TestCachedMethod(10)
assert (await cls.method("a")) == ("a" * 10)
def test_callback():
obj = LRUCache(3)
called = list()
@cached(
obj,
key_maker=lambda args, _: args[0],
callback=lambda event, key, value: called.append((event, key, value)),
)
def factorial(n: int, /):
fact = 1
for num in range(2, n + 1):
fact *= num
return fact
assert factorial(5) == 120
assert len(called) == 1
assert called[0] == (EVENT_MISS, 5, 120)
assert factorial(5) == 120
assert len(called) == 2
assert called[1] == (EVENT_HIT, 5, 120)
assert factorial(3) == 6
assert len(called) == 3
assert called[2] == (EVENT_MISS, 3, 6)
assert is_cached(factorial)
async def _test_async_callback():
obj = LRUCache(3)
called = list()
async def _callback(event, key, value):
called.append((event, key, value))
@cached(obj, key_maker=lambda args, _: args[0], callback=_callback)
async def factorial(n: int, /):
fact = 1
for num in range(2, n + 1):
fact *= num
return fact
assert await factorial(5) == 120
assert len(called) == 1
assert called[0] == (EVENT_MISS, 5, 120)
assert await factorial(5) == 120
assert len(called) == 2
assert called[1] == (EVENT_HIT, 5, 120)
assert await factorial(3) == 6
assert len(called) == 3
assert called[2] == (EVENT_MISS, 3, 6)
assert is_cached(factorial)
assert not is_cached(_callback)
def test_async_callback():
try:
loop = asyncio.get_running_loop()
except RuntimeError:
loop = asyncio.new_event_loop()
loop.run_until_complete(_test_async_callback())
def test_copy_level():
class A:
def __init__(self, c: int) -> None:
self.c = c
@cached(LRUCache(0))
def func(c: int) -> A:
return A(c)
result = func(1)
assert result.c == 1
result.c = 2
result = func(1)
assert result.c == 2 # !!!
@cached(LRUCache(0), copy_level=2)
def func(c: int) -> A:
return A(c)
result = func(1)
assert result.c == 1
result.c = 2
result = func(1)
assert result.c == 1 # :)
def test_classmethod():
class MyClass:
def __init__(self, num: int) -> None:
self.num = num
@classmethod
@cached(None, copy_level=2)
def new(cls, num: int):
return cls(num)
a = MyClass.new(1)
assert isinstance(a, MyClass) and a.num == 1
def test_staticmethod():
class MyClass:
def __init__(self, num: int) -> None:
self.num = num
@staticmethod
@cached(None, copy_level=2)
def new(num: int):
return num
a = MyClass.new(1)
assert isinstance(a, int) and a == 1