-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtest_transforms_from_deps.py
More file actions
415 lines (372 loc) · 11.1 KB
/
test_transforms_from_deps.py
File metadata and controls
415 lines (372 loc) · 11.1 KB
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
"""
Tests for the 'from_deps' transforms.
"""
from pprint import pprint
import pytest
from pytest_taskgraph import make_task
from taskgraph.transforms import from_deps
def handle_exception(obj, exc=None):
if exc:
assert isinstance(obj, exc)
elif isinstance(obj, Exception):
raise obj
def assert_no_kind_dependencies(e):
handle_exception(e, exc=Exception)
def assert_invalid_only_kinds(e):
handle_exception(e, exc=Exception)
def assert_defaults(tasks):
handle_exception(tasks)
assert len(tasks) == 2
assert tasks[0]["attributes"] == {"primary-kind-dependency": "foo"}
assert tasks[0]["dependencies"] == {"foo": "a"}
assert tasks[0]["name"] == "a"
assert tasks[1]["attributes"] == {"primary-kind-dependency": "bar"}
assert tasks[1]["dependencies"] == {"bar": "bar-b"}
assert tasks[1]["name"] == "b"
assert_group_by_single = assert_defaults
def assert_group_by_attribute(tasks):
handle_exception(tasks)
assert len(tasks) == 2
assert tasks[0]["dependencies"] == {"foo": "a"}
assert tasks[0]["attributes"] == {"primary-kind-dependency": "foo"}
assert tasks[1]["dependencies"] == {"foo": "b", "bar": "c"}
assert tasks[1]["attributes"] == {"primary-kind-dependency": "foo"}
def assert_group_by_attribute_dupe(e):
handle_exception(e, exc=Exception)
def assert_group_by_attribute_dupe_allowed(tasks):
handle_exception(tasks)
assert len(tasks) == 2
assert tasks[0]["dependencies"] == {"a": "a"}
assert tasks[0]["attributes"] == {"primary-kind-dependency": "foo"}
assert tasks[1]["dependencies"] == {"b": "b", "c": "c"}
assert tasks[1]["attributes"] == {"primary-kind-dependency": "foo"}
def assert_copy_attributes(tasks):
handle_exception(tasks)
assert len(tasks) == 1
task = tasks[0]
assert task["attributes"] == {
"build-type": "win",
"kind": "foo",
"primary-kind-dependency": "foo",
}
def assert_group_by_all(tasks):
handle_exception(tasks)
assert len(tasks) == 1
assert tasks[0]["dependencies"] == {"foo": "a", "bar": "bar-b"}
def assert_group_by_all_dupe_allowed(tasks):
handle_exception(tasks)
assert len(tasks) == 1
assert tasks[0]["dependencies"] == {"a": "a", "b": "b", "c": "c"}
def assert_dont_set_name(tasks):
handle_exception(tasks)
assert len(tasks) == 1
assert tasks[0]["name"] == "a-special-name"
def assert_dont_set_name_false(tasks):
handle_exception(tasks)
assert len(tasks) == 1
assert tasks[0]["name"] == "a-special-name"
def assert_set_name_strip_kind(tasks):
handle_exception(tasks)
assert len(tasks) == 2
assert tasks[0]["name"] == "a"
assert tasks[1]["name"] == "b"
def assert_set_name_retain_kind(tasks):
handle_exception(tasks)
assert len(tasks) == 2
assert tasks[0]["name"] == "a"
assert tasks[1]["name"] == "bar-b"
def assert_group_by_all_with_fetch(tasks):
handle_exception(tasks)
assert len(tasks) == 1
assert tasks[0]["dependencies"] == {
"foo1": "foo1",
"foo2": "foo2",
"foo3": "foo3",
"foo4": "foo4",
}
assert tasks[0]["fetches"] == {
"foo1": [
{
"artifact": "foo.1.txt",
"dest": "foo-1.txt",
},
],
"foo2": [
{
"artifact": "foo.2.txt",
"dest": "foo-2.txt",
},
],
"foo3": [
{
"artifact": "foo.3.txt",
"dest": "foo-3.txt",
},
],
"foo4": [
{
"artifact": "foo.4.txt",
"dest": "foo-4.txt",
},
],
}
@pytest.mark.parametrize(
"task, kind_config, deps",
(
pytest.param(
# task
{"from-deps": {}},
# kind config
{},
# deps
None,
id="no_kind_dependencies",
),
pytest.param(
# task
{"from-deps": {"kinds": ["foo", "baz"]}},
# kind config
None,
# deps
None,
id="invalid_only_kinds",
),
pytest.param(
# task
{"from-deps": {}},
# kind config
None,
# deps
None,
id="defaults",
),
pytest.param(
# task
{
"name": "a-special-name",
"from-deps": {
"group-by": "all",
"set-name": None,
},
},
# kind config
None,
# deps
None,
id="dont_set_name",
),
pytest.param(
# task
{
"name": "a-special-name",
"from-deps": {
"group-by": "all",
"set-name": False,
},
},
# kind config
None,
# deps
None,
id="dont_set_name_false",
),
pytest.param(
# task
{
"from-deps": {
"set-name": "strip-kind",
},
},
# kind config
None,
# deps
None,
id="set_name_strip_kind",
),
pytest.param(
# task
{
"from-deps": {
"set-name": "retain-kind",
},
},
# kind config
None,
# deps
None,
id="set_name_retain_kind",
),
pytest.param(
# task
{"from-deps": {}},
# kind config
None,
# deps
None,
id="group_by_single",
),
pytest.param(
# task
{"from-deps": {"group-by": {"attribute": "build-type"}}},
# kind config
None,
# deps
{
"a": make_task("a", attributes={"build-type": "linux"}, kind="foo"),
"b": make_task("b", attributes={"build-type": "win"}, kind="foo"),
"c": make_task("c", attributes={"build-type": "win"}, kind="bar"),
},
id="group_by_attribute",
),
pytest.param(
# task
{"from-deps": {"group-by": {"attribute": "build-type"}}},
# kind config
None,
# deps
{
"a": make_task("a", attributes={"build-type": "linux"}, kind="foo"),
"b": make_task("b", attributes={"build-type": "win"}, kind="foo"),
"c": make_task("c", attributes={"build-type": "win"}, kind="foo"),
},
id="group_by_attribute_dupe",
),
pytest.param(
# task
{
"from-deps": {
"unique-kinds": False,
"group-by": {"attribute": "build-type"},
}
},
# kind config
None,
# deps
{
"a": make_task("a", attributes={"build-type": "linux"}, kind="foo"),
"b": make_task("b", attributes={"build-type": "win"}, kind="foo"),
"c": make_task("c", attributes={"build-type": "win"}, kind="foo"),
},
id="group_by_attribute_dupe_allowed",
),
pytest.param(
# task
{
"from-deps": {
"group-by": {"attribute": "build-type"},
"copy-attributes": True,
}
},
# kind config
None,
# deps
{
"a": make_task(
"a", attributes={"build-type": "win", "kind": "bar"}, kind="bar"
),
"b": make_task(
"b", attributes={"build-type": "win", "kind": "foo"}, kind="foo"
),
},
id="copy_attributes",
),
pytest.param(
# task
{
"from-deps": {
"group-by": "all",
}
},
# kind config
None,
# deps
None,
id="group_by_all",
),
pytest.param(
# task
{
"from-deps": {
"unique-kinds": False,
"group-by": "all",
}
},
# kind config
None,
# deps
{
"a": make_task("a", kind="foo"),
"b": make_task("b", kind="foo"),
"c": make_task("c", kind="foo"),
},
id="group_by_all_dupe_allowed",
),
pytest.param(
# task
{
"from-deps": {
"group-by": "all",
"unique-kinds": False,
"kinds": ["foo"],
"fetches": {
"foo": [
{
"artifact": "foo.{this_chunk}.txt",
"dest": "foo-{this_chunk}.txt",
},
],
},
},
},
# kind config
None,
# deps
{
"foo1": make_task(
"foo1",
kind="foo",
attributes={"this_chunk": "1", "total_chunks": "4", "kind": "foo"},
),
"foo2": make_task(
"foo2",
kind="foo",
attributes={"this_chunk": "2", "total_chunks": "4", "kind": "foo"},
),
"foo3": make_task(
"foo3",
kind="foo",
attributes={"this_chunk": "3", "total_chunks": "4", "kind": "foo"},
),
"foo4": make_task(
"foo4",
kind="foo",
attributes={"this_chunk": "4", "total_chunks": "4", "kind": "foo"},
),
"bar": make_task("bar", kind="bar", attributes={"kind": "bar"}),
},
id="group_by_all_with_fetch",
),
),
)
def test_transforms(
request, make_transform_config, run_transform, task, kind_config, deps
):
task.setdefault("name", "task")
task.setdefault("description", "description")
if kind_config is None:
kind_config = {"kind-dependencies": ["foo", "bar"]}
if deps is None:
deps = {
"a": make_task("a", kind="foo"),
"b": make_task("bar-b", kind="bar"),
}
config = make_transform_config(kind_config, deps)
try:
result = run_transform(from_deps.transforms, task, config)
except Exception as e:
result = e
print("Dumping result:")
pprint(result, indent=2)
param_id = request.node.callspec.id
assert_func = globals()[f"assert_{param_id}"]
assert_func(result)