-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_execute.py
628 lines (518 loc) · 18 KB
/
test_execute.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
from __future__ import annotations
import textwrap
from pathlib import Path
import pytest
from pytask import ExitCode
from pytask import Mark
from pytask import Task
from pytask import build
from pytask import cli
from pytask_latex.execute import pytask_execute_task_setup
from tests.conftest import TEST_RESOURCES
from tests.conftest import needs_latexmk
from tests.conftest import skip_on_github_actions_with_win
@pytest.mark.unit()
def test_pytask_execute_task_setup(monkeypatch):
"""Make sure that the task setup raises errors."""
# Act like latexmk is installed since we do not test this.
monkeypatch.setattr(
"pytask_latex.execute.shutil.which",
lambda x: None, # noqa: ARG005
)
task = Task(
base_name="example", path=Path(), function=None, markers=[Mark("latex", (), {})]
)
with pytest.raises(RuntimeError, match="latexmk is needed"):
pytask_execute_task_setup(task)
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document(runner, tmp_path):
"""Test simple compilation."""
task_source = """
from pytask import mark
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_w_relative(runner, tmp_path):
"""Test simple compilation."""
task_source = f"""
from pytask import mark
@mark.latex(
script="document.tex",
document="{tmp_path.joinpath("bld", "document.pdf").as_posix()}"
)
def task_compile_document():
pass
"""
tmp_path.joinpath("bld").mkdir()
tmp_path.joinpath("src").mkdir()
tmp_path.joinpath("src", "task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("src", "document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_to_different_name(runner, tmp_path):
"""Compile a LaTeX document where source and output name differ."""
task_source = """
from pytask import mark
@mark.latex(script="in.tex", document="out.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
We'd been together too long
\end{document}
"""
tmp_path.joinpath("in.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_w_bibliography(runner, tmp_path):
"""Compile a LaTeX document with bibliography."""
task_source = """
from pytask import task, mark
from pathlib import Path
@task(kwargs={"path": Path("references.bib")})
@mark.latex(script="in_w_bib.tex", document="out_w_bib.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\usepackage{natbib}
\begin{document}
\cite{pytask}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
"""
tmp_path.joinpath("in_w_bib.tex").write_text(textwrap.dedent(latex_source))
bib_source = r"""
@Article{pytask,
author = {Tobias Raabe},
title = {pytask},
journal = {Unpublished},
year = {2020},
}
"""
tmp_path.joinpath("references.bib").write_text(textwrap.dedent(bib_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_raise_error_if_latexmk_is_not_found(tmp_path, monkeypatch):
task_source = """
from pytask import mark
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
Ein Fuchs muss tun, was ein Fuchs tun muss. Luxus und Ruhm und rulen bis zum
Schluss.
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
# Hide latexmk if available.
monkeypatch.setattr(
"pytask_latex.execute.shutil.which",
lambda x: None, # noqa: ARG005
)
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.FAILED
assert isinstance(session.execution_reports[0].exc_info[1], RuntimeError)
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_w_xelatex(runner, tmp_path):
task_source = """
from pytask import mark
from pytask_latex import compilation_steps
@mark.latex(
script="document.tex",
document="document.pdf",
compilation_steps=compilation_steps.latexmk(
["--xelatex", "--interaction=nonstopmode", "--synctex=1", "--cd"]
)
)
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I got, I got, I got, I got loyalty, got royalty inside my DNA.
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("document.pdf").exists()
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_w_two_dependencies(runner, tmp_path):
task_source = """
from pytask import mark
from pathlib import Path
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document(path: Path = Path("in.txt")):
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
Mother earth is pregnant for the third time.
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
tmp_path.joinpath("in.txt").touch()
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("document.pdf").exists()
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_fail_because_script_is_not_latex(tmp_path):
task_source = """
from pytask import mark
from pathlib import Path
@mark.latex(script="document.text", document="document.pdf")
def task_compile_document(path: Path = Path("in.txt")):
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
For y'all have knocked her up
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
tmp_path.joinpath("in.txt").touch()
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.COLLECTION_FAILED
assert isinstance(session.collection_reports[0].exc_info[1], ValueError)
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_document_to_out_if_document_has_relative_resources(tmp_path):
"""Test that motivates the ``"--cd"`` flag.
If you have a document which includes other resources via relative paths and you
compile the document to a different output folder, latexmk will not find the
relative resources. Thus, use the ``"--cd"`` flag to enter the source directory
before the compilation.
"""
tmp_path.joinpath("sub", "resources").mkdir(parents=True)
task_source = """
from pytask import mark
from pathlib import Path
@mark.latex(script="document.tex", document="out/document.pdf")
def task_compile_document(path: Path = Path("resources/content.tex")):
pass
"""
tmp_path.joinpath("sub", "task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
\input{resources/content}
\end{document}
"""
tmp_path.joinpath("sub", "document.tex").write_text(textwrap.dedent(latex_source))
resources = r"""
In Ottakring, in Ottakring, wo das Bitter so viel suesser schmeckt als irgendwo in
Wien.
"""
tmp_path.joinpath("sub", "resources", "content.tex").write_text(resources)
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.OK
assert len(session.tasks) == 1
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_document_w_wrong_flag(tmp_path):
"""Test that wrong flags raise errors."""
tmp_path.joinpath("sub").mkdir(parents=True)
task_source = """
from pytask import mark
from pytask_latex import compilation_steps
@mark.latex(
script="document.tex",
document="out/document.pdf",
compilation_steps=compilation_steps.latexmk("--wrong-flag"),
)
def task_compile_document():
pass
"""
tmp_path.joinpath("sub", "task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
The book of love is long and boring ...
\end{document}
"""
tmp_path.joinpath("sub", "document.tex").write_text(textwrap.dedent(latex_source))
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.FAILED
assert len(session.tasks) == 1
assert isinstance(session.execution_reports[0].exc_info[1], RuntimeError)
@needs_latexmk
@pytest.mark.end_to_end()
def test_compile_document_w_image(runner, tmp_path):
task_source = f"""
from pytask import Product
import shutil
from typing_extensions import Annotated
from pathlib import Path
from pytask import mark
def task_create_image(image: Annotated[Path, Product] = Path("image.png")):
shutil.copy(
"{TEST_RESOURCES.joinpath("image.png").as_posix()}",
"{tmp_path.joinpath("image.png").as_posix()}"
)
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\usepackage{graphicx}
\begin{document}
\includegraphics{image}
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_w_multiple_marks(runner, tmp_path):
"""Test simple compilation."""
task_source = """
from pytask import mark
@mark.latex(script="document.text")
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "has multiple @pytask.mark.latex marks" in result.output
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_with_wrong_extension(runner, tmp_path):
"""Test simple compilation."""
task_source = """
from pytask import mark
@mark.latex(script="document.tex", document="document.file")
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert "The 'document' keyword of the" in result.output
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_w_bibliography_and_keep_bbl(runner, tmp_path):
"""Compile a LaTeX document with bibliography."""
task_source = """
from pytask import mark, Product
from pathlib import Path
from typing_extensions import Annotated
@mark.latex(script="in_w_bib.tex", document="out_w_bib.pdf")
def task_compile_document(
bibliography: Path = Path("references.bib"),
bbl: Annotated[Path, Product] = Path("out_w_bib.bbl"),
):
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\usepackage{natbib}
\begin{document}
\cite{pytask}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
"""
tmp_path.joinpath("in_w_bib.tex").write_text(textwrap.dedent(latex_source))
bib_source = r"""
@Article{pytask,
author = {Tobias Raabe},
title = {pytask},
journal = {Unpublished},
year = {2020},
}
"""
tmp_path.joinpath("references.bib").write_text(textwrap.dedent(bib_source))
session = runner.invoke(cli, [tmp_path.as_posix()])
assert session.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
@pytest.mark.parametrize(
("step", "message"),
[
("'unknown'", "Compilation step 'unknown' is unknown."),
(1, "Compilation step 1 is not a valid step."),
],
)
def test_compile_latex_document_w_unknown_compilation_step(
runner, tmp_path, step, message
):
"""Test simple compilation."""
task_source = f"""
from pytask import mark
@mark.latex(
script="document.tex",
document="document.pdf",
compilation_steps={step},
)
def task_compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.COLLECTION_FAILED
assert message in result.output
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_compile_latex_document_with_task_decorator(runner, tmp_path):
"""Test simple compilation."""
task_source = """
from pytask import mark, task
@mark.latex(script="document.tex", document="document.pdf")
@task
def compile_document():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
I was tired of my lady
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
result = runner.invoke(cli, [tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_use_task_without_path(tmp_path):
task_source = """
import pytask
from pytask import task
task_compile_document = pytask.mark.latex(
script="document.tex", document="document.pdf"
)(
task()(lambda *x: None)
)
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
Ein Fuchs muss tun, was ein Fuchs tun muss. Luxus und Ruhm und rulen bis zum
Schluss.
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
session = build(paths=tmp_path)
assert session.exit_code == ExitCode.OK
@needs_latexmk
@skip_on_github_actions_with_win
@pytest.mark.end_to_end()
def test_collect_latex_document_with_product_from_another_task(runner, tmp_path):
"""Test simple compilation."""
task_source = """
from pathlib import Path
from pytask import Product, mark
from typing_extensions import Annotated
@mark.latex(script="document.tex", document="document.pdf")
def task_compile_document(): pass
def task_create_input_tex(
path: Annotated[Path, Product] = Path("duesterboys.tex")
) -> None:
path.write_text("weil du meine Mitten extrahierst.")
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(task_source))
latex_source = r"""
\documentclass{report}
\begin{document}
\input{duesseldorf}
\input{duesterboys}
\end{document}
"""
tmp_path.joinpath("document.tex").write_text(textwrap.dedent(latex_source))
tmp_path.joinpath("duesseldorf.tex").write_text(
"Bin ich wieder nur so nett zu dir, "
)
result = runner.invoke(cli, ["collect", "--nodes", tmp_path.as_posix()])
assert result.exit_code == ExitCode.OK
assert "duesseldorf.tex" in result.output
assert "duesterboys.tex" in result.output