forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request galaxyproject#18977 from jmchilton/tool_execution_…
…testing More concise, readable tool execution testing.
- Loading branch information
Showing
11 changed files
with
886 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
"""Fixtures for a version of API testing that relies more heavily on pytest injection.""" | ||
|
||
import os | ||
from dataclasses import dataclass | ||
from typing import ( | ||
Any, | ||
Iterator, | ||
List, | ||
Optional, | ||
) | ||
|
||
import pytest | ||
|
||
from galaxy.tool_util.verify.test_data import TestDataResolver | ||
from galaxy_test.base.api import ( | ||
AnonymousGalaxyInteractor, | ||
ApiTestInteractor, | ||
) | ||
from galaxy_test.base.api_util import ( | ||
get_admin_api_key, | ||
get_user_api_key, | ||
) | ||
from galaxy_test.base.env import setup_keep_outdir | ||
from galaxy_test.base.populators import ( | ||
check_missing_tool, | ||
DatasetCollectionPopulator, | ||
DatasetPopulator, | ||
get_tool_ids, | ||
RequiredTool, | ||
TargetHistory, | ||
) | ||
from galaxy_test.base.testcase import host_port_and_url | ||
|
||
|
||
@dataclass | ||
class ApiConfigObject: | ||
host: str | ||
port: Optional[str] | ||
url: str | ||
user_api_key: Optional[str] | ||
admin_api_key: Optional[str] | ||
test_data_resolver: Any | ||
keepOutdir: Any | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def api_test_config_object(real_driver) -> ApiConfigObject: | ||
host, port, url = host_port_and_url(real_driver) | ||
user_api_key = get_user_api_key() | ||
admin_api_key = get_admin_api_key() | ||
test_data_resolver = TestDataResolver() | ||
keepOutdir = setup_keep_outdir() | ||
return ApiConfigObject( | ||
host, | ||
port, | ||
url, | ||
user_api_key, | ||
admin_api_key, | ||
test_data_resolver, | ||
keepOutdir, | ||
) | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def galaxy_interactor(api_test_config_object: ApiConfigObject) -> ApiTestInteractor: | ||
return ApiTestInteractor(api_test_config_object) | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def dataset_populator(galaxy_interactor: ApiTestInteractor) -> DatasetPopulator: | ||
return DatasetPopulator(galaxy_interactor) | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def dataset_collection_populator(galaxy_interactor: ApiTestInteractor) -> DatasetCollectionPopulator: | ||
return DatasetCollectionPopulator(galaxy_interactor) | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def anonymous_galaxy_interactor(api_test_config_object: ApiConfigObject) -> AnonymousGalaxyInteractor: | ||
return AnonymousGalaxyInteractor(api_test_config_object) | ||
|
||
|
||
@pytest.fixture(autouse=True, scope="session") | ||
def request_celery_app(celery_session_app, celery_config): | ||
try: | ||
yield | ||
finally: | ||
if os.environ.get("GALAXY_TEST_EXTERNAL") is None: | ||
from galaxy.celery import celery_app | ||
|
||
celery_app.fork_pool.stop() | ||
celery_app.fork_pool.join(timeout=5) | ||
|
||
|
||
@pytest.fixture(autouse=True, scope="session") | ||
def request_celery_worker(celery_session_worker, celery_config, celery_worker_parameters): | ||
yield | ||
|
||
|
||
@pytest.fixture(scope="session", autouse=True) | ||
def celery_worker_parameters(): | ||
return { | ||
"queues": ("galaxy.internal", "galaxy.external"), | ||
} | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def celery_parameters(): | ||
return { | ||
"task_create_missing_queues": True, | ||
"task_default_queue": "galaxy.internal", | ||
} | ||
|
||
|
||
@pytest.fixture | ||
def history_id(dataset_populator: DatasetPopulator, request) -> Iterator[str]: | ||
history_name = f"API Test History for {request.node.nodeid}" | ||
with dataset_populator.test_history(name=history_name) as history_id: | ||
yield history_id | ||
|
||
|
||
@pytest.fixture | ||
def target_history( | ||
dataset_populator: DatasetPopulator, dataset_collection_populator: DatasetCollectionPopulator, history_id: str | ||
) -> TargetHistory: | ||
return TargetHistory(dataset_populator, dataset_collection_populator, history_id) | ||
|
||
|
||
@pytest.fixture | ||
def required_tool(dataset_populator: DatasetPopulator, history_id: str, required_tool_ids: List[str]) -> RequiredTool: | ||
if len(required_tool_ids) != 1: | ||
raise AssertionError("required_tool fixture must only be used on methods that require a single tool") | ||
tool_id = required_tool_ids[0] | ||
tool = RequiredTool(dataset_populator, tool_id, history_id) | ||
return tool | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def check_required_tools(anonymous_galaxy_interactor, request): | ||
for marker in request.node.iter_markers(): | ||
if marker.name == "requires_tool_id": | ||
tool_id = marker.args[0] | ||
check_missing_tool(tool_id not in get_tool_ids(anonymous_galaxy_interactor)) | ||
|
||
|
||
@pytest.fixture | ||
def required_tool_ids(request) -> List[str]: | ||
tool_ids = [] | ||
for marker in request.node.iter_markers(): | ||
if marker.name == "requires_tool_id": | ||
tool_id = marker.args[0] | ||
tool_ids.append(tool_id) | ||
return tool_ids |
Oops, something went wrong.