didier/tests/test_database/test_utils/test_caches.py

26 lines
898 B
Python
Raw Normal View History

2022-07-25 21:20:09 +02:00
from database.schemas.relational import UforaCourse
from database.utils.caches import UforaCourseCache
2022-07-25 19:12:27 +02:00
async def test_ufora_course_cache_refresh_empty(postgres, ufora_course_with_alias: UforaCourse):
"""Test loading the data for the Ufora Course cache when it's empty"""
cache = UforaCourseCache()
2022-07-25 19:12:27 +02:00
await cache.refresh(postgres)
2022-07-18 23:23:53 +02:00
assert len(cache.data) == 1
assert cache.data == ["test"]
assert cache.aliases == {"alias": "test"}
2022-07-25 19:12:27 +02:00
async def test_ufora_course_cache_refresh_not_empty(postgres, ufora_course_with_alias: UforaCourse):
"""Test loading the data for the Ufora Course cache when it's not empty anymore"""
cache = UforaCourseCache()
cache.data = ["Something"]
cache.data_transformed = ["something"]
2022-07-25 19:12:27 +02:00
await cache.refresh(postgres)
2022-07-18 23:23:53 +02:00
assert len(cache.data) == 1
assert cache.data == ["test"]
assert cache.aliases == {"alias": "test"}