1
1
from collections import namedtuple
2
2
import contextlib
3
3
import glob
4
+ import os
4
5
import pprint
5
6
import shutil
6
7
import subprocess
16
17
17
18
18
19
class MockEnv :
19
- '''Use this to work with mock. Mutliple instances are not safe.'''
20
+ '''Use this to work with mock. Mutliple concurrent instances are safe.'''
20
21
mock = ['mock' , '-r' , './mock.cfg' ]
21
22
22
- def __init__ (self ):
23
+ def __init__ (self , worker_id ):
24
+ self .worker_id = worker_id
23
25
self ._run (['--init' ], check = True )
24
26
27
+ @property
28
+ def root (self ):
29
+ return 'taskotron-python-versions-{}' .format (self .worker_id )
30
+
31
+ @property
32
+ def rootdir (self ):
33
+ return os .path .join (os .path .abspath ('.' ), 'mockroots' , self .root )
34
+
25
35
def _run (self , what , ** kwargs ):
26
- return subprocess .run (self .mock + what , ** kwargs )
36
+ command = list (self .mock ) # needs a copy not to change in place
37
+ command .append ('--config-opts=root={}' .format (self .root ))
38
+ command .append ('--rootdir={}' .format (self .rootdir ))
39
+ command .extend (what )
40
+ return subprocess .run (command , ** kwargs )
27
41
28
42
def copy_in (self , files ):
29
43
self ._run (['--copyin' ] + files + ['/' ], check = True )
@@ -52,12 +66,12 @@ def copy_out(self, directory, target, *, clean_target=False):
52
66
53
67
54
68
@pytest .fixture (scope = "session" )
55
- def mock (request ):
69
+ def mock (worker_id , request ):
56
70
'''Setup a mock we can run Ansible tasks in under root'''
57
71
if request .config .getoption ('--fake' ):
58
- mockenv = FakeMockEnv ()
72
+ mockenv = FakeMockEnv (worker_id )
59
73
else :
60
- mockenv = MockEnv ()
74
+ mockenv = MockEnv (worker_id )
61
75
files = ['taskotron_python_versions' ] + glob .glob ('*.py' ) + ['tests.yml' ]
62
76
mockenv .copy_in (files )
63
77
yield mockenv
@@ -187,8 +201,10 @@ def test_two_three_passed(results, request):
187
201
assert results ['dist.python-versions.two_three' ].outcome == 'PASSED'
188
202
189
203
190
- def test_two_three_failed (tracer ):
191
- assert tracer ['dist.python-versions.two_three' ].outcome == 'FAILED'
204
+ @pytest .mark .parametrize ('results' , ('tracer' ,))
205
+ def test_two_three_failed (results , request ):
206
+ results = request .getfixturevalue (results )
207
+ assert results ['dist.python-versions.two_three' ].outcome == 'FAILED'
192
208
193
209
194
210
@pytest .mark .parametrize ('results' , ('tracer' , 'copr' , 'admesh' ))
@@ -207,8 +223,10 @@ def test_artifact_is_the_same(results, task, request):
207
223
results ['dist.python-versions.' + task ].artifact )
208
224
209
225
210
- def test_artifact_contains_two_three_and_looks_as_expected (tracer ):
211
- result = tracer ['dist.python-versions.two_three' ]
226
+ @pytest .mark .parametrize ('results' , ('tracer' ,))
227
+ def test_artifact_contains_two_three_and_looks_as_expected (results , request ):
228
+ results = request .getfixturevalue (results )
229
+ result = results ['dist.python-versions.two_three' ]
212
230
with open (result .artifact ) as f :
213
231
artifact = f .read ()
214
232
@@ -233,8 +251,11 @@ def test_naming_scheme_failed(results, request):
233
251
assert results ['dist.python-versions.naming_scheme' ].outcome == 'FAILED'
234
252
235
253
236
- def test_artifact_contains_naming_scheme_and_looks_as_expected (copr ):
237
- result = copr ['dist.python-versions.naming_scheme' ]
254
+ @pytest .mark .parametrize ('results' , ('copr' ,))
255
+ def test_artifact_contains_naming_scheme_and_looks_as_expected (results ,
256
+ request ):
257
+ results = request .getfixturevalue (results )
258
+ result = results ['dist.python-versions.naming_scheme' ]
238
259
with open (result .artifact ) as f :
239
260
artifact = f .read ()
240
261
@@ -258,9 +279,11 @@ def test_requires_naming_scheme_failed(results, request):
258
279
assert task_result .outcome == 'FAILED'
259
280
260
281
282
+ @pytest .mark .parametrize ('results' , ('tracer' ,))
261
283
def test_artifact_contains_requires_naming_scheme_and_looks_as_expected (
262
- tracer ):
263
- result = tracer ['dist.python-versions.requires_naming_scheme' ]
284
+ results , request ):
285
+ results = request .getfixturevalue (results )
286
+ result = results ['dist.python-versions.requires_naming_scheme' ]
264
287
with open (result .artifact ) as f :
265
288
artifact = f .read ()
266
289
@@ -281,8 +304,10 @@ def test_artifact_contains_requires_naming_scheme_and_looks_as_expected(
281
304
""" ).strip () in artifact .strip ()
282
305
283
306
284
- def test_requires_naming_scheme_contains_python (yum ):
285
- result = yum ['dist.python-versions.requires_naming_scheme' ]
307
+ @pytest .mark .parametrize ('results' , ('yum' ,))
308
+ def test_requires_naming_scheme_contains_python (results , request ):
309
+ results = request .getfixturevalue (results )
310
+ result = results ['dist.python-versions.requires_naming_scheme' ]
286
311
with open (result .artifact ) as f :
287
312
artifact = f .read ()
288
313
@@ -306,9 +331,11 @@ def test_executables_failed(results, request):
306
331
assert task_result .outcome == 'FAILED'
307
332
308
333
334
+ @pytest .mark .parametrize ('results' , ('docutils' ,))
309
335
def test_artifact_contains_executables_and_looks_as_expected (
310
- docutils ):
311
- result = docutils ['dist.python-versions.executables' ]
336
+ results , request ):
337
+ results = request .getfixturevalue (results )
338
+ result = results ['dist.python-versions.executables' ]
312
339
with open (result .artifact ) as f :
313
340
artifact = f .read ()
314
341
@@ -352,9 +379,11 @@ def test_unvesioned_shebangs_failed(results, request):
352
379
assert result .outcome == 'FAILED'
353
380
354
381
382
+ @pytest .mark .parametrize ('results' , ('tracer' ,))
355
383
def test_artifact_contains_unversioned_shebangs_and_looks_as_expected (
356
- tracer ):
357
- result = tracer ['dist.python-versions.unversioned_shebangs' ]
384
+ results , request ):
385
+ results = request .getfixturevalue (results )
386
+ result = results ['dist.python-versions.unversioned_shebangs' ]
358
387
with open (result .artifact ) as f :
359
388
artifact = f .read ()
360
389
@@ -378,9 +407,11 @@ def test_unvesioned_shebangs_mangled_failed(results, request):
378
407
assert result .outcome == 'FAILED'
379
408
380
409
410
+ @pytest .mark .parametrize ('results' , ('bucky' ,))
381
411
def test_artifact_contains_mangled_unversioned_shebangs_and_looks_as_expected (
382
- bucky ):
383
- result = bucky ['dist.python-versions.unversioned_shebangs' ]
412
+ results , request ):
413
+ results = request .getfixturevalue (results )
414
+ result = results ['dist.python-versions.unversioned_shebangs' ]
384
415
with open (result .artifact ) as f :
385
416
artifact = f .read ()
386
417
@@ -420,15 +451,17 @@ def test_py3_support_failed(results, request):
420
451
assert task_result .outcome == 'FAILED'
421
452
422
453
454
+ @pytest .mark .parametrize ('results' , ('bucky' ,))
423
455
def test_artifact_contains_py3_support_and_looks_as_expected (
424
- bucky ):
456
+ results , request ):
425
457
"""Test that py3_support check fails if the package is mispackaged.
426
458
427
459
NOTE: The test will start to fail as soon as python-bucky
428
460
gets ported to Python 3 and its Bugzilla gets closed.
429
461
See https://bugzilla.redhat.com/show_bug.cgi?id=1367012
430
462
"""
431
- result = bucky ['dist.python-versions.py3_support' ]
463
+ results = request .getfixturevalue (results )
464
+ result = results ['dist.python-versions.py3_support' ]
432
465
with open (result .artifact ) as f :
433
466
artifact = f .read ()
434
467
@@ -459,8 +492,11 @@ def test_python_usage_failed(results, request):
459
492
assert task_result .outcome == 'FAILED'
460
493
461
494
462
- def test_artifact_contains_python_usage_and_looks_as_expected (jsonrpc ):
463
- result = jsonrpc ['dist.python-versions.python_usage' ]
495
+ @pytest .mark .parametrize ('results' , ('jsonrpc' ,))
496
+ def test_artifact_contains_python_usage_and_looks_as_expected (results ,
497
+ request ):
498
+ results = request .getfixturevalue (results )
499
+ result = results ['dist.python-versions.python_usage' ]
464
500
with open (result .artifact ) as f :
465
501
artifact = f .read ()
466
502
0 commit comments