##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r5106:4e5efedc default
r5365:ae8a165b default
Show More
test_caches.py
107 lines | 3.5 KiB | text/x-python | PythonLexer
tests: fixed all tests for python3 BIG changes
r5087
project: added all source files and assets
r1
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
project: added all source files and assets
r1 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
import time
import pytest
caches: rewrite of auth/permission caches to dogpile.
r2845 from rhodecode.lib import rc_cache
project: added all source files and assets
r1
caches: new cache context managers....
r2932 @pytest.mark.usefixtures('app')
caches: rewrite of auth/permission caches to dogpile.
r2845 class TestCaches(object):
project: added all source files and assets
r1
caches: rewrite of auth/permission caches to dogpile.
r2845 def test_cache_decorator_init_not_configured(self):
with pytest.raises(EnvironmentError):
rc_cache.get_or_create_region('dontexist')
@pytest.mark.parametrize('region_name', [
'cache_perms', u'cache_perms',
project: added all source files and assets
r1 ])
caches: rewrite of auth/permission caches to dogpile.
r2845 def test_cache_decorator_init(self, region_name):
namespace = region_name
caches: make sure the global cache namespace prefixes are used....
r5106 cache_region = rc_cache.get_or_create_region(region_name, region_namespace=namespace)
caches: rewrite of auth/permission caches to dogpile.
r2845 assert cache_region
project: added all source files and assets
r1
@pytest.mark.parametrize('example_input', [
('',),
(u'/ac',),
(u'/ac', 1, 2, object()),
(u'/ęćc', 1, 2, object()),
('/Ä…ac',),
(u'/ac', ),
])
def test_cache_manager_create_key(self, example_input):
caches: rewrite of auth/permission caches to dogpile.
r2845 key = rc_cache.utils.compute_key_from_params(*example_input)
project: added all source files and assets
r1 assert key
caches: rewrite of auth/permission caches to dogpile.
r2845 @pytest.mark.parametrize('example_namespace', [
'namespace', None
])
@pytest.mark.parametrize('example_input', [
('',),
(u'/ac',),
(u'/ac', 1, 2, object()),
(u'/ęćc', 1, 2, object()),
('/Ä…ac',),
(u'/ac', ),
])
def test_cache_keygen(self, example_input, example_namespace):
def func_wrapped():
return 1
tests: fixed all tests for python3 BIG changes
r5087 func = rc_cache.utils.custom_key_generator(None, example_namespace, func_wrapped)
caches: rewrite of auth/permission caches to dogpile.
r2845 key = func(*example_input)
assert key
project: added all source files and assets
r1
caches: rewrite of auth/permission caches to dogpile.
r2845 def test_store_value_in_cache(self):
tests: fixed all tests for python3 BIG changes
r5087 cache_region = rc_cache.get_or_create_region('cache_perms', 'test_cache')
caches: rewrite of auth/permission caches to dogpile.
r2845 # make sure we empty the cache now
caches: use delete_multi for clearing out cache keys....
r2888 cache_region.delete_multi(cache_region.backend.list_keys())
caches: rewrite of auth/permission caches to dogpile.
r2845
assert cache_region.backend.list_keys() == []
caches: use new decorator that uses conditional caches skipping dogpile if cache is disabled.
r2892 @cache_region.conditional_cache_on_arguments(expiration_time=5)
caches: rewrite of auth/permission caches to dogpile.
r2845 def compute(key):
project: added all source files and assets
r1 return time.time()
caches: rewrite of auth/permission caches to dogpile.
r2845 for x in range(10):
compute(x)
assert len(set(cache_region.backend.list_keys())) == 10
project: added all source files and assets
r1
caches: rewrite of auth/permission caches to dogpile.
r2845 def test_store_and_get_value_from_region(self):
tests: fixed all tests for python3 BIG changes
r5087 cache_region = rc_cache.get_or_create_region('cache_perms', 'test_cache')
caches: rewrite of auth/permission caches to dogpile.
r2845 # make sure we empty the cache now
for key in cache_region.backend.list_keys():
cache_region.delete(key)
assert cache_region.backend.list_keys() == []
project: added all source files and assets
r1
caches: use new decorator that uses conditional caches skipping dogpile if cache is disabled.
r2892 @cache_region.conditional_cache_on_arguments(expiration_time=5)
caches: rewrite of auth/permission caches to dogpile.
r2845 def compute(key):
return time.time()
project: added all source files and assets
r1
caches: rewrite of auth/permission caches to dogpile.
r2845 result = set()
for x in range(10):
ret = compute('x')
result.add(ret)
project: added all source files and assets
r1
caches: rewrite of auth/permission caches to dogpile.
r2845 # once computed we have only one value (the same from cache)
# after executing it 10x
assert len(result) == 1