-
-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy pathtest_parallel.py
292 lines (247 loc) · 8.44 KB
/
test_parallel.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
from __future__ import absolute_import, unicode_literals
import json
import os
import subprocess
import sys
import threading
import pytest
from flaky import flaky
from tox._pytestplugin import RunResult
def test_parallel(cmd, initproj):
initproj(
"pkg123-0.7",
filedefs={
"tox.ini": """
[tox]
envlist = a, b
isolated_build = true
[testenv]
commands=python -c "import sys; print(sys.executable)"
[testenv:b]
depends = a
""",
"pyproject.toml": """
[build-system]
requires = ["setuptools >= 35.0.2"]
build-backend = 'setuptools.build_meta'
""",
},
)
result = cmd("-p", "all")
result.assert_success()
@flaky(max_runs=3)
def test_parallel_live(cmd, initproj):
initproj(
"pkg123-0.7",
filedefs={
"tox.ini": """
[tox]
isolated_build = true
envlist = a, b
[testenv]
commands=python -c "import sys; print(sys.executable)"
""",
"pyproject.toml": """
[build-system]
requires = ["setuptools >= 35.0.2"]
build-backend = 'setuptools.build_meta'
""",
},
)
result = cmd("-p", "all", "-o")
result.assert_success()
def test_parallel_circular(cmd, initproj):
initproj(
"pkg123-0.7",
filedefs={
"tox.ini": """
[tox]
isolated_build = true
envlist = a, b
[testenv:a]
depends = b
[testenv:b]
depends = a
""",
"pyproject.toml": """
[build-system]
requires = ["setuptools >= 35.0.2"]
build-backend = 'setuptools.build_meta'
""",
},
)
result = cmd("-p", "1")
result.assert_fail()
assert result.out == "ERROR: circular dependency detected: a | b\n"
@pytest.mark.parametrize("live", [True, False])
def test_parallel_error_report(cmd, initproj, monkeypatch, live):
monkeypatch.setenv(str("_TOX_SKIP_ENV_CREATION_TEST"), str("1"))
initproj(
"pkg123-0.7",
filedefs={
"tox.ini": """
[tox]
isolated_build = true
envlist = a
[testenv]
skip_install = true
commands=python -c "import sys, os; sys.stderr.write(str(12345) + os.linesep);\
raise SystemExit(17)"
allowlist_externals = {}
""".format(
sys.executable,
),
},
)
args = ["-o"] if live else []
result = cmd("-p", "all", *args)
result.assert_fail()
msg = result.out
# for live we print the failure logfile, otherwise just stream through (no logfile present)
assert "(exited with code 17)" in result.out, msg
if not live:
assert "ERROR: invocation failed (exit code 1), logfile:" in result.out, msg
assert any(line for line in result.outlines if line == "12345"), result.out
# single summary at end
summary_lines = [j for j, l in enumerate(result.outlines) if " summary " in l]
assert len(summary_lines) == 1, msg
assert result.outlines[summary_lines[0] + 1 :] == ["ERROR: a: parallel child exit code 1"]
def test_parallel_deadlock(cmd, initproj, monkeypatch):
monkeypatch.setenv(str("_TOX_SKIP_ENV_CREATION_TEST"), str("1"))
tox_ini = """\
[tox]
envlist = e1,e2
skipsdist = true
[testenv]
allowlist_externals = {}
commands =
python -c '[print("hello world") for _ in range(5000)]'
""".format(
sys.executable,
)
initproj("pkg123-0.7", filedefs={"tox.ini": tox_ini})
cmd("-p", "2") # used to hang indefinitely
def test_parallel_recreate(cmd, initproj, monkeypatch):
monkeypatch.setenv(str("_TOX_SKIP_ENV_CREATION_TEST"), str("1"))
tox_ini = """\
[tox]
envlist = e1,e2
skipsdist = true
[testenv]
allowlist_externals = {}
commands =
python -c '[print("hello world") for _ in range(1)]'
""".format(
sys.executable,
)
cwd = initproj("pkg123-0.7", filedefs={"tox.ini": tox_ini})
log_dir = cwd / ".tox" / "e1" / "log"
assert not log_dir.exists()
cmd("-p", "2")
after = log_dir.listdir()
assert len(after) >= 2
res = cmd("-p", "2", "-rv")
assert res
end = log_dir.listdir()
assert len(end) >= 3
assert not ({f.basename for f in after} - {f.basename for f in end})
@flaky(max_runs=3)
def test_parallel_show_output(cmd, initproj, monkeypatch):
monkeypatch.setenv(str("_TOX_SKIP_ENV_CREATION_TEST"), str("1"))
tox_ini = """\
[tox]
envlist = e1,e2,e3
skipsdist = true
[testenv]
allowlist_externals = {}
commands =
python -c 'import sys; sys.stderr.write("stderr env"); sys.stdout.write("stdout env")'
[testenv:e3]
commands =
python -c 'import sys; sys.stderr.write("stderr always "); sys.stdout.write("stdout always ")'
parallel_show_output = True
""".format(
sys.executable,
)
initproj("pkg123-0.7", filedefs={"tox.ini": tox_ini})
result = cmd("-p", "all")
result.assert_success()
assert "stdout env" not in result.out, result.output()
assert "stderr env" not in result.out, result.output()
assert "stdout always" in result.out, result.output()
assert "stderr always" in result.out, result.output()
@pytest.fixture()
def parallel_project(initproj):
return initproj(
"pkg123-0.7",
filedefs={
"tox.ini": """
[tox]
skipsdist = True
envlist = a, b
[testenv]
skip_install = True
commands=python -c "import sys; print(sys.executable)"
""",
},
)
def test_parallel_no_spinner_on(cmd, parallel_project, monkeypatch):
monkeypatch.setenv(str("TOX_PARALLEL_NO_SPINNER"), str("1"))
result = cmd("-p", "all")
result.assert_success()
assert "[2] a | b" not in result.out
def test_parallel_no_spinner_off(cmd, parallel_project, monkeypatch):
monkeypatch.setenv(str("TOX_PARALLEL_NO_SPINNER"), str("0"))
result = cmd("-p", "all")
result.assert_success()
assert "[2] a | b" in result.out
def test_parallel_no_spinner_not_set(cmd, parallel_project, monkeypatch):
monkeypatch.delenv(str("TOX_PARALLEL_NO_SPINNER"), raising=False)
result = cmd("-p", "all")
result.assert_success()
assert "[2] a | b" in result.out
def test_parallel_result_json(cmd, parallel_project, tmp_path):
parallel_result_json = tmp_path / "parallel.json"
result = cmd("-p", "all", "--result-json", "{}".format(parallel_result_json))
ensure_result_json_ok(result, parallel_result_json)
def ensure_result_json_ok(result, json_path):
if isinstance(result, RunResult):
result.assert_success()
else:
assert not isinstance(result, subprocess.CalledProcessError)
assert json_path.exists()
serial_data = json.loads(json_path.read_text())
ensure_key_in_env(serial_data)
def ensure_key_in_env(serial_data):
for env in ("a", "b"):
for key in ("setup", "test"):
assert key in serial_data["testenvs"][env], json.dumps(
serial_data["testenvs"],
indent=2,
)
def test_parallel_result_json_concurrent(cmd, parallel_project, tmp_path):
# first run to set up the environments (env creation is not thread safe)
result = cmd("-p", "all")
result.assert_success()
invoke_result = {}
def invoke_tox_in_thread(thread_name, result_json):
try:
# needs to be process to have it's own stdout
invoke_result[thread_name] = subprocess.check_output(
[sys.executable, "-m", "tox", "-p", "all", "--result-json", str(result_json)],
).decode("utf-8")
except subprocess.CalledProcessError as exception:
invoke_result[thread_name] = exception
# now concurrently
parallel1_result_json = tmp_path / "parallel1.json"
parallel2_result_json = tmp_path / "parallel2.json"
threads = [
threading.Thread(target=invoke_tox_in_thread, args=(k, p))
for k, p in (("t1", parallel1_result_json), ("t2", parallel2_result_json))
]
[t.start() for t in threads]
[t.join() for t in threads]
ensure_result_json_ok(invoke_result["t1"], parallel1_result_json)
ensure_result_json_ok(invoke_result["t2"], parallel2_result_json)
# our set_os_env_var is not thread-safe so clean-up TOX_WORK_DIR
os.environ.pop("TOX_WORK_DIR", None)