-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_debugging.py
532 lines (451 loc) · 17 KB
/
test_debugging.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
from __future__ import annotations
import os
import re
import sys
import textwrap
from contextlib import ExitStack as does_not_raise # noqa: N813
import click
import pytest
from _pytask.debugging import _pdbcls_callback
from pytask import cli
from pytask import ExitCode
try:
import pexpect
except ModuleNotFoundError: # pragma: no cover
IS_PEXPECT_INSTALLED = False
else:
IS_PEXPECT_INSTALLED = True
def _escape_ansi(line):
"""Escape ANSI sequences produced by rich."""
ansi_escape = re.compile(r"(?:\x1B[@-_]|[\x80-\x9F])[0-?]*[ -/]*[@-~]")
return ansi_escape.sub("", line)
@pytest.mark.unit()
@pytest.mark.parametrize(
("value", "expected", "expectation"),
[
(None, None, does_not_raise()),
("module:debugger", ("module", "debugger"), does_not_raise()),
("mod.submod:debugger", ("mod.submod", "debugger"), does_not_raise()),
("asd", None, pytest.raises(click.BadParameter)),
("asd:dasd:asdsa", None, pytest.raises(click.BadParameter)),
(1, None, pytest.raises(click.BadParameter)),
],
)
def test_capture_callback(value, expected, expectation):
with expectation:
result = _pdbcls_callback(None, None, value)
assert result == expected
def _flush(child):
if child.isalive():
child.read()
child.wait()
assert not child.isalive()
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_post_mortem_on_error(tmp_path):
source = """
def task_example():
a = 'I am in the debugger. '
b = 'For real!'
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask --pdb {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("p a + b;; continue")
rest = child.read().decode("utf-8")
assert "'I am in the debugger. For real!'" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_post_mortem_on_error_w_kwargs(tmp_path):
source = """
import pytask
from pathlib import Path
@pytask.mark.depends_on(Path(__file__).parent / "in.txt")
def task_example(depends_on):
a = depends_on.read_text()
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("in.txt").write_text("Stuck in the middle with you.")
child = pexpect.spawn(f"pytask --pdb {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("p a;; continue")
rest = child.read().decode("utf-8")
assert "Stuck in the middle with you" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_trace(tmp_path):
source = """
def task_example():
i = 32345434
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask --trace {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("n;; p i;; p i + 1;; p i + 2;; continue")
rest = child.read().decode("utf-8")
assert all(str(i) in rest for i in (32345434, 32345435, 32345436))
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_trace_w_kwargs(tmp_path):
source = """
import pytask
from pathlib import Path
@pytask.mark.depends_on(Path(__file__).parent / "in.txt")
def task_example(depends_on):
print(depends_on.read_text())
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
tmp_path.joinpath("in.txt").write_text("I want you back.")
child = pexpect.spawn(f"pytask --trace {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("n;; continue")
rest = child.read().decode("utf-8")
assert "I want you back." in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_breakpoint(tmp_path):
source = """
def task_example():
i = 32345434
breakpoint()
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("p i;; p i + 1;; p i + 2;; continue")
rest = child.read().decode("utf-8")
assert all(str(i) in rest for i in (32345434, 32345435, 32345436))
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_set_trace(tmp_path):
source = """
import pdb
def task_example():
i = 32345434
pdb.set_trace()
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("Pdb")
child.sendline("p i;; p i + 1;; p i + 2;; continue")
rest = child.read().decode("utf-8")
assert all(str(i) in rest for i in (32345434, 32345435, 32345436))
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.xfail(reason="#312")
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_interaction_capturing_simple(tmp_path): # pragma: no cover
source = """
import pdb
def task_1():
i = 0
print("hello17")
pdb.set_trace()
i == 1
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect(r"task_1\(\)")
child.expect("i == 1")
child.expect("Pdb")
child.sendline("c")
rest = child.read().decode("utf-8")
assert "AssertionError" in rest
assert "1" in rest
assert "failed" in rest
assert "Failed" in rest
assert "task_module.py" in rest
assert "task_1" in rest
assert "hello17" in rest # out is captured
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_set_trace_kwargs(tmp_path):
source = """
import pdb
def task_1():
i = 0
print("hello17")
pdb.set_trace(header="== my_header ==")
x = 3
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("== my_header ==")
assert "PDB set_trace" not in child.before.decode()
child.expect("Pdb")
child.sendline("c")
rest = child.read().decode("utf-8")
assert "1" in rest
assert "failed" in rest
assert "Failed" in rest
assert "task_module.py" in rest
assert "task_1" in rest
assert "hello17" in rest # out is captured
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_set_trace_interception(tmp_path):
source = """
import pdb
def task_1():
pdb.set_trace()
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("task_1")
child.expect("Pdb")
child.sendline("q")
rest = child.read().decode("utf8")
assert "1" in rest
assert "failed" in rest
assert "Failed" in rest
assert "reading from stdin while output" not in rest
# Commented out since the traceback is not hidden. Exiting the debugger should end
# the session without traceback.
# assert "BdbQuit" not in rest
assert "Quitting debugger" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_set_trace_capturing_afterwards(tmp_path):
source = """
import pdb
def task_1():
pdb.set_trace()
def task_2():
print("hello")
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("task_1")
child.sendline("c")
child.expect("task_2")
child.expect("Captured")
child.expect("hello")
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.xfail(reason="#312")
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_interaction_capturing_twice(tmp_path): # pragma: no cover
source = """
import pdb
def task_1():
i = 0
print("hello17")
pdb.set_trace()
x = 3
print("hello18")
pdb.set_trace()
x = 4
assert 0
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect(["PDB", "set_trace", r"\(IO-capturing", "turned", r"off\)"])
child.expect("task_1")
child.expect("x = 3")
child.expect("Pdb")
child.sendline("c")
child.expect(["PDB", "continue", r"\(IO-capturing", r"resumed\)"])
child.expect(["PDB", "set_trace", r"\(IO-capturing", "turned", r"off\)"])
child.expect("x = 4")
child.expect("Pdb")
child.sendline("c")
child.expect(["PDB", "continue", r"\(IO-capturing", r"resumed\)"])
child.expect("task_1")
child.expect("failed")
rest = _escape_ansi(child.read().decode("utf8"))
assert "Captured stdout during call" in rest
assert "hello17" in rest # out is captured
assert "hello18" in rest # out is captured
assert "1 Failed" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_with_injected_do_debug(tmp_path):
"""Simulates pdbpp, which injects Pdb into do_debug, and uses self.__class__ in
do_continue."""
source = """
import pdb
count_continue = 0
class CustomPdb(pdb.Pdb, object):
def do_debug(self, arg):
import sys
import types
do_debug_func = pdb.Pdb.do_debug
newglobals = do_debug_func.__globals__.copy()
newglobals['Pdb'] = self.__class__
orig_do_debug = types.FunctionType(
do_debug_func.__code__, newglobals,
do_debug_func.__name__, do_debug_func.__defaults__,
)
return orig_do_debug(self, arg)
do_debug.__doc__ = pdb.Pdb.do_debug.__doc__
def do_continue(self, *args, **kwargs):
global count_continue
count_continue += 1
return super(CustomPdb, self).do_continue(*args, **kwargs)
def foo():
print("print_from_foo")
def task_1():
i = 0
print("hello17")
pdb.set_trace()
x = 3
print("hello18")
assert count_continue == 2, "unexpected_failure: %d != 2" % count_continue
raise Exception("expected_failure")
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(
f"pytask --pdbcls=task_module:CustomPdb {tmp_path.as_posix()}",
env={"PATH": os.environ["PATH"], "PYTHONPATH": f"{tmp_path.as_posix()}"},
)
child.expect(["PDB", "set_trace", r"\(IO-capturing", "turned", r"off\)"])
child.expect(r"\n\(Pdb")
child.sendline("debug foo()")
child.expect("ENTERING RECURSIVE DEBUGGER")
child.expect(r"\n\(\(Pdb")
child.sendline("c")
child.expect("LEAVING RECURSIVE DEBUGGER")
assert b"PDB continue" not in child.before
# No extra newline.
assert child.before.endswith(b"c\r\nprint_from_foo\r\n")
# set_debug should not raise outcomes. Exit, if used recursively.
child.sendline("debug 42")
child.sendline("q")
child.expect("LEAVING RECURSIVE DEBUGGER")
assert b"ENTERING RECURSIVE DEBUGGER" in child.before
assert b"Quitting debugger" not in child.before
child.sendline("c")
child.expect(["PDB", "continue", r"\(IO-capturing", r"resumed\)"])
rest = _escape_ansi(child.read().decode("utf8"))
assert "hello17" in rest # out is captured
assert "hello18" in rest # out is captured
assert "1" in rest
assert "failed" in rest
assert "Failed" in rest
assert "AssertionError: unexpected_failure" not in rest
assert "expected_failure" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_without_capture(tmp_path):
source = """
import pdb
def task_1():
pdb.set_trace()
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask -s {tmp_path.as_posix()}")
child.expect(r"PDB set_trace")
child.expect("Pdb")
child.sendline("c")
child.expect(r"PDB continue")
child.expect(["1", "succeeded"])
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_used_outside_task(tmp_path):
source = """
import pdb
pdb.set_trace()
x = 5
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.expect("x = 5")
child.expect("Pdb")
child.sendeof()
_flush(child)
@pytest.mark.end_to_end()
def test_printing_of_local_variables(tmp_path, runner):
source = """
def task_example():
a = 1
helper()
def helper():
b = 2
raise Exception
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix(), "--show-locals"])
assert result.exit_code == ExitCode.FAILED
captured = result.output
assert " locals " in captured
assert "a = 1" in captured
assert "b = 2" in captured
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
"""Motivates unconfiguring of pdb.set_trace."""
source = f"""
import pytask
def test_function():
pytask.build(paths={tmp_path.as_posix()!r})
breakpoint()
"""
tmp_path.joinpath("test_example.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytest {tmp_path.as_posix()}")
child.expect("breakpoint()")
child.sendline("c")
rest = child.read().decode("utf8")
assert "1 passed" in rest
_flush(child)
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_pdb_with_task_that_returns(tmp_path, runner):
source = """
from typing_extensions import Annotated
from pathlib import Path
def task_example() -> Annotated[str, Path("data.txt")]:
return "1"
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
result = runner.invoke(cli, [tmp_path.as_posix(), "--pdb"])
assert result.exit_code == ExitCode.OK
assert tmp_path.joinpath("data.txt").read_text() == "1"
@pytest.mark.end_to_end()
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
def test_trace_with_task_that_returns(tmp_path):
source = """
from typing_extensions import Annotated
from pathlib import Path
def task_example() -> Annotated[str, Path("data.txt")]:
return "1"
"""
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
child = pexpect.spawn(f"pytask {tmp_path.as_posix()}")
child.sendline("c")
rest = child.read().decode("utf8")
assert "1 Succeeded" in _escape_ansi(rest)
assert tmp_path.joinpath("data.txt").read_text() == "1"
_flush(child)