2018-07-09 23:22:26 +02:00
|
|
|
import json
|
|
|
|
from typing import Any, Dict, List
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2019-09-02 08:50:22 +02:00
|
|
|
from openslides.utils.cache import ChangeIdTooLowError, ElementCache
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
from .cache_provider import TTestCacheProvider, example_data, get_cachable_provider
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
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()}
|
|
|
|
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
def sort_dict(
|
|
|
|
encoded_dict: Dict[str, List[Dict[str, Any]]]
|
|
|
|
) -> Dict[str, List[Dict[str, Any]]]:
|
2018-07-09 23:22:26 +02:00
|
|
|
"""
|
|
|
|
Helper function that sorts the value of a dict.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
return {
|
|
|
|
key: sorted(value, key=lambda x: x["id"]) for key, value in encoded_dict.items()
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def element_cache():
|
2018-09-01 08:00:00 +02:00
|
|
|
element_cache = ElementCache(
|
2018-07-09 23:22:26 +02:00
|
|
|
cache_provider_class=TTestCacheProvider,
|
|
|
|
cachable_provider=get_cachable_provider(),
|
2019-07-29 15:19:59 +02:00
|
|
|
default_change_id=0,
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2018-09-01 08:00:00 +02:00
|
|
|
element_cache.ensure_cache()
|
|
|
|
return element_cache
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_change_elements(element_cache):
|
|
|
|
input_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"app/collection1:1": {"id": 1, "value": "updated"},
|
|
|
|
"app/collection1:2": {"id": 2, "value": "new"},
|
|
|
|
"app/collection2:1": {"id": 1, "key": "updated"},
|
2019-07-29 15:19:59 +02:00
|
|
|
"app/collection2:2": None, # Deleted
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"app/collection1:1": '{"id": 1, "value": "old"}',
|
|
|
|
"app/collection2:1": '{"id": 1, "key": "old"}',
|
|
|
|
"app/collection2:2": '{"id": 2, "key": "old"}',
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
result = await element_cache.change_elements(input_data)
|
|
|
|
|
|
|
|
assert result == 1 # first change_id
|
2019-01-06 16:22:33 +01:00
|
|
|
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"}',
|
|
|
|
}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
assert element_cache.cache_provider.change_id_data == {
|
|
|
|
1: {
|
2019-01-06 16:22:33 +01:00
|
|
|
"app/collection1:1",
|
|
|
|
"app/collection1:2",
|
|
|
|
"app/collection2:1",
|
|
|
|
"app/collection2:2",
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_change_elements_with_no_data_in_redis(element_cache):
|
|
|
|
input_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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,
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:2": None,
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
result = await element_cache.change_elements(input_data)
|
|
|
|
|
|
|
|
assert result == 1 # first change_id
|
2019-01-06 16:22:33 +01:00
|
|
|
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"}',
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:1": '{"id": 1, "key": "value1", "user_id": 1}',
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
assert element_cache.cache_provider.change_id_data == {
|
|
|
|
1: {
|
2019-01-06 16:22:33 +01:00
|
|
|
"app/collection1:1",
|
|
|
|
"app/collection1:2",
|
|
|
|
"app/collection2:1",
|
|
|
|
"app/collection2:2",
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:2",
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_all_data_from_db(element_cache):
|
|
|
|
result = await element_cache.get_all_data_list()
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
assert result == example_data()
|
|
|
|
# Test that elements are written to redis
|
2019-01-06 16:22:33 +01:00
|
|
|
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"}',
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:1": '{"id": 1, "key": "value1", "user_id": 1}',
|
|
|
|
"app/personalized-collection:2": '{"id": 2, "key": "value2", "user_id": 2}',
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_all_data_from_redis(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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"}',
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:1": '{"id": 1, "key": "value1", "user_id": 1}',
|
|
|
|
"app/personalized-collection:2": '{"id": 2, "key": "value2", "user_id": 2}',
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_all_data_list()
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
# The output from redis has to be the same then the db_data
|
|
|
|
assert sort_dict(result) == sort_dict(example_data())
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_data_since_change_id_0(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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"}',
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection:1": '{"id": 1, "key": "value1", "user_id": 1}',
|
|
|
|
"app/personalized-collection:2": '{"id": 2, "key": "value2", "user_id": 2}',
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2020-06-03 14:11:25 +02:00
|
|
|
(
|
|
|
|
max_change_id,
|
|
|
|
changed_elements,
|
|
|
|
deleted_element_ids,
|
|
|
|
) = await element_cache.get_data_since(None, 0)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2020-06-03 14:11:25 +02:00
|
|
|
assert sort_dict(changed_elements) == sort_dict(example_data())
|
|
|
|
assert max_change_id == 0
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-08-14 12:19:20 +02:00
|
|
|
async def test_get_data_since_change_id_lower_than_in_redis(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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"}',
|
|
|
|
}
|
2019-08-14 12:19:20 +02:00
|
|
|
element_cache.cache_provider.default_change_id = 2
|
2019-01-06 16:22:33 +01:00
|
|
|
element_cache.cache_provider.change_id_data = {2: {"app/collection1:1"}}
|
2019-09-02 08:50:22 +02:00
|
|
|
with pytest.raises(ChangeIdTooLowError):
|
2019-07-29 15:19:59 +02:00
|
|
|
await element_cache.get_data_since(None, 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_data_since_change_id_data_in_redis(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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"}',
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.change_id_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
1: {"app/collection1:1", "app/collection1:3"}
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_data_since(None, 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
assert result == (
|
2020-06-03 14:11:25 +02:00
|
|
|
1,
|
2019-01-06 16:22:33 +01:00
|
|
|
{"app/collection1": [{"id": 1, "value": "value1"}]},
|
|
|
|
["app/collection1:3"],
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_data_since_change_id_data_in_db(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.change_id_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
1: {"app/collection1:1", "app/collection1:3"}
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_data_since(None, 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
assert result == (
|
2020-06-03 14:11:25 +02:00
|
|
|
1,
|
2019-01-06 16:22:33 +01:00
|
|
|
{"app/collection1": [{"id": 1, "value": "value1"}]},
|
|
|
|
["app/collection1:3"],
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_gata_since_change_id_data_in_db_empty_change_id(element_cache):
|
2019-08-14 12:19:20 +02:00
|
|
|
result = await element_cache.get_data_since(None, 1)
|
|
|
|
|
2020-06-03 14:11:25 +02:00
|
|
|
assert result == (0, {}, [])
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_element_data_empty_redis(element_cache):
|
|
|
|
result = await element_cache.get_element_data("app/collection1", 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
assert result == {"id": 1, "value": "value1"}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_element_data_empty_redis_does_not_exist(element_cache):
|
|
|
|
result = await element_cache.get_element_data("app/collection1", 3)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
assert result is None
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_element_data_full_redis(element_cache):
|
2018-07-09 23:22:26 +02:00
|
|
|
element_cache.cache_provider.full_data = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"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"}',
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_element_data("app/collection1", 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
assert result == {"id": 1, "value": "value1"}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_get_all_restricted_data(element_cache):
|
2019-09-02 13:57:12 +02:00
|
|
|
result = await element_cache.get_all_data_list(1)
|
|
|
|
|
|
|
|
# The output from redis has to be the same then the db_data
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
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"},
|
|
|
|
],
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection": [{"id": 1, "key": "value1", "user_id": 1}],
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_get_restricted_data_change_id_0(element_cache):
|
2020-06-03 14:11:25 +02:00
|
|
|
(
|
|
|
|
max_change_id,
|
|
|
|
changed_elements,
|
|
|
|
deleted_element_ids,
|
|
|
|
) = await element_cache.get_data_since(2, 0)
|
|
|
|
|
|
|
|
assert max_change_id == 0
|
|
|
|
assert sort_dict(changed_elements) == sort_dict(
|
2019-01-06 16:22:33 +01:00
|
|
|
{
|
|
|
|
"app/collection1": [
|
|
|
|
{"id": 1, "value": "restricted_value1"},
|
|
|
|
{"id": 2, "value": "restricted_value2"},
|
|
|
|
],
|
|
|
|
"app/collection2": [
|
|
|
|
{"id": 1, "key": "restricted_value1"},
|
|
|
|
{"id": 2, "key": "restricted_value2"},
|
|
|
|
],
|
2019-09-02 13:57:12 +02:00
|
|
|
"app/personalized-collection": [{"id": 2, "key": "value2", "user_id": 2}],
|
2019-01-06 16:22:33 +01:00
|
|
|
}
|
|
|
|
)
|
2020-06-03 14:11:25 +02:00
|
|
|
assert deleted_element_ids == []
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-07-29 15:19:59 +02:00
|
|
|
async def test_get_restricted_data_2(element_cache):
|
2019-01-06 16:22:33 +01:00
|
|
|
element_cache.cache_provider.change_id_data = {
|
|
|
|
1: {"app/collection1:1", "app/collection1:3"}
|
|
|
|
}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_data_since(0, 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
assert result == (
|
2020-06-03 14:11:25 +02:00
|
|
|
1,
|
2019-01-06 16:22:33 +01:00
|
|
|
{"app/collection1": [{"id": 1, "value": "restricted_value1"}]},
|
|
|
|
["app/collection1:3"],
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
2019-09-02 13:57:12 +02:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_get_restricted_data_from_personalized_cacheable(element_cache):
|
|
|
|
element_cache.cache_provider.change_id_data = {1: {"app/personalized-collection:2"}}
|
|
|
|
|
|
|
|
result = await element_cache.get_data_since(0, 1)
|
|
|
|
|
2020-06-03 14:11:25 +02:00
|
|
|
assert result == (1, {}, [])
|
2019-09-02 13:57:12 +02:00
|
|
|
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
@pytest.mark.asyncio
|
2019-08-14 12:19:20 +02:00
|
|
|
async def test_get_restricted_data_change_id_lower_than_in_redis(element_cache):
|
|
|
|
element_cache.cache_provider.default_change_id = 2
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-09-02 08:50:22 +02:00
|
|
|
with pytest.raises(ChangeIdTooLowError):
|
2019-07-29 15:19:59 +02:00
|
|
|
await element_cache.get_data_since(0, 1)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2020-06-03 14:11:25 +02:00
|
|
|
async def test_get_restricted_data_with_change_id(element_cache):
|
2019-01-06 16:22:33 +01:00
|
|
|
element_cache.cache_provider.change_id_data = {2: {"app/collection1:1"}}
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-07-29 15:19:59 +02:00
|
|
|
result = await element_cache.get_data_since(0, 2)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
assert result == (
|
2020-06-03 14:11:25 +02:00
|
|
|
2,
|
2019-01-06 16:22:33 +01:00
|
|
|
{"app/collection1": [{"id": 1, "value": "restricted_value1"}]},
|
|
|
|
[],
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_lowest_change_id_after_updating_lowest_element(element_cache):
|
2019-01-06 16:22:33 +01:00
|
|
|
await element_cache.change_elements(
|
|
|
|
{"app/collection1:1": {"id": 1, "value": "updated1"}}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
first_lowest_change_id = await element_cache.get_lowest_change_id()
|
|
|
|
# Alter same element again
|
2019-01-06 16:22:33 +01:00
|
|
|
await element_cache.change_elements(
|
|
|
|
{"app/collection1:1": {"id": 1, "value": "updated2"}}
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
second_lowest_change_id = await element_cache.get_lowest_change_id()
|
|
|
|
|
2019-08-14 12:19:20 +02:00
|
|
|
assert first_lowest_change_id == 0
|
|
|
|
assert second_lowest_change_id == 0 # The lowest_change_id should not change
|