forked from jonahar/lightning-systemic-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_sqlite_cache.py
53 lines (38 loc) · 1.58 KB
/
test_sqlite_cache.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
import os
import unittest
from utils import get_sqlite_cache_fullpath, sqlite_cache
class MyTestCase(unittest.TestCase):
def __init_cached_function(self, key_to_str=None):
db_path = get_sqlite_cache_fullpath("foo")
if os.path.isfile(db_path):
os.remove(db_path)
@sqlite_cache(value_to_str=str, str_to_value=float, key_to_str=key_to_str)
def foo(x, y, z) -> float:
foo.calls_counter += 1
return (x + y) * z
foo.calls_counter = 0
return foo
def test_not_entering_original_funcion_twice(self):
foo = self.__init_cached_function()
args_kwargs_pairs = [
((1, 2, 3), {}),
((1, 2), {"z": 3}),
((1,), {"y": 2, "z": 3}),
((), {"x": 1, "y": 2, "z": 3}),
]
for args, kwargs in args_kwargs_pairs:
self.assertEqual(foo(*args, **kwargs), foo(*args, **kwargs))
self.assertEqual(foo.calls_counter, len(args_kwargs_pairs))
def test_correct_result_with_custom_key_to_str(self):
def custom_key_to_str(*args, **kwargs):
return "CONSTANT KEY"
foo = self.__init_cached_function(key_to_str=custom_key_to_str)
self.assertEqual(foo.calls_counter, 0)
# different calls, but the key_to_str function is constant, so they should
# be treated as the same call
foo(1, 1, 1)
foo(2, 2, 2)
foo(3, 3, 3)
self.assertEqual(foo.calls_counter, 1)
if __name__ == '__main__':
unittest.main()