mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-06 07:50:32 +00:00
* Migrate to hatchling instead of poetry, ruff instead of flake8 * Migrate to hatchling instead of poetry, ruff instead of flake8 * Update tests suite * venv? * -m venv? * Change dependencies * Remove venv * Change mypy config * Added changelog * Mark uvloop incompatible with pypy * Update release script * Use internal caching for dependencies * Re-disable cov branches * Added contributing guide
127 lines
3 KiB
Python
127 lines
3 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
from _pytest.config import UsageError
|
|
from redis.asyncio.connection import parse_url as parse_redis_url
|
|
|
|
from aiogram import Bot, Dispatcher
|
|
from aiogram.fsm.storage.memory import (
|
|
DisabledEventIsolation,
|
|
MemoryStorage,
|
|
SimpleEventIsolation,
|
|
)
|
|
from aiogram.fsm.storage.redis import RedisEventIsolation, RedisStorage
|
|
from tests.mocked_bot import MockedBot
|
|
|
|
DATA_DIR = Path(__file__).parent / "data"
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption("--redis", default=None, help="run tests which require redis connection")
|
|
|
|
|
|
def pytest_configure(config):
|
|
config.addinivalue_line("markers", "redis: marked tests require redis connection to run")
|
|
|
|
|
|
def pytest_collection_modifyitems(config, items):
|
|
redis_uri = config.getoption("--redis")
|
|
if redis_uri is None:
|
|
skip_redis = pytest.mark.skip(reason="need --redis option with redis URI to run")
|
|
for item in items:
|
|
if "redis" in item.keywords:
|
|
item.add_marker(skip_redis)
|
|
return
|
|
try:
|
|
parse_redis_url(redis_uri)
|
|
except ValueError as e:
|
|
raise UsageError(f"Invalid redis URI {redis_uri!r}: {e}")
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def redis_server(request):
|
|
redis_uri = request.config.getoption("--redis")
|
|
return redis_uri
|
|
|
|
|
|
@pytest.fixture()
|
|
@pytest.mark.redis
|
|
async def redis_storage(redis_server):
|
|
if not redis_server:
|
|
pytest.skip("Redis is not available here")
|
|
storage = RedisStorage.from_url(redis_server)
|
|
try:
|
|
await storage.redis.info()
|
|
except ConnectionError as e:
|
|
pytest.skip(str(e))
|
|
try:
|
|
yield storage
|
|
finally:
|
|
conn = await storage.redis
|
|
await conn.flushdb()
|
|
await storage.close()
|
|
|
|
|
|
@pytest.fixture()
|
|
async def memory_storage():
|
|
storage = MemoryStorage()
|
|
try:
|
|
yield storage
|
|
finally:
|
|
await storage.close()
|
|
|
|
|
|
@pytest.fixture()
|
|
@pytest.mark.redis
|
|
async def redis_isolation(redis_server):
|
|
if not redis_server:
|
|
pytest.skip("Redis is not available here")
|
|
isolation = RedisEventIsolation.from_url(redis_server)
|
|
try:
|
|
await isolation.redis.info()
|
|
except ConnectionError as e:
|
|
pytest.skip(str(e))
|
|
try:
|
|
yield isolation
|
|
finally:
|
|
conn = await isolation.redis
|
|
await conn.flushdb()
|
|
await isolation.close()
|
|
|
|
|
|
@pytest.fixture()
|
|
async def lock_isolation():
|
|
isolation = SimpleEventIsolation()
|
|
try:
|
|
yield isolation
|
|
finally:
|
|
await isolation.close()
|
|
|
|
|
|
@pytest.fixture()
|
|
async def disabled_isolation():
|
|
isolation = DisabledEventIsolation()
|
|
try:
|
|
yield isolation
|
|
finally:
|
|
await isolation.close()
|
|
|
|
|
|
@pytest.fixture()
|
|
def bot():
|
|
bot = MockedBot()
|
|
token = Bot.set_current(bot)
|
|
try:
|
|
yield bot
|
|
finally:
|
|
Bot.reset_current(token)
|
|
|
|
|
|
@pytest.fixture()
|
|
async def dispatcher():
|
|
dp = Dispatcher()
|
|
await dp.emit_startup()
|
|
try:
|
|
yield dp
|
|
finally:
|
|
await dp.emit_shutdown()
|