forked from jonahar/lightning-systemic-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_leveldb_cache.py
55 lines (40 loc) · 1.86 KB
/
test_leveldb_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
54
55
import os
import shutil
import unittest
from utils import get_leveldb_cache_fullpath, leveldb_cache
class MyTestCase(unittest.TestCase):
@staticmethod
def __init_cached_function(key_to_str=None):
db_path = get_leveldb_cache_fullpath("test_method_for_leveldb_cache_test")
if os.path.exists(db_path):
shutil.rmtree(db_path)
@leveldb_cache(value_to_str=str, str_to_value=float, key_to_str=key_to_str)
def test_method_for_leveldb_cache_test(x, y, z) -> float:
test_method_for_leveldb_cache_test.calls_counter += 1
return (x + y) * z
test_method_for_leveldb_cache_test.calls_counter = 0
return test_method_for_leveldb_cache_test
def test_not_entering_original_funcion_twice(self):
cached_function = 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(cached_function(*args, **kwargs), cached_function(*args, **kwargs))
self.assertEqual(cached_function.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"
cached_function = self.__init_cached_function(key_to_str=custom_key_to_str)
self.assertEqual(cached_function.calls_counter, 0)
# different calls, but the key_to_str function is constant, so they should
# be treated as the same call
cached_function(1, 1, 1)
cached_function(2, 2, 2)
cached_function(3, 3, 3)
self.assertEqual(cached_function.calls_counter, 1)
if __name__ == '__main__':
unittest.main()