-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_task.py
708 lines (537 loc) · 21.4 KB
/
test_task.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
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
from __future__ import annotations
import textwrap
import pytest
from pytask import build
from pytask import cli
from pytask import ExitCode
@pytest.mark.end_to_end()
@pytest.mark.parametrize("func_name", ["task_example", "func"])
@pytest.mark.parametrize("task_name", ["the_only_task", None])
def test_task_with_task_decorator(tmp_path, func_name, task_name):
task_decorator_input = f"{task_name!r}" if task_name else task_name
source = f"""
import pytask
@pytask.mark.task({task_decorator_input})
@pytask.mark.produces("out.txt")
def {func_name}(produces):
produces.write_text("Hello. It's me.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.OK
if task_name:
assert session.tasks[0].name.endswith(f"task_module.py::{task_name}")
else:
assert session.tasks[0].name.endswith(f"task_module.py::{func_name}")
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
@pytask.mark.produces(f"out_{i}.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example[produces0]" in result.output
assert "task_example[produces1]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_from_markers(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
@pytask.mark.depends_on(f"in_{i}.txt")
@pytask.mark.produces(f"out_{i}.txt")
def example(depends_on, produces):
produces.write_text(depends_on.read_text())
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("in_0.txt").write_text("Your advertisement could be here.")
tmp_path.joinpath("in_1.txt").write_text("Or here.")
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "example[depends_on0-produces0]" in result.output
assert "example[depends_on1-produces1]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_from_signature(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
def example(depends_on=f"in_{i}.txt", produces=f"out_{i}.txt"):
produces.write_text(depends_on.read_text())
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("in_0.txt").write_text("Your advertisement could be here.")
tmp_path.joinpath("in_1.txt").write_text("Or here.")
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "example[in_0.txt-out_0.txt]" in result.output
assert "example[in_1.txt-out_1.txt]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_from_markers_and_args(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
@pytask.mark.produces(f"out_{i}.txt")
def example(produces, i=i):
produces.write_text(str(i))
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "example[produces0-0]" in result.output
assert "example[produces1-1]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_from_decorator(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task(name="deco_task", kwargs={"i": i, "produces": f"out_{i}.txt"})
def example(produces, i):
produces.write_text(str(i))
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "deco_task[out_0.txt-0]" in result.output
assert "deco_task[out_1.txt-1]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_with_ids(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task(
"deco_task", id=str(i), kwargs={"i": i, "produces": f"out_{i}.txt"}
)
def example(produces, i):
produces.write_text(str(i))
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "deco_task[0]" in result.output
assert "deco_task[1]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_with_error(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
def task_example(produces=f"out_{i}.txt"):
raise ValueError
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.FAILED
assert "2 Failed" in result.output
assert "Traceback" in result.output
assert "task_example[out_0.txt]" in result.output
assert "task_example[out_1.txt]" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_from_decorator_w_irregular_dicts(tmp_path, runner):
source = """
import pytask
ID_TO_KWARGS = {
"first": {"i": 0, "produces": "out_0.txt"},
"second": {"produces": "out_1.txt"},
}
for id_, kwargs in ID_TO_KWARGS.items():
@pytask.mark.task(name="deco_task", id=id_, kwargs=kwargs)
def example(produces, i):
produces.write_text(str(i))
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.FAILED
assert "deco_task[first]" in result.output
assert "deco_task[second]" in result.output
assert "1 Succeeded" in result.output
assert "1 Failed" in result.output
assert "TypeError: example() missing 1 required" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_with_one_iteration(tmp_path, runner):
source = """
import pytask
for i in range(1):
@pytask.mark.task
@pytask.mark.produces(f"out_{i}.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example " in result.output
assert "Collected 1 task" in result.output
@pytest.mark.end_to_end()
def test_parametrization_in_for_loop_and_normal(tmp_path, runner):
source = """
import pytask
for i in range(1):
@pytask.mark.task
@pytask.mark.produces(f"out_{i}.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
@pytask.mark.task
@pytask.mark.produces(f"out_1.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example[produces0]" in result.output
assert "task_example[produces1]" in result.output
assert "Collected 2 tasks" in result.output
@pytest.mark.end_to_end()
def test_parametrized_names_without_parametrization(tmp_path, runner):
source = """
import pytask
for i in range(2):
@pytask.mark.task
@pytask.mark.produces(f"out_{i}.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
@pytask.mark.task
@pytask.mark.produces("out_2.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example[produces0]" in result.output
assert "task_example[produces1]" in result.output
assert "task_example[produces2]" in result.output
assert "Collected 3 tasks" in result.output
@pytest.mark.end_to_end()
def test_order_of_decorator_does_not_matter(tmp_path, runner):
source = """
import pytask
@pytask.mark.skip
@pytask.mark.task
@pytask.mark.produces(f"out.txt")
def task_example(produces):
produces.write_text("Your advertisement could be here.")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "1 Skipped" in result.output
@pytest.mark.end_to_end()
def test_task_function_with_partialed_args(tmp_path, runner):
source = """
import pytask
import functools
def func(produces, content):
produces.write_text(content)
task_func = pytask.mark.produces("out.txt")(
functools.partial(func, content="hello")
)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "Collected 1 task." in result.output
assert "1 Succeeded" in result.output
assert tmp_path.joinpath("out.txt").exists()
@pytest.mark.end_to_end()
def test_task_function_with_partialed_args_and_task_decorator(tmp_path, runner):
source = """
from pytask import task
import functools
from pathlib import Path
def func(content):
return content
task_func = task(produces=Path("out.txt"))(
functools.partial(func, content="hello")
)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "1 Collected errors and tasks" in result.output
@pytest.mark.end_to_end()
def test_parametrized_tasks_without_arguments_in_signature(tmp_path, runner):
"""This happens when plugins replace the function with its own implementation.
Then, there is usually no point in adding arguments to the function signature. Or
when people build weird workarounds like the one below.
"""
source = f"""
import pytask
from pathlib import Path
for i in range(1):
@pytask.mark.task
@pytask.mark.produces(f"out_{{i}}.txt")
def task_example():
Path("{tmp_path.as_posix()}").joinpath(f"out_{{i}}.txt").write_text(
"I use globals. How funny."
)
@pytask.mark.task
@pytask.mark.produces("out_1.txt")
def task_example():
Path("{tmp_path.as_posix()}").joinpath("out_1.txt").write_text(
"I use globals. How funny."
)
@pytask.mark.task(id="hello")
@pytask.mark.produces("out_2.txt")
def task_example():
Path("{tmp_path.as_posix()}").joinpath("out_2.txt").write_text(
"I use globals. How funny."
)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example[0]" in result.output
assert "task_example[1]" in result.output
assert "task_example[hello]" in result.output
assert "Collected 3 tasks" in result.output
@pytest.mark.end_to_end()
def test_that_dynamically_creates_tasks_are_captured(runner, tmp_path):
source = """
import pytask
_DEFINITION = '''
@pytask.mark.task
def task_example():
pass
'''
for i in range(2):
exec(_DEFINITION)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "task_example[0]" in result.output
assert "task_example[1]" in result.output
assert "Collected 2 tasks" in result.output
@pytest.mark.end_to_end()
@pytest.mark.parametrize(
"irregular_id", [1, (1,), [1], {1}, ["a"], list("abc"), ((1,), (2,)), ({0}, {1})]
)
def test_raise_errors_for_irregular_ids(runner, tmp_path, irregular_id):
source = f"""
import pytask
@pytask.mark.task(id={irregular_id})
def task_example():
pass
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "Argument 'id' of @pytask.mark.task" in result.output
@pytest.mark.end_to_end()
@pytest.mark.xfail(reason="Should fail. Mandatory products will fix the issue.")
def test_raise_error_if_parametrization_produces_non_unique_tasks(tmp_path):
source = """
import pytask
for i in [0, 0]:
@pytask.mark.task(id=str(i))
def task_func(i=i):
pass
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.COLLECTION_FAILED
assert isinstance(session.collection_reports[0].exc_info[1], ValueError)
@pytest.mark.end_to_end()
def test_task_receives_unknown_kwarg(runner, tmp_path):
source = """
import pytask
@pytask.mark.task(kwargs={"i": 1})
def task_example(): pass
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.FAILED
@pytest.mark.end_to_end()
def test_task_receives_namedtuple(runner, tmp_path):
source = """
import pytask
from typing_extensions import NamedTuple, Annotated
from pathlib import Path
from pytask import Product, PythonNode
class Args(NamedTuple):
path_in: Path
arg: str
path_out: Path
args = Args(Path("input.txt"), "world!", Path("output.txt"))
@pytask.mark.task(kwargs=args)
def task_example(
path_in: Path, arg: str, path_out: Annotated[Path, Product]
) -> None:
path_out.write_text(path_in.read_text() + " " + arg)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("input.txt").write_text("Hello")
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("output.txt").read_text() == "Hello world!"
@pytest.mark.end_to_end()
def test_task_kwargs_overwrite_default_arguments(runner, tmp_path):
source = """
import pytask
from pytask import Product
from pathlib import Path
from typing_extensions import Annotated
@pytask.mark.task(kwargs={
"in_path": Path("in.txt"), "addition": "world!", "out_path": Path("out.txt")
})
def task_example(
in_path: Path = Path("not_used_in.txt"),
addition: str = "planet!",
out_path: Annotated[Path, Product] = Path("not_used_out.txt"),
) -> None:
out_path.write_text(in_path.read_text() + addition)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("in.txt").write_text("Hello ")
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("out.txt").read_text() == "Hello world!"
assert not tmp_path.joinpath("not_used_out.txt").exists()
@pytest.mark.end_to_end()
@pytest.mark.parametrize(
"node_def", ["PathNode(path=Path('file.txt'))", "Path('file.txt')"]
)
def test_return_with_task_decorator(runner, tmp_path, node_def):
source = f"""
from pathlib import Path
from typing_extensions import Annotated
from pytask import task, PathNode
@task(produces={node_def})
def task_example():
return "Hello, World!"
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("file.txt").read_text() == "Hello, World!"
@pytest.mark.end_to_end()
@pytest.mark.parametrize(
"node_def",
[
"(PathNode(path=Path('file1.txt')), PathNode(path=Path('file2.txt')))",
"(Path('file1.txt'), Path('file2.txt'))",
],
)
def test_return_with_tuple_and_task_decorator(runner, tmp_path, node_def):
source = f"""
from pathlib import Path
from typing_extensions import Annotated
from pytask import task, PathNode
@task(produces={node_def})
def task_example():
return "Hello,", "World!"
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("file1.txt").read_text() == "Hello,"
assert tmp_path.joinpath("file2.txt").read_text() == "World!"
def test_error_when_function_is_defined_outside_loop_body(runner, tmp_path):
source = """
from pathlib import Path
from typing_extensions import Annotated
from pytask import task, Product
def func(path: Annotated[Path, Product]):
path.touch()
for path in (Path("a.txt"), Path("b.txt")):
task(kwargs={"path": path})(func)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "Duplicated tasks" in result.output
assert "id=None" in result.output
def test_error_when_function_is_defined_outside_loop_body_with_id(runner, tmp_path):
source = """
from pathlib import Path
from typing_extensions import Annotated
from pytask import task
from pytask import Product
def func(path: Annotated[Path, Product]):
path.touch()
for path in (Path("a.txt"), Path("b.txt")):
task(kwargs={"path": path}, id=path.name)(func)
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "Duplicated tasks" in result.output
assert "id=b.txt" in result.output
def test_task_will_be_executed_after_another_one_with_string(runner, tmp_path):
source = """
from pytask import task
from pathlib import Path
from typing_extensions import Annotated
@task(after="task_first")
def task_second():
assert Path(__file__).parent.joinpath("out.txt").exists()
def task_first() -> Annotated[str, Path("out.txt")]:
return "Hello, World!"
"""
tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "2 Succeeded" in result.output
# Make sure that the dependence does not only apply to the task (and task module),
# but also it products.
tmp_path.joinpath("out.txt").write_text("Hello, Moon!")
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "1 Succeeded" in result.output
assert "1 Skipped because unchanged" in result.output
def test_task_will_be_executed_after_another_one_with_function(tmp_path):
source = """
from pytask import task
from pathlib import Path
from typing_extensions import Annotated
def task_first() -> Annotated[str, Path("out.txt")]:
return "Hello, World!"
@task(after=task_first)
def task_second():
assert Path(__file__).parent.joinpath("out.txt").exists()
"""
tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source))
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.OK
def test_raise_error_with_builtin_function_as_task(runner, tmp_path):
source = """
from pytask import task
from pathlib import Path
from datetime import datetime
task(
kwargs={"format": "%y/%m/%d"}, produces=Path("time.txt")
)(datetime.utcnow().strftime)
"""
tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "Builtin functions cannot be wrapped" in result.output
def test_task_function_in_another_module(runner, tmp_path):
source = """
def func():
return "Hello, World!"
"""
tmp_path.joinpath("module.py").write_text(textwrap.dedent(source))
source = """
from pytask import task
from pathlib import Path
from _pytask.path import import_path
import inspect
_ROOT_PATH = Path(__file__).parent
module = import_path(_ROOT_PATH / "module.py", _ROOT_PATH)
name_to_obj = dict(inspect.getmembers(module))
task(produces=Path("out.txt"))(name_to_obj["func"])
"""
tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "1 Failed" in result.output