-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathtest_cmd_test.py
242 lines (220 loc) · 9.85 KB
/
test_cmd_test.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
"""Module contains :class:`CmdTestTestCase` - integration tests for the ``test`` command."""
import json
import os
from tempfile import NamedTemporaryFile
from .test_utils import (
assert_exists,
CliTestCase,
PROJECT_TEMPLATES_DIR,
run_verbosely,
skip_if_environ,
skip_unless_module,
TEST_DATA_DIR,
)
DATA_MANAGER_TEST_PATH = "data_manager/data_manager_fetch_genome_dbkeys_all_fasta/data_manager/data_manager_fetch_genome_all_fasta_dbkeys.xml"
class CmdTestTestCase(CliTestCase):
"""Integration tests for the ``test`` command."""
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_data_manager(self):
"""Test testing a data manager test."""
with self._isolate(), NamedTemporaryFile(prefix="data_manager_test_json") as json_out:
test_artifact = os.path.join(TEST_DATA_DIR, DATA_MANAGER_TEST_PATH)
test_command = self._test_command(
"--test_output_json",
json_out.name
)
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
test_artifact,
]
self._check_exit_code(test_command, exit_code=0)
with open(json_out.name, 'r') as fh:
assert json.load(fh)['summary']['num_tests'] == 1
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_simple_yaml(self):
"""Test testing a simple YAML workflow with Galaxy."""
with self._isolate():
random_lines = os.path.join(PROJECT_TEMPLATES_DIR, "demo", "randomlines.xml")
cat = os.path.join(PROJECT_TEMPLATES_DIR, "demo", "cat.xml")
test_artifact = os.path.join(TEST_DATA_DIR, "wf1.gxwf.yml")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
"--extra_tools", random_lines,
"--extra_tools", cat,
test_artifact,
]
self._check_exit_code(test_command, exit_code=0)
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_simple_ga(self):
"""Test testing a simple GA workflow with Galaxy."""
with self._isolate():
cat = os.path.join(PROJECT_TEMPLATES_DIR, "demo", "cat.xml")
test_artifact = os.path.join(TEST_DATA_DIR, "wf2.ga")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
"--extra_tools", cat,
test_artifact,
]
# try:
self._check_exit_code(test_command, exit_code=0)
# except Exception:
# with open(os.path.join(f, "tool_test_output.json"), "r") as o:
# print(o.read())
# raise
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_distro_tool(self):
"""Test testing a workflow that uses distro tools."""
with self._isolate():
test_artifact = os.path.join(TEST_DATA_DIR, "wf4-distro-tools.gxwf.yml")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
test_artifact,
]
# try:
self._check_exit_code(test_command, exit_code=0)
# except Exception:
# with open(os.path.join(f, "tool_test_output.json"), "r") as o:
# print(o.read())
# raise
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_composite(self):
"""Test testing a workflow that uses composite inputs."""
with self._isolate():
test_artifact = os.path.join(TEST_DATA_DIR, "wf6-composite-inputs.gxwf.yml")
composite_input_imzml = os.path.join(TEST_DATA_DIR, "composite_input_imzml.xml")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
"--extra_tools", composite_input_imzml,
test_artifact,
]
self._check_exit_code(test_command, exit_code=0)
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_collection_inputs(self):
"""Test testing a workflow with collection inputs Galaxy."""
with self._isolate():
test_artifact = os.path.join(TEST_DATA_DIR, "wf5-collection-input.gxwf.yml")
cat_list = os.path.join(TEST_DATA_DIR, "cat_list.xml")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--no_dependency_resolution",
"--extra_tools", cat_list,
test_artifact,
]
# try:
self._check_exit_code(test_command, exit_code=0)
# except Exception:
# with open(os.path.join(f, "tool_test_output.json"), "r") as o:
# print(o.read())
# raise
@skip_if_environ("PLANEMO_SKIP_GALAXY_TESTS")
def test_workflow_test_repository_installation_gxformat2(self):
"""Test testing a workflow with collection inputs Galaxy."""
with self._isolate():
test_artifact = os.path.join(TEST_DATA_DIR, "wf13_tool_shed_repository_gxformat2.yml")
test_command = self._test_command()
test_command = self.append_profile_argument_if_needed(test_command)
test_command += [
"--biocontainers",
test_artifact,
]
self._check_exit_code(test_command, exit_code=0)
@skip_if_environ("PLANEMO_SKIP_CWLTOOL_TESTS")
def test_cwltool_tool_test(self):
"""Test testing a CWL tool with cwltool."""
with self._isolate() as f:
test_artifact = os.path.join(TEST_DATA_DIR, "int_tool.cwl")
test_command = self._test_command(test_artifact)
self._check_exit_code(test_command, exit_code=0)
assert_exists(os.path.join(f, "tool_test_output.json"))
@skip_if_environ("PLANEMO_SKIP_CWLTOOL_TESTS")
def test_cwltool_tool_url_inputs_test(self):
"""Test testing a CWL tool with cwltool."""
with self._isolate() as f:
test_artifact = os.path.join(TEST_DATA_DIR, "cat_tool_url.cwl")
test_command = self._test_command(
"--no-container",
test_artifact,
)
self._check_exit_code(test_command, exit_code=0)
assert_exists(os.path.join(f, "tool_test_output.json"))
@skip_if_environ("PLANEMO_SKIP_CWLTOOL_TESTS")
@skip_unless_module("toil")
def test_toil_tool_test(self):
"""Test testing a CWL tool with cwltool."""
with self._isolate() as f:
test_artifact = os.path.join(TEST_DATA_DIR, "int_tool.cwl")
test_command = self._test_command(
"--engine", "toil",
test_artifact,
)
self._check_exit_code(test_command, exit_code=0)
assert_exists(os.path.join(f, "tool_test_output.json"))
@skip_if_environ("PLANEMO_SKIP_CWLTOOL_TESTS")
def test_output_checks_cwltool(self):
"""Test output assertions with a CWL tool with cwltool."""
self._output_checks([])
@skip_if_environ("PLANEMO_SKIP_CWLTOOL_TESTS")
@skip_if_environ("PLANEMO_SKIP_SLOW_TESTS")
@skip_unless_module("toil")
def test_output_checks_toil(self):
"""Test output assertions with a CWL tool with toil."""
self._output_checks(["--engine", "toil"])
def _test_command(self, *args):
test_cmd = ["--verbose"] if run_verbosely() else []
test_cmd.append("test")
test_cmd.extend(args)
return test_cmd
def _output_checks(self, extra_args):
with self._isolate() as f:
test_artifact = os.path.join(TEST_DATA_DIR, "output_tests_tool.cwl")
test_command = [
"test",
"--no-container",
]
test_command.extend(extra_args)
test_command.append(test_artifact)
self._check_exit_code(test_command, exit_code=1)
output_json_path = os.path.join(f, "tool_test_output.json")
with open(output_json_path, "r") as f:
output = json.load(f)
assert "tests" in output
tests = output["tests"]
# check out tests/data/output_tests_tool_test.yml
expected_statuses = [
"success",
"failure",
"success",
"success",
"failure",
"success",
"failure",
"success",
"failure",
"success",
"failure",
]
for i in range(len(expected_statuses)):
test_i = tests[i]
data = test_i["data"]
expected_status = expected_statuses[i]
assert data["status"] == expected_status
def append_profile_argument_if_needed(self, command):
# Hook into tests to allow leveraging postgres databases to prevent Galaxy locking errors
# while running tests.
profile_name = os.getenv("PLANEMO_TEST_WORKFLOW_RUN_PROFILE", None)
if profile_name:
command += ["--profile", profile_name]
database_type = os.getenv("PLANEMO_TEST_WORKFLOW_RUN_PROFILE_DATABASE_TYPE", None)
if database_type:
command += ["--database_type", database_type]
return command