nvchecker/tests/conftest.py

106 lines
2.6 KiB
Python
Raw Normal View History

2020-08-11 09:43:03 +00:00
# MIT licensed
# Copyright (c) 2020 lilydjwg <lilydjwg@gmail.com>, et al.
2017-07-04 09:04:29 +00:00
import asyncio
import structlog
import os
from pathlib import Path
2017-07-04 09:04:29 +00:00
2020-08-17 07:11:14 +00:00
import toml
import pytest
2018-05-08 10:18:10 +00:00
2020-08-17 07:11:14 +00:00
from nvchecker import core
from nvchecker import __main__ as main
from nvchecker.util import Entries, VersData, RawResult
2020-08-20 07:18:05 +00:00
use_keyfile = False
2020-08-17 07:11:14 +00:00
async def run(
entries: Entries, max_concurrency: int = 20,
) -> VersData:
task_sem = asyncio.Semaphore(max_concurrency)
2020-08-17 07:11:14 +00:00
result_q: asyncio.Queue[RawResult] = asyncio.Queue()
keyfile = os.environ.get('KEYFILE')
2020-08-20 07:18:05 +00:00
if use_keyfile and keyfile:
filepath = Path(keyfile)
keymanager = core.KeyManager(filepath)
2020-08-17 07:11:14 +00:00
else:
keymanager = core.KeyManager(None)
dispatcher = core.setup_httpclient()
futures = dispatcher.dispatch(
entries, task_sem, result_q,
keymanager, 1, {},
2020-08-17 07:11:14 +00:00
)
2018-05-08 10:18:10 +00:00
2020-08-17 07:11:14 +00:00
oldvers: VersData = {}
result_coro = core.process_result(oldvers, result_q)
runner_coro = core.run_tasks(futures)
2020-08-17 07:11:14 +00:00
return await main.run(result_coro, runner_coro)
2018-05-08 10:18:10 +00:00
@pytest.fixture(scope="module")
2020-08-17 07:11:14 +00:00
async def get_version():
async def __call__(name, config):
entries = {name: config}
newvers = await run(entries)
2020-08-17 08:21:02 +00:00
return newvers.get(name)
2018-05-08 10:18:10 +00:00
return __call__
2017-07-04 09:04:29 +00:00
@pytest.fixture(scope="module")
2020-08-17 07:11:14 +00:00
async def run_str():
async def __call__(str):
entries = toml.loads(str)
newvers = await run(entries)
return newvers.popitem()[1]
2017-07-04 09:04:29 +00:00
2020-08-17 07:11:14 +00:00
return __call__
2017-07-04 09:04:29 +00:00
2020-08-17 07:11:14 +00:00
@pytest.fixture(scope="module")
async def run_str_multi():
async def __call__(str):
entries = toml.loads(str)
newvers = await run(entries)
return newvers
2017-07-04 09:04:29 +00:00
return __call__
2017-07-04 09:04:29 +00:00
@pytest.fixture(scope="session")
2017-07-04 09:04:29 +00:00
def event_loop(request):
"""Override pytest-asyncio's event_loop fixture,
Don't create an instance of the default event loop for each test case.
We need the same ioloop across tests for the aiohttp support.
"""
loop = asyncio.get_event_loop()
yield loop
@pytest.fixture(scope="session", autouse=True)
def raise_on_logger_msg():
def proc(logger, method_name, event_dict):
if method_name in ('warning', 'error'):
2019-03-07 08:45:14 +00:00
if 'exc_info' in event_dict:
raise event_dict['exc_info']
if not event_dict['event'].startswith(('rate limited', 'no-result')):
raise RuntimeError(event_dict['event'])
return event_dict['event']
structlog.configure([proc])
def pytest_configure(config):
# register an additional marker
config.addinivalue_line(
'markers', 'needs_net: mark test to require Internet access',
)
2020-08-20 07:18:05 +00:00
@pytest.fixture
def keyfile():
global use_keyfile
if 'KEYFILE' not in os.environ:
pytest.skip('KEYFILE not set')
return
use_keyfile = True
yield
use_keyfile = False