blob: 9ee1d9dacd378e68ab366e27e846f4ebf40cb269 [file] [log] [blame]
Georg Brandl46b9afc2010-07-30 09:14:20 +00001# A test suite for pdb; not very comprehensive at the moment.
Martin v. Löwis67880cc2012-05-02 07:41:22 +02002
Andrew Svetlovf0efea02013-03-18 10:09:50 -07003import doctest
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07004import os
Georg Brandl6cccb862010-07-30 14:16:43 +00005import pdb
Georg Brandl243ad662009-05-05 09:00:19 +00006import sys
Brett Cannon9529fbf2013-06-15 17:11:25 -04007import types
Georg Brandl6cccb862010-07-30 14:16:43 +00008import unittest
9import subprocess
Senthil Kumaran42d70812012-05-01 10:07:49 +080010import textwrap
Georg Brandl243ad662009-05-05 09:00:19 +000011
Barry Warsaw35425d62017-09-22 12:29:42 -040012from contextlib import ExitStack
13from io import StringIO
Georg Brandl243ad662009-05-05 09:00:19 +000014from test import support
15# This little helper class is essential for testing pdb under doctest.
16from test.test_doctest import _FakeInput
Barry Warsaw35425d62017-09-22 12:29:42 -040017from unittest.mock import patch
Georg Brandl243ad662009-05-05 09:00:19 +000018
19
Georg Brandl9fa2e022009-09-16 16:40:45 +000020class PdbTestInput(object):
21 """Context manager that makes testing Pdb in doctests easier."""
22
23 def __init__(self, input):
24 self.input = input
25
26 def __enter__(self):
27 self.real_stdin = sys.stdin
28 sys.stdin = _FakeInput(self.input)
Brett Cannon31f59292011-02-21 19:29:56 +000029 self.orig_trace = sys.gettrace() if hasattr(sys, 'gettrace') else None
Georg Brandl9fa2e022009-09-16 16:40:45 +000030
31 def __exit__(self, *exc):
32 sys.stdin = self.real_stdin
Brett Cannon31f59292011-02-21 19:29:56 +000033 if self.orig_trace:
34 sys.settrace(self.orig_trace)
Georg Brandl9fa2e022009-09-16 16:40:45 +000035
36
37def test_pdb_displayhook():
38 """This tests the custom displayhook for pdb.
39
40 >>> def test_function(foo, bar):
Łukasz Langa2eb6eca2016-09-09 22:21:17 -070041 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandl9fa2e022009-09-16 16:40:45 +000042 ... pass
43
44 >>> with PdbTestInput([
45 ... 'foo',
46 ... 'bar',
47 ... 'for i in range(5): print(i)',
48 ... 'continue',
49 ... ]):
50 ... test_function(1, None)
51 > <doctest test.test_pdb.test_pdb_displayhook[0]>(3)test_function()
52 -> pass
53 (Pdb) foo
54 1
55 (Pdb) bar
56 (Pdb) for i in range(5): print(i)
57 0
58 1
59 2
60 3
61 4
62 (Pdb) continue
63 """
64
65
Georg Brandl0d089622010-07-30 16:00:46 +000066def test_pdb_basic_commands():
67 """Test the basic commands of pdb.
68
69 >>> def test_function_2(foo, bar='default'):
70 ... print(foo)
71 ... for i in range(5):
72 ... print(i)
73 ... print(bar)
74 ... for i in range(10):
75 ... never_executed
76 ... print('after for')
77 ... print('...')
78 ... return foo.upper()
79
80 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -070081 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandl0d089622010-07-30 16:00:46 +000082 ... ret = test_function_2('baz')
83 ... print(ret)
84
85 >>> with PdbTestInput([ # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
86 ... 'step', # entering the function call
87 ... 'args', # display function args
88 ... 'list', # list function source
89 ... 'bt', # display backtrace
90 ... 'up', # step up to test_function()
91 ... 'down', # step down to test_function_2() again
92 ... 'next', # stepping to print(foo)
93 ... 'next', # stepping to the for loop
94 ... 'step', # stepping into the for loop
95 ... 'until', # continuing until out of the for loop
96 ... 'next', # executing the print(bar)
97 ... 'jump 8', # jump over second for loop
98 ... 'return', # return out of function
99 ... 'retval', # display return value
100 ... 'continue',
101 ... ]):
102 ... test_function()
103 > <doctest test.test_pdb.test_pdb_basic_commands[1]>(3)test_function()
104 -> ret = test_function_2('baz')
105 (Pdb) step
106 --Call--
107 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(1)test_function_2()
108 -> def test_function_2(foo, bar='default'):
109 (Pdb) args
110 foo = 'baz'
111 bar = 'default'
112 (Pdb) list
113 1 -> def test_function_2(foo, bar='default'):
114 2 print(foo)
115 3 for i in range(5):
116 4 print(i)
117 5 print(bar)
118 6 for i in range(10):
119 7 never_executed
120 8 print('after for')
121 9 print('...')
122 10 return foo.upper()
123 [EOF]
124 (Pdb) bt
125 ...
126 <doctest test.test_pdb.test_pdb_basic_commands[2]>(18)<module>()
127 -> test_function()
128 <doctest test.test_pdb.test_pdb_basic_commands[1]>(3)test_function()
129 -> ret = test_function_2('baz')
130 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(1)test_function_2()
131 -> def test_function_2(foo, bar='default'):
132 (Pdb) up
133 > <doctest test.test_pdb.test_pdb_basic_commands[1]>(3)test_function()
134 -> ret = test_function_2('baz')
135 (Pdb) down
136 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(1)test_function_2()
137 -> def test_function_2(foo, bar='default'):
138 (Pdb) next
139 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(2)test_function_2()
140 -> print(foo)
141 (Pdb) next
142 baz
143 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(3)test_function_2()
144 -> for i in range(5):
145 (Pdb) step
146 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(4)test_function_2()
147 -> print(i)
148 (Pdb) until
149 0
150 1
151 2
152 3
153 4
154 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(5)test_function_2()
155 -> print(bar)
156 (Pdb) next
157 default
158 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(6)test_function_2()
159 -> for i in range(10):
160 (Pdb) jump 8
161 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(8)test_function_2()
162 -> print('after for')
163 (Pdb) return
164 after for
165 ...
166 --Return--
167 > <doctest test.test_pdb.test_pdb_basic_commands[0]>(10)test_function_2()->'BAZ'
168 -> return foo.upper()
169 (Pdb) retval
170 'BAZ'
171 (Pdb) continue
172 BAZ
173 """
174
175
176def test_pdb_breakpoint_commands():
177 """Test basic commands related to breakpoints.
178
179 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700180 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandl0d089622010-07-30 16:00:46 +0000181 ... print(1)
182 ... print(2)
183 ... print(3)
184 ... print(4)
185
186 First, need to clear bdb state that might be left over from previous tests.
187 Otherwise, the new breakpoints might get assigned different numbers.
188
189 >>> from bdb import Breakpoint
190 >>> Breakpoint.next = 1
191 >>> Breakpoint.bplist = {}
192 >>> Breakpoint.bpbynumber = [None]
193
194 Now test the breakpoint commands. NORMALIZE_WHITESPACE is needed because
195 the breakpoint list outputs a tab for the "stop only" and "ignore next"
196 lines, which we don't want to put in here.
197
198 >>> with PdbTestInput([ # doctest: +NORMALIZE_WHITESPACE
199 ... 'break 3',
200 ... 'disable 1',
201 ... 'ignore 1 10',
202 ... 'condition 1 1 < 2',
203 ... 'break 4',
Senthil Kumaran6f107042010-11-29 11:54:17 +0000204 ... 'break 4',
205 ... 'break',
206 ... 'clear 3',
Georg Brandl0d089622010-07-30 16:00:46 +0000207 ... 'break',
208 ... 'condition 1',
209 ... 'enable 1',
210 ... 'clear 1',
211 ... 'commands 2',
R David Murray78d692f2013-10-10 17:23:26 -0400212 ... 'p "42"',
213 ... 'print("42", 7*6)', # Issue 18764 (not about breakpoints)
Georg Brandl0d089622010-07-30 16:00:46 +0000214 ... 'end',
215 ... 'continue', # will stop at breakpoint 2 (line 4)
216 ... 'clear', # clear all!
217 ... 'y',
218 ... 'tbreak 5',
219 ... 'continue', # will stop at temporary breakpoint
220 ... 'break', # make sure breakpoint is gone
221 ... 'continue',
222 ... ]):
223 ... test_function()
224 > <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>(3)test_function()
225 -> print(1)
226 (Pdb) break 3
227 Breakpoint 1 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
228 (Pdb) disable 1
229 Disabled breakpoint 1 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
230 (Pdb) ignore 1 10
231 Will ignore next 10 crossings of breakpoint 1.
232 (Pdb) condition 1 1 < 2
233 New condition set for breakpoint 1.
234 (Pdb) break 4
235 Breakpoint 2 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
Senthil Kumaran6f107042010-11-29 11:54:17 +0000236 (Pdb) break 4
237 Breakpoint 3 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
238 (Pdb) break
239 Num Type Disp Enb Where
240 1 breakpoint keep no at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
241 stop only if 1 < 2
242 ignore next 10 hits
243 2 breakpoint keep yes at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
244 3 breakpoint keep yes at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
245 (Pdb) clear 3
246 Deleted breakpoint 3 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
Georg Brandl0d089622010-07-30 16:00:46 +0000247 (Pdb) break
248 Num Type Disp Enb Where
249 1 breakpoint keep no at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
250 stop only if 1 < 2
251 ignore next 10 hits
252 2 breakpoint keep yes at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
253 (Pdb) condition 1
254 Breakpoint 1 is now unconditional.
255 (Pdb) enable 1
256 Enabled breakpoint 1 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
257 (Pdb) clear 1
258 Deleted breakpoint 1 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:3
259 (Pdb) commands 2
R David Murray78d692f2013-10-10 17:23:26 -0400260 (com) p "42"
261 (com) print("42", 7*6)
Georg Brandl0d089622010-07-30 16:00:46 +0000262 (com) end
263 (Pdb) continue
264 1
R David Murray78d692f2013-10-10 17:23:26 -0400265 '42'
266 42 42
Georg Brandl0d089622010-07-30 16:00:46 +0000267 > <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>(4)test_function()
268 -> print(2)
269 (Pdb) clear
270 Clear all breaks? y
271 Deleted breakpoint 2 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:4
272 (Pdb) tbreak 5
Senthil Kumaran6f107042010-11-29 11:54:17 +0000273 Breakpoint 4 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:5
Georg Brandl0d089622010-07-30 16:00:46 +0000274 (Pdb) continue
275 2
Senthil Kumaran6f107042010-11-29 11:54:17 +0000276 Deleted breakpoint 4 at <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>:5
Georg Brandl0d089622010-07-30 16:00:46 +0000277 > <doctest test.test_pdb.test_pdb_breakpoint_commands[0]>(5)test_function()
278 -> print(3)
279 (Pdb) break
280 (Pdb) continue
281 3
282 4
283 """
284
285
Georg Brandle59ca2a2010-07-30 17:04:28 +0000286def do_nothing():
287 pass
288
289def do_something():
290 print(42)
291
292def test_list_commands():
293 """Test the list and source commands of pdb.
294
295 >>> def test_function_2(foo):
Georg Brandla8fbc6a2010-07-31 11:52:46 +0000296 ... import test.test_pdb
297 ... test.test_pdb.do_nothing()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000298 ... 'some...'
299 ... 'more...'
300 ... 'code...'
301 ... 'to...'
302 ... 'make...'
303 ... 'a...'
304 ... 'long...'
305 ... 'listing...'
306 ... 'useful...'
307 ... '...'
308 ... '...'
309 ... return foo
310
311 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700312 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000313 ... ret = test_function_2('baz')
314
315 >>> with PdbTestInput([ # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
316 ... 'list', # list first function
317 ... 'step', # step into second function
318 ... 'list', # list second function
319 ... 'list', # continue listing to EOF
320 ... 'list 1,3', # list specific lines
321 ... 'list x', # invalid argument
322 ... 'next', # step to import
323 ... 'next', # step over import
324 ... 'step', # step into do_nothing
325 ... 'longlist', # list all lines
326 ... 'source do_something', # list all lines of function
Georg Brandlcdf66a92010-07-30 18:15:16 +0000327 ... 'source fooxxx', # something that doesn't exit
Georg Brandle59ca2a2010-07-30 17:04:28 +0000328 ... 'continue',
329 ... ]):
330 ... test_function()
331 > <doctest test.test_pdb.test_list_commands[1]>(3)test_function()
332 -> ret = test_function_2('baz')
333 (Pdb) list
334 1 def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700335 2 import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000336 3 -> ret = test_function_2('baz')
337 [EOF]
338 (Pdb) step
339 --Call--
340 > <doctest test.test_pdb.test_list_commands[0]>(1)test_function_2()
341 -> def test_function_2(foo):
342 (Pdb) list
343 1 -> def test_function_2(foo):
Georg Brandla8fbc6a2010-07-31 11:52:46 +0000344 2 import test.test_pdb
345 3 test.test_pdb.do_nothing()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000346 4 'some...'
347 5 'more...'
348 6 'code...'
349 7 'to...'
350 8 'make...'
351 9 'a...'
352 10 'long...'
353 11 'listing...'
354 (Pdb) list
355 12 'useful...'
356 13 '...'
357 14 '...'
358 15 return foo
359 [EOF]
360 (Pdb) list 1,3
361 1 -> def test_function_2(foo):
Georg Brandla8fbc6a2010-07-31 11:52:46 +0000362 2 import test.test_pdb
363 3 test.test_pdb.do_nothing()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000364 (Pdb) list x
365 *** ...
366 (Pdb) next
367 > <doctest test.test_pdb.test_list_commands[0]>(2)test_function_2()
Georg Brandla8fbc6a2010-07-31 11:52:46 +0000368 -> import test.test_pdb
Georg Brandle59ca2a2010-07-30 17:04:28 +0000369 (Pdb) next
370 > <doctest test.test_pdb.test_list_commands[0]>(3)test_function_2()
Georg Brandla8fbc6a2010-07-31 11:52:46 +0000371 -> test.test_pdb.do_nothing()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000372 (Pdb) step
373 --Call--
Georg Brandle1e8df12010-07-31 08:14:16 +0000374 > ...test_pdb.py(...)do_nothing()
Georg Brandle59ca2a2010-07-30 17:04:28 +0000375 -> def do_nothing():
376 (Pdb) longlist
377 ... -> def do_nothing():
378 ... pass
379 (Pdb) source do_something
380 ... def do_something():
381 ... print(42)
Georg Brandlcdf66a92010-07-30 18:15:16 +0000382 (Pdb) source fooxxx
383 *** ...
Georg Brandle59ca2a2010-07-30 17:04:28 +0000384 (Pdb) continue
385 """
386
387
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000388def test_post_mortem():
389 """Test post mortem traceback debugging.
390
391 >>> def test_function_2():
392 ... try:
393 ... 1/0
394 ... finally:
395 ... print('Exception!')
396
397 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700398 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000399 ... test_function_2()
400 ... print('Not reached.')
401
402 >>> with PdbTestInput([ # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
403 ... 'next', # step over exception-raising call
404 ... 'bt', # get a backtrace
405 ... 'list', # list code of test_function()
406 ... 'down', # step into test_function_2()
407 ... 'list', # list code of test_function_2()
408 ... 'continue',
409 ... ]):
410 ... try:
411 ... test_function()
412 ... except ZeroDivisionError:
413 ... print('Correctly reraised.')
414 > <doctest test.test_pdb.test_post_mortem[1]>(3)test_function()
415 -> test_function_2()
416 (Pdb) next
417 Exception!
418 ZeroDivisionError: division by zero
419 > <doctest test.test_pdb.test_post_mortem[1]>(3)test_function()
420 -> test_function_2()
421 (Pdb) bt
422 ...
423 <doctest test.test_pdb.test_post_mortem[2]>(10)<module>()
424 -> test_function()
425 > <doctest test.test_pdb.test_post_mortem[1]>(3)test_function()
426 -> test_function_2()
427 <doctest test.test_pdb.test_post_mortem[0]>(3)test_function_2()
428 -> 1/0
429 (Pdb) list
430 1 def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700431 2 import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000432 3 -> test_function_2()
433 4 print('Not reached.')
434 [EOF]
435 (Pdb) down
436 > <doctest test.test_pdb.test_post_mortem[0]>(3)test_function_2()
437 -> 1/0
438 (Pdb) list
439 1 def test_function_2():
440 2 try:
441 3 >> 1/0
442 4 finally:
443 5 -> print('Exception!')
444 [EOF]
445 (Pdb) continue
446 Correctly reraised.
447 """
448
449
Georg Brandl243ad662009-05-05 09:00:19 +0000450def test_pdb_skip_modules():
451 """This illustrates the simple case of module skipping.
452
453 >>> def skip_module():
454 ... import string
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700455 ... import pdb; pdb.Pdb(skip=['stri*'], nosigint=True, readrc=False).set_trace()
Georg Brandl243ad662009-05-05 09:00:19 +0000456 ... string.capwords('FOO')
Georg Brandl243ad662009-05-05 09:00:19 +0000457
Georg Brandl9fa2e022009-09-16 16:40:45 +0000458 >>> with PdbTestInput([
459 ... 'step',
460 ... 'continue',
461 ... ]):
Georg Brandl243ad662009-05-05 09:00:19 +0000462 ... skip_module()
Georg Brandl243ad662009-05-05 09:00:19 +0000463 > <doctest test.test_pdb.test_pdb_skip_modules[0]>(4)skip_module()
464 -> string.capwords('FOO')
465 (Pdb) step
466 --Return--
467 > <doctest test.test_pdb.test_pdb_skip_modules[0]>(4)skip_module()->None
468 -> string.capwords('FOO')
469 (Pdb) continue
Georg Brandl9fa2e022009-09-16 16:40:45 +0000470 """
Georg Brandl243ad662009-05-05 09:00:19 +0000471
472
473# Module for testing skipping of module that makes a callback
Brett Cannon9529fbf2013-06-15 17:11:25 -0400474mod = types.ModuleType('module_to_skip')
Georg Brandl243ad662009-05-05 09:00:19 +0000475exec('def foo_pony(callback): x = 1; callback(); return None', mod.__dict__)
476
477
478def test_pdb_skip_modules_with_callback():
479 """This illustrates skipping of modules that call into other code.
480
481 >>> def skip_module():
482 ... def callback():
483 ... return None
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700484 ... import pdb; pdb.Pdb(skip=['module_to_skip*'], nosigint=True, readrc=False).set_trace()
Georg Brandl243ad662009-05-05 09:00:19 +0000485 ... mod.foo_pony(callback)
Georg Brandl243ad662009-05-05 09:00:19 +0000486
Georg Brandl9fa2e022009-09-16 16:40:45 +0000487 >>> with PdbTestInput([
488 ... 'step',
489 ... 'step',
490 ... 'step',
491 ... 'step',
492 ... 'step',
493 ... 'continue',
494 ... ]):
Georg Brandl243ad662009-05-05 09:00:19 +0000495 ... skip_module()
Georg Brandl9fa2e022009-09-16 16:40:45 +0000496 ... pass # provides something to "step" to
Georg Brandl243ad662009-05-05 09:00:19 +0000497 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[0]>(5)skip_module()
498 -> mod.foo_pony(callback)
499 (Pdb) step
500 --Call--
501 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[0]>(2)callback()
502 -> def callback():
503 (Pdb) step
504 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[0]>(3)callback()
505 -> return None
506 (Pdb) step
507 --Return--
508 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[0]>(3)callback()->None
509 -> return None
510 (Pdb) step
511 --Return--
512 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[0]>(5)skip_module()->None
513 -> mod.foo_pony(callback)
514 (Pdb) step
Georg Brandl9fa2e022009-09-16 16:40:45 +0000515 > <doctest test.test_pdb.test_pdb_skip_modules_with_callback[1]>(10)<module>()
516 -> pass # provides something to "step" to
Georg Brandl243ad662009-05-05 09:00:19 +0000517 (Pdb) continue
Georg Brandl9fa2e022009-09-16 16:40:45 +0000518 """
Georg Brandl243ad662009-05-05 09:00:19 +0000519
520
Georg Brandl3f940892010-07-30 10:29:19 +0000521def test_pdb_continue_in_bottomframe():
522 """Test that "continue" and "next" work properly in bottom frame (issue #5294).
523
524 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700525 ... import pdb, sys; inst = pdb.Pdb(nosigint=True, readrc=False)
Georg Brandl3f940892010-07-30 10:29:19 +0000526 ... inst.set_trace()
527 ... inst.botframe = sys._getframe() # hackery to get the right botframe
528 ... print(1)
529 ... print(2)
530 ... print(3)
531 ... print(4)
532
Georg Brandl7410dd12010-07-30 12:01:20 +0000533 >>> with PdbTestInput([ # doctest: +ELLIPSIS
Georg Brandl3f940892010-07-30 10:29:19 +0000534 ... 'next',
535 ... 'break 7',
536 ... 'continue',
537 ... 'next',
538 ... 'continue',
539 ... 'continue',
540 ... ]):
541 ... test_function()
542 > <doctest test.test_pdb.test_pdb_continue_in_bottomframe[0]>(4)test_function()
543 -> inst.botframe = sys._getframe() # hackery to get the right botframe
544 (Pdb) next
545 > <doctest test.test_pdb.test_pdb_continue_in_bottomframe[0]>(5)test_function()
546 -> print(1)
547 (Pdb) break 7
Georg Brandl7410dd12010-07-30 12:01:20 +0000548 Breakpoint ... at <doctest test.test_pdb.test_pdb_continue_in_bottomframe[0]>:7
Georg Brandl3f940892010-07-30 10:29:19 +0000549 (Pdb) continue
550 1
551 2
552 > <doctest test.test_pdb.test_pdb_continue_in_bottomframe[0]>(7)test_function()
553 -> print(3)
554 (Pdb) next
555 3
556 > <doctest test.test_pdb.test_pdb_continue_in_bottomframe[0]>(8)test_function()
557 -> print(4)
558 (Pdb) continue
559 4
560 """
561
562
Georg Brandl46b9afc2010-07-30 09:14:20 +0000563def pdb_invoke(method, arg):
564 """Run pdb.method(arg)."""
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700565 getattr(pdb.Pdb(nosigint=True, readrc=False), method)(arg)
Georg Brandl46b9afc2010-07-30 09:14:20 +0000566
567
568def test_pdb_run_with_incorrect_argument():
569 """Testing run and runeval with incorrect first argument.
570
571 >>> pti = PdbTestInput(['continue',])
572 >>> with pti:
573 ... pdb_invoke('run', lambda x: x)
574 Traceback (most recent call last):
575 TypeError: exec() arg 1 must be a string, bytes or code object
576
577 >>> with pti:
578 ... pdb_invoke('runeval', lambda x: x)
579 Traceback (most recent call last):
580 TypeError: eval() arg 1 must be a string, bytes or code object
581 """
582
583
584def test_pdb_run_with_code_object():
585 """Testing run and runeval with code object as a first argument.
586
Georg Brandle1e8df12010-07-31 08:14:16 +0000587 >>> with PdbTestInput(['step','x', 'continue']): # doctest: +ELLIPSIS
Georg Brandl46b9afc2010-07-30 09:14:20 +0000588 ... pdb_invoke('run', compile('x=1', '<string>', 'exec'))
Georg Brandle1e8df12010-07-31 08:14:16 +0000589 > <string>(1)<module>()...
Georg Brandl46b9afc2010-07-30 09:14:20 +0000590 (Pdb) step
591 --Return--
592 > <string>(1)<module>()->None
593 (Pdb) x
594 1
595 (Pdb) continue
596
597 >>> with PdbTestInput(['x', 'continue']):
598 ... x=0
599 ... pdb_invoke('runeval', compile('x+1', '<string>', 'eval'))
600 > <string>(1)<module>()->None
601 (Pdb) x
602 1
603 (Pdb) continue
604 """
605
Guido van Rossum8820c232013-11-21 11:30:06 -0800606def test_next_until_return_at_return_event():
607 """Test that pdb stops after a next/until/return issued at a return debug event.
608
609 >>> def test_function_2():
610 ... x = 1
611 ... x = 2
612
613 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700614 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800615 ... test_function_2()
616 ... test_function_2()
617 ... test_function_2()
618 ... end = 1
619
Antoine Pitrouc04d4682014-08-11 21:40:38 -0400620 >>> from bdb import Breakpoint
621 >>> Breakpoint.next = 1
Guido van Rossum8820c232013-11-21 11:30:06 -0800622 >>> with PdbTestInput(['break test_function_2',
623 ... 'continue',
624 ... 'return',
625 ... 'next',
626 ... 'continue',
627 ... 'return',
628 ... 'until',
629 ... 'continue',
630 ... 'return',
631 ... 'return',
632 ... 'continue']):
633 ... test_function()
634 > <doctest test.test_pdb.test_next_until_return_at_return_event[1]>(3)test_function()
635 -> test_function_2()
636 (Pdb) break test_function_2
637 Breakpoint 1 at <doctest test.test_pdb.test_next_until_return_at_return_event[0]>:1
638 (Pdb) continue
639 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(2)test_function_2()
640 -> x = 1
641 (Pdb) return
642 --Return--
643 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(3)test_function_2()->None
644 -> x = 2
645 (Pdb) next
646 > <doctest test.test_pdb.test_next_until_return_at_return_event[1]>(4)test_function()
647 -> test_function_2()
648 (Pdb) continue
649 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(2)test_function_2()
650 -> x = 1
651 (Pdb) return
652 --Return--
653 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(3)test_function_2()->None
654 -> x = 2
655 (Pdb) until
656 > <doctest test.test_pdb.test_next_until_return_at_return_event[1]>(5)test_function()
657 -> test_function_2()
658 (Pdb) continue
659 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(2)test_function_2()
660 -> x = 1
661 (Pdb) return
662 --Return--
663 > <doctest test.test_pdb.test_next_until_return_at_return_event[0]>(3)test_function_2()->None
664 -> x = 2
665 (Pdb) return
666 > <doctest test.test_pdb.test_next_until_return_at_return_event[1]>(6)test_function()
667 -> end = 1
668 (Pdb) continue
669 """
670
671def test_pdb_next_command_for_generator():
672 """Testing skip unwindng stack on yield for generators for "next" command
673
674 >>> def test_gen():
675 ... yield 0
676 ... return 1
677 ... yield 2
678
679 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700680 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800681 ... it = test_gen()
682 ... try:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300683 ... if next(it) != 0:
684 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800685 ... next(it)
686 ... except StopIteration as ex:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300687 ... if ex.value != 1:
688 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800689 ... print("finished")
690
691 >>> with PdbTestInput(['step',
692 ... 'step',
693 ... 'step',
694 ... 'next',
695 ... 'next',
696 ... 'step',
697 ... 'step',
698 ... 'continue']):
699 ... test_function()
700 > <doctest test.test_pdb.test_pdb_next_command_for_generator[1]>(3)test_function()
701 -> it = test_gen()
702 (Pdb) step
703 > <doctest test.test_pdb.test_pdb_next_command_for_generator[1]>(4)test_function()
704 -> try:
705 (Pdb) step
706 > <doctest test.test_pdb.test_pdb_next_command_for_generator[1]>(5)test_function()
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300707 -> if next(it) != 0:
Guido van Rossum8820c232013-11-21 11:30:06 -0800708 (Pdb) step
709 --Call--
710 > <doctest test.test_pdb.test_pdb_next_command_for_generator[0]>(1)test_gen()
711 -> def test_gen():
712 (Pdb) next
713 > <doctest test.test_pdb.test_pdb_next_command_for_generator[0]>(2)test_gen()
714 -> yield 0
715 (Pdb) next
716 > <doctest test.test_pdb.test_pdb_next_command_for_generator[0]>(3)test_gen()
717 -> return 1
718 (Pdb) step
719 --Return--
720 > <doctest test.test_pdb.test_pdb_next_command_for_generator[0]>(3)test_gen()->1
721 -> return 1
722 (Pdb) step
723 StopIteration: 1
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300724 > <doctest test.test_pdb.test_pdb_next_command_for_generator[1]>(7)test_function()
Guido van Rossum8820c232013-11-21 11:30:06 -0800725 -> next(it)
726 (Pdb) continue
727 finished
728 """
729
Pablo Galindo46877022018-01-29 00:25:05 +0000730def test_pdb_next_command_for_coroutine():
731 """Testing skip unwindng stack on yield for coroutines for "next" command
732
733 >>> import asyncio
734
735 >>> async def test_coro():
736 ... await asyncio.sleep(0)
737 ... await asyncio.sleep(0)
738 ... await asyncio.sleep(0)
739
740 >>> async def test_main():
741 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
742 ... await test_coro()
743
744 >>> def test_function():
745 ... loop = asyncio.get_event_loop()
746 ... loop.run_until_complete(test_main())
747 ... loop.close()
748 ... print("finished")
749
750 >>> with PdbTestInput(['step',
751 ... 'step',
752 ... 'next',
753 ... 'next',
754 ... 'next',
755 ... 'step',
756 ... 'continue']):
757 ... test_function()
758 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
759 -> await test_coro()
760 (Pdb) step
761 --Call--
762 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(1)test_coro()
763 -> async def test_coro():
764 (Pdb) step
765 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(2)test_coro()
766 -> await asyncio.sleep(0)
767 (Pdb) next
768 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(3)test_coro()
769 -> await asyncio.sleep(0)
770 (Pdb) next
771 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(4)test_coro()
772 -> await asyncio.sleep(0)
773 (Pdb) next
774 Internal StopIteration
775 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
776 -> await test_coro()
777 (Pdb) step
778 --Return--
779 > <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()->None
780 -> await test_coro()
781 (Pdb) continue
782 finished
783 """
784
Guido van Rossum8820c232013-11-21 11:30:06 -0800785def test_pdb_return_command_for_generator():
786 """Testing no unwindng stack on yield for generators
787 for "return" command
788
789 >>> def test_gen():
790 ... yield 0
791 ... return 1
792 ... yield 2
793
794 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700795 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800796 ... it = test_gen()
797 ... try:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300798 ... if next(it) != 0:
799 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800800 ... next(it)
801 ... except StopIteration as ex:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300802 ... if ex.value != 1:
803 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800804 ... print("finished")
805
806 >>> with PdbTestInput(['step',
807 ... 'step',
808 ... 'step',
809 ... 'return',
810 ... 'step',
811 ... 'step',
812 ... 'continue']):
813 ... test_function()
814 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(3)test_function()
815 -> it = test_gen()
816 (Pdb) step
817 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(4)test_function()
818 -> try:
819 (Pdb) step
820 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(5)test_function()
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300821 -> if next(it) != 0:
Guido van Rossum8820c232013-11-21 11:30:06 -0800822 (Pdb) step
823 --Call--
824 > <doctest test.test_pdb.test_pdb_return_command_for_generator[0]>(1)test_gen()
825 -> def test_gen():
826 (Pdb) return
827 StopIteration: 1
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300828 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(7)test_function()
Guido van Rossum8820c232013-11-21 11:30:06 -0800829 -> next(it)
830 (Pdb) step
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300831 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(8)test_function()
Guido van Rossum8820c232013-11-21 11:30:06 -0800832 -> except StopIteration as ex:
833 (Pdb) step
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300834 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(9)test_function()
835 -> if ex.value != 1:
Guido van Rossum8820c232013-11-21 11:30:06 -0800836 (Pdb) continue
837 finished
838 """
839
840def test_pdb_until_command_for_generator():
841 """Testing no unwindng stack on yield for generators
842 for "until" command if target breakpoing is not reached
843
844 >>> def test_gen():
845 ... yield 0
846 ... yield 1
847 ... yield 2
848
849 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700850 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800851 ... for i in test_gen():
852 ... print(i)
853 ... print("finished")
854
855 >>> with PdbTestInput(['step',
856 ... 'until 4',
857 ... 'step',
858 ... 'step',
859 ... 'continue']):
860 ... test_function()
861 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(3)test_function()
862 -> for i in test_gen():
863 (Pdb) step
864 --Call--
865 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(1)test_gen()
866 -> def test_gen():
867 (Pdb) until 4
868 0
869 1
870 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()
871 -> yield 2
872 (Pdb) step
873 --Return--
874 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()->2
875 -> yield 2
876 (Pdb) step
877 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(4)test_function()
878 -> print(i)
879 (Pdb) continue
880 2
881 finished
882 """
883
884def test_pdb_next_command_in_generator_for_loop():
Martin Panter46f50722016-05-26 05:35:26 +0000885 """The next command on returning from a generator controlled by a for loop.
Guido van Rossum8820c232013-11-21 11:30:06 -0800886
887 >>> def test_gen():
888 ... yield 0
889 ... return 1
890
891 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700892 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800893 ... for i in test_gen():
894 ... print('value', i)
895 ... x = 123
896
897 >>> with PdbTestInput(['break test_gen',
898 ... 'continue',
899 ... 'next',
900 ... 'next',
901 ... 'next',
902 ... 'continue']):
903 ... test_function()
904 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
905 -> for i in test_gen():
906 (Pdb) break test_gen
907 Breakpoint 6 at <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>:1
908 (Pdb) continue
909 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(2)test_gen()
910 -> yield 0
911 (Pdb) next
912 value 0
913 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(3)test_gen()
914 -> return 1
915 (Pdb) next
916 Internal StopIteration: 1
917 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
918 -> for i in test_gen():
919 (Pdb) next
920 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(5)test_function()
921 -> x = 123
922 (Pdb) continue
923 """
924
925def test_pdb_next_command_subiterator():
926 """The next command in a generator with a subiterator.
927
928 >>> def test_subgenerator():
929 ... yield 0
930 ... return 1
931
932 >>> def test_gen():
933 ... x = yield from test_subgenerator()
934 ... return x
935
936 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700937 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800938 ... for i in test_gen():
939 ... print('value', i)
940 ... x = 123
941
942 >>> with PdbTestInput(['step',
943 ... 'step',
944 ... 'next',
945 ... 'next',
946 ... 'next',
947 ... 'continue']):
948 ... test_function()
949 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
950 -> for i in test_gen():
951 (Pdb) step
952 --Call--
953 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(1)test_gen()
954 -> def test_gen():
955 (Pdb) step
956 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(2)test_gen()
957 -> x = yield from test_subgenerator()
958 (Pdb) next
959 value 0
960 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(3)test_gen()
961 -> return x
962 (Pdb) next
963 Internal StopIteration: 1
964 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
965 -> for i in test_gen():
966 (Pdb) next
967 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(5)test_function()
968 -> x = 123
969 (Pdb) continue
970 """
971
Xavier de Gaye10e54ae2016-10-12 20:13:24 +0200972def test_pdb_issue_20766():
973 """Test for reference leaks when the SIGINT handler is set.
974
975 >>> def test_function():
976 ... i = 1
977 ... while i <= 2:
978 ... sess = pdb.Pdb()
979 ... sess.set_trace(sys._getframe())
980 ... print('pdb %d: %s' % (i, sess._previous_sigint_handler))
981 ... i += 1
982
983 >>> with PdbTestInput(['continue',
984 ... 'continue']):
985 ... test_function()
986 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(6)test_function()
987 -> print('pdb %d: %s' % (i, sess._previous_sigint_handler))
988 (Pdb) continue
989 pdb 1: <built-in function default_int_handler>
990 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(5)test_function()
991 -> sess.set_trace(sys._getframe())
992 (Pdb) continue
993 pdb 2: <built-in function default_int_handler>
994 """
Georg Brandl46b9afc2010-07-30 09:14:20 +0000995
Georg Brandl6cccb862010-07-30 14:16:43 +0000996
Mario Corchero9f1e5f12018-01-06 07:53:05 +0000997class PdbTestCase(unittest.TestCase):
998 def tearDown(self):
999 support.unlink(support.TESTFN)
1000
1001 def _run_pdb(self, pdb_args, commands):
1002 self.addCleanup(support.rmtree, '__pycache__')
1003 cmd = [sys.executable, '-m', 'pdb'] + pdb_args
1004 with subprocess.Popen(
1005 cmd,
1006 stdout=subprocess.PIPE,
1007 stdin=subprocess.PIPE,
1008 stderr=subprocess.STDOUT,
1009 ) as proc:
1010 stdout, stderr = proc.communicate(str.encode(commands))
1011 stdout = stdout and bytes.decode(stdout)
1012 stderr = stderr and bytes.decode(stderr)
1013 return stdout, stderr
1014
1015 def run_pdb_script(self, script, commands):
Senthil Kumaran42d70812012-05-01 10:07:49 +08001016 """Run 'script' lines with pdb and the pdb 'commands'."""
1017 filename = 'main.py'
1018 with open(filename, 'w') as f:
1019 f.write(textwrap.dedent(script))
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001020 self.addCleanup(support.unlink, filename)
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001021 return self._run_pdb([filename], commands)
1022
1023 def run_pdb_module(self, script, commands):
1024 """Runs the script code as part of a module"""
1025 self.module_name = 't_main'
1026 support.rmtree(self.module_name)
1027 main_file = self.module_name + '/__main__.py'
1028 init_file = self.module_name + '/__init__.py'
1029 os.mkdir(self.module_name)
1030 with open(init_file, 'w') as f:
1031 pass
1032 with open(main_file, 'w') as f:
1033 f.write(textwrap.dedent(script))
1034 self.addCleanup(support.rmtree, self.module_name)
1035 return self._run_pdb(['-m', self.module_name], commands)
Senthil Kumaran42d70812012-05-01 10:07:49 +08001036
Georg Brandl6e220552013-10-13 20:51:47 +02001037 def _assert_find_function(self, file_content, func_name, expected):
1038 file_content = textwrap.dedent(file_content)
1039
1040 with open(support.TESTFN, 'w') as f:
1041 f.write(file_content)
1042
1043 expected = None if not expected else (
1044 expected[0], support.TESTFN, expected[1])
1045 self.assertEqual(
1046 expected, pdb.find_function(func_name, support.TESTFN))
1047
1048 def test_find_function_empty_file(self):
1049 self._assert_find_function('', 'foo', None)
1050
1051 def test_find_function_found(self):
1052 self._assert_find_function(
1053 """\
1054 def foo():
1055 pass
1056
1057 def bar():
1058 pass
1059
1060 def quux():
1061 pass
1062 """,
1063 'bar',
1064 ('bar', 4),
1065 )
1066
Georg Brandl6cccb862010-07-30 14:16:43 +00001067 def test_issue7964(self):
1068 # open the file as binary so we can force \r\n newline
1069 with open(support.TESTFN, 'wb') as f:
1070 f.write(b'print("testing my pdb")\r\n')
1071 cmd = [sys.executable, '-m', 'pdb', support.TESTFN]
1072 proc = subprocess.Popen(cmd,
1073 stdout=subprocess.PIPE,
1074 stdin=subprocess.PIPE,
1075 stderr=subprocess.STDOUT,
1076 )
Brian Curtin994ad6c2010-11-05 15:38:47 +00001077 self.addCleanup(proc.stdout.close)
Georg Brandl6cccb862010-07-30 14:16:43 +00001078 stdout, stderr = proc.communicate(b'quit\n')
1079 self.assertNotIn(b'SyntaxError', stdout,
1080 "Got a syntax error running test script under PDB")
1081
Senthil Kumaran42d70812012-05-01 10:07:49 +08001082 def test_issue13183(self):
1083 script = """
1084 from bar import bar
1085
1086 def foo():
1087 bar()
1088
1089 def nope():
1090 pass
1091
1092 def foobar():
1093 foo()
1094 nope()
1095
1096 foobar()
1097 """
1098 commands = """
1099 from bar import bar
1100 break bar
1101 continue
1102 step
1103 step
1104 quit
1105 """
1106 bar = """
1107 def bar():
Senthil Kumarancb172042012-05-02 08:00:22 +08001108 pass
Senthil Kumaran42d70812012-05-01 10:07:49 +08001109 """
1110 with open('bar.py', 'w') as f:
1111 f.write(textwrap.dedent(bar))
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001112 self.addCleanup(support.unlink, 'bar.py')
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001113 stdout, stderr = self.run_pdb_script(script, commands)
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001114 self.assertTrue(
1115 any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
1116 'Fail to step into the caller after a return')
Senthil Kumaran42d70812012-05-01 10:07:49 +08001117
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001118 def test_issue13210(self):
1119 # invoking "continue" on a non-main thread triggered an exception
1120 # inside signal.signal
1121
1122 with open(support.TESTFN, 'wb') as f:
1123 f.write(textwrap.dedent("""
1124 import threading
1125 import pdb
1126
1127 def start_pdb():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001128 pdb.Pdb(readrc=False).set_trace()
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001129 x = 1
1130 y = 1
1131
1132 t = threading.Thread(target=start_pdb)
1133 t.start()""").encode('ascii'))
1134 cmd = [sys.executable, '-u', support.TESTFN]
1135 proc = subprocess.Popen(cmd,
1136 stdout=subprocess.PIPE,
1137 stdin=subprocess.PIPE,
1138 stderr=subprocess.STDOUT,
1139 )
1140 self.addCleanup(proc.stdout.close)
1141 stdout, stderr = proc.communicate(b'cont\n')
1142 self.assertNotIn('Error', stdout.decode(),
1143 "Got an error running test script under PDB")
1144
Terry Jan Reedyca3f4352015-09-05 19:13:26 -04001145 def test_issue16180(self):
1146 # A syntax error in the debuggee.
1147 script = "def f: pass\n"
1148 commands = ''
1149 expected = "SyntaxError:"
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001150 stdout, stderr = self.run_pdb_script(script, commands)
Terry Jan Reedyca3f4352015-09-05 19:13:26 -04001151 self.assertIn(expected, stdout,
1152 '\n\nExpected:\n{}\nGot:\n{}\n'
1153 'Fail to handle a syntax error in the debuggee.'
1154 .format(expected, stdout))
1155
1156
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001157 def test_readrc_kwarg(self):
Victor Stinner11ea0442016-09-09 22:56:54 -07001158 script = textwrap.dedent("""
1159 import pdb; pdb.Pdb(readrc=False).set_trace()
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001160
Victor Stinner11ea0442016-09-09 22:56:54 -07001161 print('hello')
1162 """)
Victor Stinner11ea0442016-09-09 22:56:54 -07001163
Victor Stinnerbc626262016-09-09 23:22:09 -07001164 save_home = os.environ.pop('HOME', None)
1165 try:
1166 with support.temp_cwd():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001167 with open('.pdbrc', 'w') as f:
1168 f.write("invalid\n")
1169
1170 with open('main.py', 'w') as f:
1171 f.write(script)
1172
1173 cmd = [sys.executable, 'main.py']
1174 proc = subprocess.Popen(
1175 cmd,
1176 stdout=subprocess.PIPE,
1177 stdin=subprocess.PIPE,
1178 stderr=subprocess.PIPE,
1179 )
Victor Stinnerbc626262016-09-09 23:22:09 -07001180 with proc:
1181 stdout, stderr = proc.communicate(b'q\n')
1182 self.assertNotIn("NameError: name 'invalid' is not defined",
1183 stdout.decode())
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001184
1185 finally:
Victor Stinner11ea0442016-09-09 22:56:54 -07001186 if save_home is not None:
1187 os.environ['HOME'] = save_home
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001188
Barry Warsaw35425d62017-09-22 12:29:42 -04001189 def test_header(self):
1190 stdout = StringIO()
1191 header = 'Nobody expects... blah, blah, blah'
1192 with ExitStack() as resources:
1193 resources.enter_context(patch('sys.stdout', stdout))
1194 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))
1195 pdb.set_trace(header=header)
1196 self.assertEqual(stdout.getvalue(), header + '\n')
1197
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001198 def test_run_module(self):
1199 script = """print("SUCCESS")"""
1200 commands = """
1201 continue
1202 quit
1203 """
1204 stdout, stderr = self.run_pdb_module(script, commands)
1205 self.assertTrue(any("SUCCESS" in l for l in stdout.splitlines()), stdout)
1206
1207 def test_module_is_run_as_main(self):
1208 script = """
1209 if __name__ == '__main__':
1210 print("SUCCESS")
1211 """
1212 commands = """
1213 continue
1214 quit
1215 """
1216 stdout, stderr = self.run_pdb_module(script, commands)
1217 self.assertTrue(any("SUCCESS" in l for l in stdout.splitlines()), stdout)
1218
1219 def test_breakpoint(self):
1220 script = """
1221 if __name__ == '__main__':
1222 pass
1223 print("SUCCESS")
1224 pass
1225 """
1226 commands = """
1227 b 3
1228 quit
1229 """
1230 stdout, stderr = self.run_pdb_module(script, commands)
1231 self.assertTrue(any("Breakpoint 1 at" in l for l in stdout.splitlines()), stdout)
1232 self.assertTrue(all("SUCCESS" not in l for l in stdout.splitlines()), stdout)
1233
1234 def test_run_pdb_with_pdb(self):
1235 commands = """
1236 c
1237 quit
1238 """
1239 stdout, stderr = self._run_pdb(["-m", "pdb"], commands)
Mario Corcherofcf8b4c2018-01-28 04:58:47 +00001240 self.assertIn(
1241 pdb._usage,
1242 stdout.replace('\r', '') # remove \r for windows
1243 )
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001244
1245 def test_module_without_a_main(self):
1246 module_name = 't_main'
1247 support.rmtree(module_name)
1248 init_file = module_name + '/__init__.py'
1249 os.mkdir(module_name)
1250 with open(init_file, 'w') as f:
1251 pass
1252 self.addCleanup(support.rmtree, module_name)
1253 stdout, stderr = self._run_pdb(['-m', module_name], "")
1254 self.assertIn("ImportError: No module named t_main.__main__",
1255 stdout.splitlines())
1256
1257 def test_blocks_at_first_code_line(self):
1258 script = """
1259 #This is a comment, on line 2
1260
1261 print("SUCCESS")
1262 """
1263 commands = """
1264 quit
1265 """
1266 stdout, stderr = self.run_pdb_module(script, commands)
1267 self.assertTrue(any("__main__.py(4)<module>()"
1268 in l for l in stdout.splitlines()), stdout)
1269
1270 def test_relative_imports(self):
1271 self.module_name = 't_main'
1272 support.rmtree(self.module_name)
1273 main_file = self.module_name + '/__main__.py'
1274 init_file = self.module_name + '/__init__.py'
1275 module_file = self.module_name + '/module.py'
1276 self.addCleanup(support.rmtree, self.module_name)
1277 os.mkdir(self.module_name)
1278 with open(init_file, 'w') as f:
1279 f.write(textwrap.dedent("""
1280 top_var = "VAR from top"
1281 """))
1282 with open(main_file, 'w') as f:
1283 f.write(textwrap.dedent("""
1284 from . import top_var
1285 from .module import var
1286 from . import module
1287 pass # We'll stop here and print the vars
1288 """))
1289 with open(module_file, 'w') as f:
1290 f.write(textwrap.dedent("""
1291 var = "VAR from module"
1292 var2 = "second var"
1293 """))
1294 commands = """
1295 b 5
1296 c
1297 p top_var
1298 p var
1299 p module.var2
1300 quit
1301 """
1302 stdout, _ = self._run_pdb(['-m', self.module_name], commands)
1303 self.assertTrue(any("VAR from module" in l for l in stdout.splitlines()))
1304 self.assertTrue(any("VAR from top" in l for l in stdout.splitlines()))
1305 self.assertTrue(any("second var" in l for l in stdout.splitlines()))
Georg Brandl6cccb862010-07-30 14:16:43 +00001306
1307
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001308def load_tests(*args):
Georg Brandl243ad662009-05-05 09:00:19 +00001309 from test import test_pdb
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001310 suites = [
1311 unittest.makeSuite(PdbTestCase),
1312 doctest.DocTestSuite(test_pdb)
1313 ]
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001314 return unittest.TestSuite(suites)
Georg Brandl243ad662009-05-05 09:00:19 +00001315
1316
1317if __name__ == '__main__':
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001318 unittest.main()