auto-archiver/tests/conftest.py

160 wiersze
5.1 KiB
Python
Czysty Zwykły widok Historia

"""
pytest conftest file, for shared fixtures and configuration
"""
2025-03-10 18:44:54 +00:00
2025-02-05 16:42:58 +00:00
import os
import pickle
from datetime import datetime, timezone
from tempfile import TemporaryDirectory
from typing import Dict, Tuple
2025-01-28 13:40:12 +00:00
import hashlib
2025-02-12 19:32:40 +00:00
import pytest
from auto_archiver.core.metadata import Metadata
from auto_archiver.core.module import ModuleFactory
# Test names inserted into this list will be run last. This is useful for expensive/costly tests
# that you only want to run if everything else succeeds (e.g. API calls). The order here is important
# what comes first will be run first (at the end of all other tests not mentioned)
# format is the name of the module (python file) without the .py extension
2025-03-10 18:44:54 +00:00
TESTS_TO_RUN_LAST = ["test_twitter_api_archiver"]
2025-01-28 13:40:12 +00:00
@pytest.fixture
def setup_module(request):
def _setup_module(module_name, config=None):
if config is None:
config = {}
module_factory = ModuleFactory()
2025-01-28 13:40:12 +00:00
if isinstance(module_name, type):
# get the module name:
# if the class does not have a .name, use the name of the parent folder
2025-03-10 18:44:54 +00:00
module_name = module_name.__module__.rsplit(".", 2)[-2]
2025-01-28 13:40:12 +00:00
m = module_factory.get_module(module_name, {module_name: config})
# add the tmp_dir to the module
tmp_dir = TemporaryDirectory()
2025-01-30 15:46:53 +00:00
m.tmp_dir = tmp_dir.name
2025-03-10 18:44:54 +00:00
2025-01-28 13:40:12 +00:00
def cleanup():
tmp_dir.cleanup()
2025-03-10 18:44:54 +00:00
2025-01-28 13:40:12 +00:00
request.addfinalizer(cleanup)
return m
return _setup_module
2025-03-10 18:44:54 +00:00
2025-01-28 13:40:12 +00:00
@pytest.fixture
def check_hash():
def _check_hash(filename: str, hash: str):
with open(filename, "rb") as f:
buf = f.read()
assert hash == hashlib.sha256(buf).hexdigest()
return _check_hash
2025-03-10 18:44:54 +00:00
@pytest.fixture
def make_item():
def _make_item(url: str, **kwargs) -> Metadata:
item = Metadata().set_url(url)
for key, value in kwargs.items():
item.set(key, value)
return item
return _make_item
def pytest_collection_modifyitems(items):
module_mapping = {item: item.module.__name__.split(".")[-1] for item in items}
sorted_items = items.copy()
# Iteratively move tests of each module to the end of the test queue
for module in TESTS_TO_RUN_LAST:
if module in module_mapping.values():
for item in sorted_items:
if module_mapping[item] == module:
sorted_items.remove(item)
sorted_items.append(item)
items[:] = sorted_items
# Incremental testing - fail tests in a class if any previous test fails
# taken from https://docs.pytest.org/en/latest/example/simple.html#incremental-testing-test-steps
# store history of failures per test class name and per index in parametrize (if parametrize used)
_test_failed_incremental: Dict[str, Dict[Tuple[int, ...], str]] = {}
2025-03-10 18:44:54 +00:00
def pytest_runtest_makereport(item, call):
if "incremental" in item.keywords:
# incremental marker is used
if call.excinfo is not None:
# the test has failed
# retrieve the class name of the test
cls_name = str(item.cls)
# retrieve the index of the test (if parametrize is used in combination with incremental)
2025-03-10 18:44:54 +00:00
parametrize_index = tuple(item.callspec.indices.values()) if hasattr(item, "callspec") else ()
# retrieve the name of the test function
test_name = item.originalname or item.name
# store in _test_failed_incremental the original name of the failed test
2025-03-10 18:44:54 +00:00
_test_failed_incremental.setdefault(cls_name, {}).setdefault(parametrize_index, test_name)
def pytest_runtest_setup(item):
if "incremental" in item.keywords:
# retrieve the class name of the test
cls_name = str(item.cls)
# check if a previous test has failed for this class
if cls_name in _test_failed_incremental:
# retrieve the name of the first test function to fail for this class name and index
test_name = _test_failed_incremental[cls_name].get((), None)
# if name found, test has failed for the combination of class name & test name
if test_name is not None:
2025-02-05 16:42:58 +00:00
pytest.xfail(f"previous test failed ({test_name})")
@pytest.fixture()
def unpickle():
"""
Returns a helper function that unpickles a file
2025-02-14 10:05:32 +00:00
** gets the file from the test_files directory: tests/data/ **
2025-02-05 16:42:58 +00:00
"""
2025-03-10 18:44:54 +00:00
2025-02-05 16:42:58 +00:00
def _unpickle(path):
2025-02-14 10:05:32 +00:00
with open(os.path.join("tests/data", path), "rb") as f:
2025-02-05 16:42:58 +00:00
return pickle.load(f)
2025-03-10 18:44:54 +00:00
2025-02-12 19:32:40 +00:00
return _unpickle
@pytest.fixture
2025-02-18 23:32:03 +00:00
def mock_binary_dependencies(mocker):
mock_shutil_which = mocker.patch("shutil.which")
# Mock all binary dependencies as available
mock_shutil_which.return_value = "/usr/bin/fake_binary"
return mock_shutil_which
@pytest.fixture
def sample_datetime():
return datetime(2023, 1, 1, 12, 0, tzinfo=timezone.utc)
2025-02-18 23:32:03 +00:00
2025-03-13 15:23:35 +00:00
@pytest.fixture
2025-02-18 23:32:03 +00:00
def mock_sleep(mocker):
2025-03-13 15:23:35 +00:00
"""Mock time.sleep to avoid delays."""
2025-02-18 23:32:03 +00:00
return mocker.patch("time.sleep")
@pytest.fixture
def metadata():
metadata = Metadata()
metadata.set("_processed_at", "2021-01-01T00:00:00")
metadata.set_url("https://example.com")
2025-03-10 18:44:54 +00:00
return metadata