1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
import pytest
from django.core.cache import caches
from redis import RedisError
from django_prometheus.testutils import assert_metric_equal, get_metric
_SUPPORTED_CACHES = [
"memcached.PyLibMCCache",
"memcached.PyMemcacheCache",
"filebased",
"locmem",
"native_redis",
"redis",
]
class TestCachesMetrics:
"""Test django_prometheus.caches metrics."""
@pytest.mark.parametrize("supported_cache", _SUPPORTED_CACHES)
def test_counters(self, supported_cache):
# Note: those tests require a memcached server running
tested_cache = caches[supported_cache]
backend = supported_cache.split(".")[0]
total_before = get_metric("django_cache_get_total", backend=backend) or 0
hit_before = get_metric("django_cache_get_hits_total", backend=backend) or 0
miss_before = get_metric("django_cache_get_misses_total", backend=backend) or 0
tested_cache.set("foo1", "bar")
tested_cache.get("foo1")
tested_cache.get("foo1")
tested_cache.get("foofoo")
result = tested_cache.get("foofoo", default="default")
assert result == "default"
assert_metric_equal(total_before + 4, "django_cache_get_total", backend=backend)
assert_metric_equal(hit_before + 2, "django_cache_get_hits_total", backend=backend)
assert_metric_equal(
miss_before + 2,
"django_cache_get_misses_total",
backend=backend,
)
def test_redis_cache_fail(self):
# Note: test use fake service config (like if server was stopped)
supported_cache = "redis"
total_before = get_metric("django_cache_get_total", backend=supported_cache) or 0
fail_before = get_metric("django_cache_get_fail_total", backend=supported_cache) or 0
hit_before = get_metric("django_cache_get_hits_total", backend=supported_cache) or 0
miss_before = get_metric("django_cache_get_misses_total", backend=supported_cache) or 0
tested_cache = caches["stopped_redis_ignore_exception"]
tested_cache.get("foo1")
assert_metric_equal(hit_before, "django_cache_get_hits_total", backend=supported_cache)
assert_metric_equal(miss_before, "django_cache_get_misses_total", backend=supported_cache)
assert_metric_equal(total_before + 1, "django_cache_get_total", backend=supported_cache)
assert_metric_equal(fail_before + 1, "django_cache_get_fail_total", backend=supported_cache)
tested_cache = caches["stopped_redis"]
with pytest.raises(RedisError):
tested_cache.get("foo1")
assert_metric_equal(hit_before, "django_cache_get_hits_total", backend=supported_cache)
assert_metric_equal(miss_before, "django_cache_get_misses_total", backend=supported_cache)
assert_metric_equal(total_before + 2, "django_cache_get_total", backend=supported_cache)
assert_metric_equal(fail_before + 2, "django_cache_get_fail_total", backend=supported_cache)
@pytest.mark.parametrize("supported_cache", _SUPPORTED_CACHES)
def test_cache_version_support(self, supported_cache):
# Note: those tests require a memcached server running
tested_cache = caches[supported_cache]
tested_cache.set("foo1", "bar v.1", version=1)
tested_cache.set("foo1", "bar v.2", version=2)
assert tested_cache.get("foo1", version=1) == "bar v.1"
assert tested_cache.get("foo1", version=2) == "bar v.2"
|