我正在使用带有django-pytest
库的Django 1.11.9来测试我的应用。此外,我使用Redis作为缓存存储。我的问题是 - 如何在运行测试之前测试缓存存储并设置测试数据?像数据库那样做。
我想添加一些key: value
数据来测试缓存存储(在Redis中),运行测试然后删除所有这些测试数据(清除测试缓存)。
答案 0 :(得分:1)
我在py.test
docs
类似地,围绕每个方法调用调用以下方法:
def setup_method(self, method):
""" setup any state tied to the execution of the given method in a
class. setup_method is invoked for every test method of a class.
"""
def teardown_method(self, method):
""" teardown any state that was previously setup with a setup_method
call.
"""
答案 1 :(得分:0)
假设您还使用django-redis
库,那么最好使用fakeredis
库并在以下设置下使用:
在app/tests/test_settings.py
中:
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://redis:6379/0",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
"REDIS_CLIENT_CLASS": "fakeredis.FakeStrictRedis",
},
},
}
在app/pytest.ini
中:
[pytest]
DJANGO_SETTINGS_MODULE = ur_l.tests.test_settings
然后在您的app/tests/test_something.py
中
from django.core.cache import cache
def test_cache():
cache.client._clients # check if this points to `fakeredis.FakeStrictRedis` class
# If yes then anything below should now use fake cache