redis-om-python/tests/conftest.py

42 lines
888 B
Python
Raw Normal View History

2021-11-10 00:59:10 +01:00
import asyncio
2021-10-21 08:24:31 +02:00
import random
import pytest
2021-11-10 00:59:10 +01:00
from aredis_om import get_redis_connection
2021-11-10 00:59:10 +01:00
@pytest.fixture(scope="session")
def event_loop(request):
"""
Starlette needs a session-scoped event loop during test runs.
https://github.com/pytest-dev/pytest-asyncio/issues/169
"""
loop = asyncio.get_event_loop_policy().new_event_loop()
yield loop
loop.close()
@pytest.fixture(scope="session")
def redis():
yield get_redis_connection()
async def _delete_test_keys(prefix: str, conn):
2021-10-21 08:24:31 +02:00
keys = []
async for key in conn.scan_iter(f"{prefix}:*"):
2021-10-21 08:24:31 +02:00
keys.append(key)
if keys:
conn.delete(*keys)
2021-10-21 08:24:31 +02:00
@pytest.fixture
def key_prefix(redis):
key_prefix = f"redis-om:{random.random()}"
2021-10-21 08:24:31 +02:00
yield key_prefix
2021-10-21 08:31:11 +02:00
2021-10-21 08:24:31 +02:00
@pytest.fixture(autouse=True)
async def delete_test_keys(redis, request, key_prefix):
await _delete_test_keys(key_prefix, redis)