Esempio n. 1
0
    def test_set_cache_no_kwargs(self):
        settings.set_cache("aiocache.RedisCache",
                           endpoint="127.0.0.1",
                           port=6379)
        settings.set_cache("aiocache.RedisCache")

        assert settings._CACHE_KWARGS == {}
Esempio n. 2
0
def set_settings():
    settings.set_cache(
        MemcachedCache,
        endpoint="endpoint",
        port="port",
    )
    yield
    settings.set_cache(SimpleMemoryCache)
Esempio n. 3
0
def set_settings():
    settings.set_cache(RedisCache,
                       endpoint="endpoint",
                       port="port",
                       password="******",
                       db=2,
                       pool_min_size=2,
                       pool_max_size=20)
    yield
    settings.set_cache(SimpleMemoryCache)
Esempio n. 4
0
    def test_set_cache_class(self):
        settings.set_cache(aiocache.RedisCache,
                           endpoint="127.0.0.1",
                           port=6379)

        assert settings._CACHE == aiocache.RedisCache
        assert settings._CACHE_KWARGS == {
            "endpoint": "127.0.0.1",
            "port": 6379
        }
Esempio n. 5
0
    def test_cache_settings(self):
        settings.set_cache(RedisCache,
                           endpoint="127.0.0.1",
                           port=6379,
                           timeout=10,
                           db=1)
        cache = RedisCache(db=0)

        assert cache.endpoint == "127.0.0.1"
        assert cache.port == 6379
        assert cache.timeout == 10
        assert cache.db == 0
Esempio n. 6
0
    def test_get_cache_with_default_plugins_kwargs(self):
        settings.set_cache(
            "aiocache.RedisCache", endpoint="http://...", port=6379)
        cache = get_cache(
            namespace="default", serializer=PickleSerializer(),
            plugins=BasePlugin(), port=123)

        assert isinstance(cache, RedisCache)
        assert cache.endpoint == "http://..."
        assert cache.port == 123
        assert cache.namespace == "default"
        assert isinstance(cache.serializer, PickleSerializer)
        assert isinstance(cache.plugins, BasePlugin)
Esempio n. 7
0
 def memcached_defaults(self):
     settings.set_cache("aiocache.MemcachedCache")
     yield
     settings.set_cache("aiocache.MemcachedCache")
Esempio n. 8
0
 def redis_defaults(self):
     settings.set_cache("aiocache.RedisCache")
     yield
     settings.set_cache("aiocache.SimpleMemoryCache")
Esempio n. 9
0
 def test_set_cache_class_fail(self):
     with pytest.raises(ValueError):
         settings.set_cache(DefaultSerializer,
                            endpoint="127.0.0.1",
                            port=6379)
Esempio n. 10
0
 def test_set_cache_str_fail(self):
     with pytest.raises(ValueError):
         settings.set_cache("aiocache.serializers.DefaultSerializer",
                            endpoint="127.0.0.1",
                            port=6379)
Esempio n. 11
0
 def test_set_cache_without_arg(self):
     with pytest.raises(TypeError):
         settings.set_cache(endpoint="127.0.0.1", port=6379)
Esempio n. 12
0
def test_get_cache_value_with_fallbacks_with_settings():
    settings.set_cache(RedisCache, fake_key="random")
    assert get_cache_value_with_fallbacks(None, "fake_key", "DEFAULT", cls=RedisCache) == "random"