2021-06-15 01:45:31 +03:00
|
|
|
import pytest
|
|
|
|
|
|
2022-08-14 01:07:52 +03:00
|
|
|
from aiogram.fsm.storage.base import DEFAULT_DESTINY, StorageKey
|
|
|
|
|
from aiogram.fsm.storage.redis import DefaultKeyBuilder, RedisEventIsolation, RedisStorage
|
2021-06-15 01:45:31 +03:00
|
|
|
|
2021-08-03 23:40:14 +03:00
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
|
2021-10-11 01:30:19 +03:00
|
|
|
PREFIX = "test"
|
|
|
|
|
BOT_ID = 42
|
|
|
|
|
CHAT_ID = -1
|
|
|
|
|
USER_ID = 2
|
|
|
|
|
FIELD = "data"
|
2021-06-15 01:45:31 +03:00
|
|
|
|
2021-10-11 01:30:19 +03:00
|
|
|
|
|
|
|
|
class TestRedisDefaultKeyBuilder:
|
2021-06-15 01:45:31 +03:00
|
|
|
@pytest.mark.parametrize(
|
2021-10-11 01:30:19 +03:00
|
|
|
"with_bot_id,with_destiny,result",
|
2021-06-15 01:45:31 +03:00
|
|
|
[
|
2021-10-11 01:30:19 +03:00
|
|
|
[False, False, f"{PREFIX}:{CHAT_ID}:{USER_ID}:{FIELD}"],
|
|
|
|
|
[True, False, f"{PREFIX}:{BOT_ID}:{CHAT_ID}:{USER_ID}:{FIELD}"],
|
2021-12-12 18:54:01 +03:00
|
|
|
[True, True, f"{PREFIX}:{BOT_ID}:{CHAT_ID}:{USER_ID}:{DEFAULT_DESTINY}:{FIELD}"],
|
|
|
|
|
[False, True, f"{PREFIX}:{CHAT_ID}:{USER_ID}:{DEFAULT_DESTINY}:{FIELD}"],
|
2021-06-15 01:45:31 +03:00
|
|
|
],
|
|
|
|
|
)
|
2021-10-11 01:30:19 +03:00
|
|
|
async def test_generate_key(self, with_bot_id: bool, with_destiny: bool, result: str):
|
|
|
|
|
key_builder = DefaultKeyBuilder(
|
|
|
|
|
prefix=PREFIX,
|
|
|
|
|
with_bot_id=with_bot_id,
|
|
|
|
|
with_destiny=with_destiny,
|
|
|
|
|
)
|
2021-12-12 18:54:01 +03:00
|
|
|
key = StorageKey(chat_id=CHAT_ID, user_id=USER_ID, bot_id=BOT_ID, destiny=DEFAULT_DESTINY)
|
2021-10-11 01:30:19 +03:00
|
|
|
assert key_builder.build(key, FIELD) == result
|
2021-12-12 18:54:01 +03:00
|
|
|
|
|
|
|
|
async def test_destiny_check(self):
|
|
|
|
|
key_builder = DefaultKeyBuilder(
|
|
|
|
|
with_destiny=False,
|
|
|
|
|
)
|
|
|
|
|
key = StorageKey(chat_id=CHAT_ID, user_id=USER_ID, bot_id=BOT_ID)
|
|
|
|
|
assert key_builder.build(key, FIELD)
|
|
|
|
|
|
|
|
|
|
key = StorageKey(
|
|
|
|
|
chat_id=CHAT_ID, user_id=USER_ID, bot_id=BOT_ID, destiny="CUSTOM_TEST_DESTINY"
|
|
|
|
|
)
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
|
key_builder.build(key, FIELD)
|
2022-02-19 01:45:59 +02:00
|
|
|
|
|
|
|
|
def test_create_isolation(self):
|
|
|
|
|
fake_redis = object()
|
|
|
|
|
storage = RedisStorage(redis=fake_redis)
|
|
|
|
|
isolation = storage.create_isolation()
|
|
|
|
|
assert isinstance(isolation, RedisEventIsolation)
|
|
|
|
|
assert isolation.redis is fake_redis
|
|
|
|
|
assert isolation.key_builder is storage.key_builder
|