Changeset View
Changeset View
Standalone View
Standalone View
swh/indexer/tests/conftest.py
| # Copyright (C) 2019-2022 The Software Heritage developers | # Copyright (C) 2019-2022 The Software Heritage developers | ||||
| # See the AUTHORS file at the top-level directory of this distribution | # See the AUTHORS file at the top-level directory of this distribution | ||||
| # License: GNU General Public License version 3, or any later version | # License: GNU General Public License version 3, or any later version | ||||
| # See top-level LICENSE file for more information | # See top-level LICENSE file for more information | ||||
| from datetime import timedelta | from datetime import timedelta | ||||
| from functools import partial | from functools import partial | ||||
| import os | import os | ||||
| from typing import List, Tuple | from typing import List, Tuple | ||||
| from unittest.mock import patch | from unittest.mock import patch | ||||
| import pytest | import pytest | ||||
| from pytest_postgresql import factories | from pytest_postgresql import factories | ||||
| import yaml | import yaml | ||||
| from swh.core.db.pytest_plugin import initialize_database_for_module | from swh.core.db.pytest_plugin import initialize_database_for_module | ||||
| from swh.indexer.storage import get_indexer_storage | from swh.indexer.storage import IndexerStorage, get_indexer_storage | ||||
| from swh.indexer.storage.db import Db as IndexerDb | |||||
| from swh.objstorage.factory import get_objstorage | from swh.objstorage.factory import get_objstorage | ||||
| from swh.storage import get_storage | from swh.storage import get_storage | ||||
| from .utils import fill_obj_storage, fill_storage | from .utils import fill_obj_storage, fill_storage | ||||
| TASK_NAMES: List[Tuple[str, str]] = [ | TASK_NAMES: List[Tuple[str, str]] = [ | ||||
| # (scheduler-task-type, task-class-test-name) | # (scheduler-task-type, task-class-test-name) | ||||
| ("index-directory-metadata", "directory_intrinsic_metadata"), | ("index-directory-metadata", "directory_intrinsic_metadata"), | ||||
| ("index-origin-metadata", "origin_intrinsic_metadata"), | ("index-origin-metadata", "origin_intrinsic_metadata"), | ||||
| ] | ] | ||||
| idx_postgresql_proc = factories.postgresql_proc( | idx_postgresql_proc = factories.postgresql_proc( | ||||
| load=[ | load=[ | ||||
| partial( | partial( | ||||
| initialize_database_for_module, | initialize_database_for_module, | ||||
| modname="indexer", | modname="indexer", | ||||
| version=IndexerDb.current_version, | version=IndexerStorage.current_version, | ||||
| ) | ) | ||||
| ], | ], | ||||
| ) | ) | ||||
| idx_storage_postgresql = factories.postgresql("idx_postgresql_proc") | idx_storage_postgresql = factories.postgresql("idx_postgresql_proc") | ||||
| @pytest.fixture | @pytest.fixture | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||