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
|
import asyncio
from unittest.mock import ANY, MagicMock, create_autospec, patch
import pytest
from aiocache.backends.memory import SimpleMemoryBackend, SimpleMemoryCache
from aiocache.base import BaseCache
from aiocache.serializers import NullSerializer
from ...utils import Keys
@pytest.fixture
def memory(mocker):
memory = SimpleMemoryBackend()
mocker.spy(memory, "_cache")
return memory
class TestSimpleMemoryBackend:
async def test_get(self, memory):
await memory._get(Keys.KEY)
memory._cache.get.assert_called_with(Keys.KEY)
async def test_gets(self, mocker, memory):
mocker.spy(memory, "_get")
await memory._gets(Keys.KEY)
memory._get.assert_called_with(Keys.KEY, encoding="utf-8", _conn=ANY)
async def test_set(self, memory):
await memory._set(Keys.KEY, "value")
memory._cache.__setitem__.assert_called_with(Keys.KEY, "value")
async def test_set_no_ttl_no_handle(self, memory):
await memory._set(Keys.KEY, "value", ttl=0)
assert Keys.KEY not in memory._handlers
await memory._set(Keys.KEY, "value")
assert Keys.KEY not in memory._handlers
async def test_set_cancel_previous_ttl_handle(self, memory):
with patch("asyncio.get_running_loop", autospec=True):
await memory._set(Keys.KEY, "value", ttl=0.1)
memory._handlers[Keys.KEY].cancel.assert_not_called()
await memory._set(Keys.KEY, "new_value", ttl=0.1)
memory._handlers[Keys.KEY].cancel.assert_called_once_with()
async def test_set_ttl_handle(self, memory):
await memory._set(Keys.KEY, "value", ttl=100)
assert Keys.KEY in memory._handlers
assert isinstance(memory._handlers[Keys.KEY], asyncio.Handle)
async def test_set_cas_token(self, memory):
memory._cache.get.return_value = "old_value"
assert await memory._set(Keys.KEY, "value", _cas_token="old_value") == 1
memory._cache.__setitem__.assert_called_with(Keys.KEY, "value")
async def test_set_cas_fail(self, memory):
memory._cache.get.return_value = "value"
assert await memory._set(Keys.KEY, "value", _cas_token="old_value") == 0
assert memory._cache.__setitem__.call_count == 0
async def test_multi_get(self, memory):
await memory._multi_get([Keys.KEY, Keys.KEY_1])
memory._cache.get.assert_any_call(Keys.KEY)
memory._cache.get.assert_any_call(Keys.KEY_1)
async def test_multi_set(self, memory):
await memory._multi_set([(Keys.KEY, "value"), (Keys.KEY_1, "random")])
memory._cache.__setitem__.assert_any_call(Keys.KEY, "value")
memory._cache.__setitem__.assert_any_call(Keys.KEY_1, "random")
async def test_add(self, memory, mocker):
mocker.spy(memory, "_set")
await memory._add(Keys.KEY, "value")
memory._set.assert_called_with(Keys.KEY, "value", ttl=None)
async def test_add_existing(self, memory):
memory._cache.__contains__.return_value = True
with pytest.raises(ValueError):
await memory._add(Keys.KEY, "value")
async def test_exists(self, memory):
await memory._exists(Keys.KEY)
memory._cache.__contains__.assert_called_with(Keys.KEY)
async def test_increment(self, memory):
await memory._increment(Keys.KEY, 2)
memory._cache.__contains__.assert_called_with(Keys.KEY)
memory._cache.__setitem__.assert_called_with(Keys.KEY, 2)
async def test_increment_missing(self, memory):
memory._cache.__contains__.return_value = True
memory._cache.__getitem__.return_value = 2
await memory._increment(Keys.KEY, 2)
memory._cache.__getitem__.assert_called_with(Keys.KEY)
memory._cache.__setitem__.assert_called_with(Keys.KEY, 4)
async def test_increment_typerror(self, memory):
memory._cache.__contains__.return_value = True
memory._cache.__getitem__.return_value = "asd"
with pytest.raises(TypeError):
await memory._increment(Keys.KEY, 2)
async def test_expire_no_handle_no_ttl(self, memory):
memory._cache.__contains__.return_value = True
await memory._expire(Keys.KEY, 0)
assert memory._handlers.get(Keys.KEY) is None
async def test_expire_no_handle_ttl(self, memory):
memory._cache.__contains__.return_value = True
await memory._expire(Keys.KEY, 1)
assert isinstance(memory._handlers.get(Keys.KEY), asyncio.Handle)
async def test_expire_handle_ttl(self, memory):
fake = create_autospec(asyncio.TimerHandle, instance=True)
memory._handlers[Keys.KEY] = fake
memory._cache.__contains__.return_value = True
await memory._expire(Keys.KEY, 1)
assert fake.cancel.call_count == 1
assert isinstance(memory._handlers.get(Keys.KEY), asyncio.Handle)
async def test_expire_missing(self, memory):
memory._cache.__contains__.return_value = False
assert await memory._expire(Keys.KEY, 1) is False
async def test_delete(self, memory):
fake = create_autospec(asyncio.TimerHandle, instance=True)
memory._handlers[Keys.KEY] = fake
await memory._delete(Keys.KEY)
assert fake.cancel.call_count == 1
assert Keys.KEY not in memory._handlers
memory._cache.pop.assert_called_with(Keys.KEY, None)
async def test_delete_missing(self, memory):
memory._cache.pop.return_value = None
await memory._delete(Keys.KEY)
memory._cache.pop.assert_called_with(Keys.KEY, None)
async def test_delete_non_truthy(self, memory):
non_truthy = MagicMock(spec_set=("__bool__",))
non_truthy.__bool__.side_effect = ValueError("Does not implement truthiness")
with pytest.raises(ValueError):
bool(non_truthy)
memory._cache.pop.return_value = non_truthy
await memory._delete(Keys.KEY)
assert non_truthy.__bool__.call_count == 1
memory._cache.pop.assert_called_with(Keys.KEY, None)
async def test_clear_namespace(self, memory):
memory._cache.__iter__.return_value = iter(["nma", "nmb", "no"])
await memory._clear("nm")
assert memory._cache.pop.call_count == 2
memory._cache.pop.assert_any_call("nma", None)
memory._cache.pop.assert_any_call("nmb", None)
async def test_clear_no_namespace(self, memory):
memory._handlers = "asdad"
memory._cache = "asdad"
await memory._clear()
memory._handlers = {}
memory._cache = {}
async def test_raw(self, memory):
await memory._raw("get", Keys.KEY)
memory._cache.get.assert_called_with(Keys.KEY)
await memory._set(Keys.KEY, "value")
memory._cache.__setitem__.assert_called_with(Keys.KEY, "value")
async def test_redlock_release(self, memory):
memory._cache.get.return_value = "lock"
fake = create_autospec(asyncio.TimerHandle, instance=True)
memory._handlers[Keys.KEY] = fake
assert await memory._redlock_release(Keys.KEY, "lock") == 1
memory._cache.get.assert_called_with(Keys.KEY)
memory._cache.pop.assert_called_with(Keys.KEY, None)
assert fake.cancel.call_count == 1
assert Keys.KEY not in memory._handlers
async def test_redlock_release_nokey(self, memory):
memory._cache.get.return_value = None
assert await memory._redlock_release(Keys.KEY, "lock") == 0
memory._cache.get.assert_called_with(Keys.KEY)
assert memory._cache.pop.call_count == 0
class TestSimpleMemoryCache:
def test_name(self):
assert SimpleMemoryCache.NAME == "memory"
def test_inheritance(self):
assert isinstance(SimpleMemoryCache(), BaseCache)
def test_default_serializer(self):
assert isinstance(SimpleMemoryCache().serializer, NullSerializer)
def test_parse_uri_path(self):
assert SimpleMemoryCache().parse_uri_path("/1/2/3") == {}
|