-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathtest_engines.py
57 lines (46 loc) · 1.65 KB
/
test_engines.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""Unit tests for engines and runnables."""
import os
from planemo.engine import engine_context
from planemo.runnable import (
for_path,
get_outputs,
RunnableType,
)
from .test_utils import test_context, TEST_DATA_DIR
A_CWL_TOOL = os.path.join(TEST_DATA_DIR, "tools", "ok-cat1-tool.cwl")
A_CWL_WORKFLOW = os.path.join(TEST_DATA_DIR, "count-lines2-wf.cwl")
A_GALAXY_TOOL = os.path.join(TEST_DATA_DIR, "tools", "ok_select_param.xml")
A_GALAXY_GA_WORKFLOW = os.path.join(TEST_DATA_DIR, "test_workflow_1.ga")
A_GALAXY_YAML_WORKFLOW = os.path.join(TEST_DATA_DIR, "wf1.gxwf.yml")
CAN_HANDLE = {
'galaxy': {
A_CWL_TOOL: True,
A_CWL_WORKFLOW: True,
A_GALAXY_TOOL: True,
A_GALAXY_GA_WORKFLOW: True,
A_GALAXY_YAML_WORKFLOW: True,
},
'cwltool': {
A_CWL_TOOL: True,
A_CWL_WORKFLOW: True,
A_GALAXY_TOOL: False,
A_GALAXY_GA_WORKFLOW: False,
A_GALAXY_YAML_WORKFLOW: False,
}
}
def test_can_handle():
ctx = test_context()
for engine_type in ["galaxy", "cwltool"]:
with engine_context(ctx, engine=engine_type) as e:
for key, value in CAN_HANDLE[engine_type].items():
assert bool(e.can_run(for_path(key))) is value
def test_outputs():
outputs = get_outputs(for_path(A_CWL_WORKFLOW))
assert len(outputs) == 1
output_id = outputs[0].get_id()
assert output_id == "count_output"
def test_runnable_types():
assert RunnableType.galaxy_tool.is_galaxy_artifact
assert RunnableType.galaxy_workflow.is_galaxy_artifact
assert not RunnableType.cwl_tool.is_galaxy_artifact
assert not RunnableType.cwl_workflow.is_galaxy_artifact