import json from typing import Any, Dict, List import pytest from openslides.utils.cache import ElementCache from .cache_provider import TTestCacheProvider, example_data, get_cachable_provider def decode_dict(encoded_dict: Dict[str, str]) -> Dict[str, Any]: """ Helper function that loads the json values of a dict. """ return {key: json.loads(value) for key, value in encoded_dict.items()} def sort_dict( encoded_dict: Dict[str, List[Dict[str, Any]]] ) -> Dict[str, List[Dict[str, Any]]]: """ Helper function that sorts the value of a dict. """ return { key: sorted(value, key=lambda x: x["id"]) for key, value in encoded_dict.items() } @pytest.fixture def element_cache(): element_cache = ElementCache( cache_provider_class=TTestCacheProvider, cachable_provider=get_cachable_provider(), default_change_id=0, ) element_cache.ensure_cache() return element_cache @pytest.mark.asyncio async def test_change_elements(element_cache): input_data = { "app/collection1:1": {"id": 1, "value": "updated"}, "app/collection1:2": {"id": 2, "value": "new"}, "app/collection2:1": {"id": 1, "key": "updated"}, "app/collection2:2": None, # Deleted } element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "old"}', "app/collection2:1": '{"id": 1, "key": "old"}', "app/collection2:2": '{"id": 2, "key": "old"}', } result = await element_cache.change_elements(input_data) assert result == 1 # first change_id assert decode_dict(element_cache.cache_provider.full_data) == decode_dict( { "app/collection1:1": '{"id": 1, "value": "updated"}', "app/collection1:2": '{"id": 2, "value": "new"}', "app/collection2:1": '{"id": 1, "key": "updated"}', } ) assert element_cache.cache_provider.change_id_data == { 1: { "app/collection1:1", "app/collection1:2", "app/collection2:1", "app/collection2:2", } } @pytest.mark.asyncio async def test_change_elements_with_no_data_in_redis(element_cache): input_data = { "app/collection1:1": {"id": 1, "value": "updated"}, "app/collection1:2": {"id": 2, "value": "new"}, "app/collection2:1": {"id": 1, "key": "updated"}, "app/collection2:2": None, } result = await element_cache.change_elements(input_data) assert result == 1 # first change_id assert decode_dict(element_cache.cache_provider.full_data) == decode_dict( { "app/collection1:1": '{"id": 1, "value": "updated"}', "app/collection1:2": '{"id": 2, "value": "new"}', "app/collection2:1": '{"id": 1, "key": "updated"}', } ) assert element_cache.cache_provider.change_id_data == { 1: { "app/collection1:1", "app/collection1:2", "app/collection2:1", "app/collection2:2", } } @pytest.mark.asyncio async def test_get_all_data_from_db(element_cache): result = await element_cache.get_all_data_list() assert result == example_data() # Test that elements are written to redis assert decode_dict(element_cache.cache_provider.full_data) == decode_dict( { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } ) @pytest.mark.asyncio async def test_get_all_data_from_redis(element_cache): element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } result = await element_cache.get_all_data_list() # The output from redis has to be the same then the db_data assert sort_dict(result) == sort_dict(example_data()) @pytest.mark.asyncio async def test_get_data_since_change_id_0(element_cache): element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } result = await element_cache.get_data_since(None, 0) assert sort_dict(result[0]) == sort_dict(example_data()) @pytest.mark.asyncio async def test_get_data_since_change_id_lower_than_in_redis(element_cache): element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } element_cache.cache_provider.default_change_id = 2 element_cache.cache_provider.change_id_data = {2: {"app/collection1:1"}} with pytest.raises(RuntimeError): await element_cache.get_data_since(None, 1) @pytest.mark.asyncio async def test_get_data_since_change_id_data_in_redis(element_cache): element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } element_cache.cache_provider.change_id_data = { 1: {"app/collection1:1", "app/collection1:3"} } result = await element_cache.get_data_since(None, 1) assert result == ( {"app/collection1": [{"id": 1, "value": "value1"}]}, ["app/collection1:3"], ) @pytest.mark.asyncio async def test_get_data_since_change_id_data_in_db(element_cache): element_cache.cache_provider.change_id_data = { 1: {"app/collection1:1", "app/collection1:3"} } result = await element_cache.get_data_since(None, 1) assert result == ( {"app/collection1": [{"id": 1, "value": "value1"}]}, ["app/collection1:3"], ) @pytest.mark.asyncio async def test_get_gata_since_change_id_data_in_db_empty_change_id(element_cache): result = await element_cache.get_data_since(None, 1) assert result == ({}, []) @pytest.mark.asyncio async def test_get_element_data_empty_redis(element_cache): result = await element_cache.get_element_data("app/collection1", 1) assert result == {"id": 1, "value": "value1"} @pytest.mark.asyncio async def test_get_element_data_empty_redis_does_not_exist(element_cache): result = await element_cache.get_element_data("app/collection1", 3) assert result is None @pytest.mark.asyncio async def test_get_element_data_full_redis(element_cache): element_cache.cache_provider.full_data = { "app/collection1:1": '{"id": 1, "value": "value1"}', "app/collection1:2": '{"id": 2, "value": "value2"}', "app/collection2:1": '{"id": 1, "key": "value1"}', "app/collection2:2": '{"id": 2, "key": "value2"}', } result = await element_cache.get_element_data("app/collection1", 1) assert result == {"id": 1, "value": "value1"} @pytest.mark.asyncio async def test_get_all_restricted_data(element_cache): result = await element_cache.get_all_data_list(0) assert sort_dict(result) == sort_dict( { "app/collection1": [ {"id": 1, "value": "restricted_value1"}, {"id": 2, "value": "restricted_value2"}, ], "app/collection2": [ {"id": 1, "key": "restricted_value1"}, {"id": 2, "key": "restricted_value2"}, ], } ) @pytest.mark.asyncio async def test_get_restricted_data_change_id_0(element_cache): result = await element_cache.get_data_since(0, 0) assert sort_dict(result[0]) == sort_dict( { "app/collection1": [ {"id": 1, "value": "restricted_value1"}, {"id": 2, "value": "restricted_value2"}, ], "app/collection2": [ {"id": 1, "key": "restricted_value1"}, {"id": 2, "key": "restricted_value2"}, ], } ) @pytest.mark.asyncio async def test_get_restricted_data_2(element_cache): element_cache.cache_provider.change_id_data = { 1: {"app/collection1:1", "app/collection1:3"} } result = await element_cache.get_data_since(0, 1) assert result == ( {"app/collection1": [{"id": 1, "value": "restricted_value1"}]}, ["app/collection1:3"], ) @pytest.mark.asyncio async def test_get_restricted_data_change_id_lower_than_in_redis(element_cache): element_cache.cache_provider.default_change_id = 2 with pytest.raises(RuntimeError): await element_cache.get_data_since(0, 1) @pytest.mark.asyncio async def test_get_restricted_data_change_with_id(element_cache): element_cache.cache_provider.change_id_data = {2: {"app/collection1:1"}} result = await element_cache.get_data_since(0, 2) assert result == ( {"app/collection1": [{"id": 1, "value": "restricted_value1"}]}, [], ) @pytest.mark.asyncio async def test_lowest_change_id_after_updating_lowest_element(element_cache): await element_cache.change_elements( {"app/collection1:1": {"id": 1, "value": "updated1"}} ) first_lowest_change_id = await element_cache.get_lowest_change_id() # Alter same element again await element_cache.change_elements( {"app/collection1:1": {"id": 1, "value": "updated2"}} ) second_lowest_change_id = await element_cache.get_lowest_change_id() assert first_lowest_change_id == 0 assert second_lowest_change_id == 0 # The lowest_change_id should not change