blob: 47a669f2cea25234e83b672d3561f39d3a6dae6f [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():
Pablo Galindoc7ab5812018-01-29 01:31:00 +0000745 ... loop = asyncio.new_event_loop()
Pablo Galindo46877022018-01-29 00:25:05 +0000746 ... 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
Pablo Galindoc7ab5812018-01-29 01:31:00 +0000840def test_pdb_return_command_for_coroutine():
841 """Testing no unwindng stack on yield for coroutines for "return" command
842
843 >>> import asyncio
844
845 >>> async def test_coro():
846 ... await asyncio.sleep(0)
847 ... await asyncio.sleep(0)
848 ... await asyncio.sleep(0)
849
850 >>> async def test_main():
851 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
852 ... await test_coro()
853
854 >>> def test_function():
855 ... loop = asyncio.new_event_loop()
856 ... loop.run_until_complete(test_main())
857 ... loop.close()
858 ... print("finished")
859
860 >>> with PdbTestInput(['step',
861 ... 'step',
862 ... 'next',
863 ... 'continue']):
864 ... test_function()
865 > <doctest test.test_pdb.test_pdb_return_command_for_coroutine[2]>(3)test_main()
866 -> await test_coro()
867 (Pdb) step
868 --Call--
869 > <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(1)test_coro()
870 -> async def test_coro():
871 (Pdb) step
872 > <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(2)test_coro()
873 -> await asyncio.sleep(0)
874 (Pdb) next
875 > <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(3)test_coro()
876 -> await asyncio.sleep(0)
877 (Pdb) continue
878 finished
879 """
880
Guido van Rossum8820c232013-11-21 11:30:06 -0800881def test_pdb_until_command_for_generator():
882 """Testing no unwindng stack on yield for generators
883 for "until" command if target breakpoing is not reached
884
885 >>> def test_gen():
886 ... yield 0
887 ... yield 1
888 ... yield 2
889
890 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700891 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800892 ... for i in test_gen():
893 ... print(i)
894 ... print("finished")
895
896 >>> with PdbTestInput(['step',
897 ... 'until 4',
898 ... 'step',
899 ... 'step',
900 ... 'continue']):
901 ... test_function()
902 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(3)test_function()
903 -> for i in test_gen():
904 (Pdb) step
905 --Call--
906 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(1)test_gen()
907 -> def test_gen():
908 (Pdb) until 4
909 0
910 1
911 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()
912 -> yield 2
913 (Pdb) step
914 --Return--
915 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()->2
916 -> yield 2
917 (Pdb) step
918 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(4)test_function()
919 -> print(i)
920 (Pdb) continue
921 2
922 finished
923 """
924
925def test_pdb_next_command_in_generator_for_loop():
Martin Panter46f50722016-05-26 05:35:26 +0000926 """The next command on returning from a generator controlled by a for loop.
Guido van Rossum8820c232013-11-21 11:30:06 -0800927
928 >>> def test_gen():
929 ... yield 0
930 ... return 1
931
932 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700933 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800934 ... for i in test_gen():
935 ... print('value', i)
936 ... x = 123
937
938 >>> with PdbTestInput(['break test_gen',
939 ... 'continue',
940 ... 'next',
941 ... 'next',
942 ... 'next',
943 ... 'continue']):
944 ... test_function()
945 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
946 -> for i in test_gen():
947 (Pdb) break test_gen
948 Breakpoint 6 at <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>:1
949 (Pdb) continue
950 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(2)test_gen()
951 -> yield 0
952 (Pdb) next
953 value 0
954 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(3)test_gen()
955 -> return 1
956 (Pdb) next
957 Internal StopIteration: 1
958 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
959 -> for i in test_gen():
960 (Pdb) next
961 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(5)test_function()
962 -> x = 123
963 (Pdb) continue
964 """
965
966def test_pdb_next_command_subiterator():
967 """The next command in a generator with a subiterator.
968
969 >>> def test_subgenerator():
970 ... yield 0
971 ... return 1
972
973 >>> def test_gen():
974 ... x = yield from test_subgenerator()
975 ... return x
976
977 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700978 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800979 ... for i in test_gen():
980 ... print('value', i)
981 ... x = 123
982
983 >>> with PdbTestInput(['step',
984 ... 'step',
985 ... 'next',
986 ... 'next',
987 ... 'next',
988 ... 'continue']):
989 ... test_function()
990 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
991 -> for i in test_gen():
992 (Pdb) step
993 --Call--
994 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(1)test_gen()
995 -> def test_gen():
996 (Pdb) step
997 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(2)test_gen()
998 -> x = yield from test_subgenerator()
999 (Pdb) next
1000 value 0
1001 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(3)test_gen()
1002 -> return x
1003 (Pdb) next
1004 Internal StopIteration: 1
1005 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
1006 -> for i in test_gen():
1007 (Pdb) next
1008 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(5)test_function()
1009 -> x = 123
1010 (Pdb) continue
1011 """
1012
Xavier de Gaye10e54ae2016-10-12 20:13:24 +02001013def test_pdb_issue_20766():
1014 """Test for reference leaks when the SIGINT handler is set.
1015
1016 >>> def test_function():
1017 ... i = 1
1018 ... while i <= 2:
1019 ... sess = pdb.Pdb()
1020 ... sess.set_trace(sys._getframe())
1021 ... print('pdb %d: %s' % (i, sess._previous_sigint_handler))
1022 ... i += 1
1023
1024 >>> with PdbTestInput(['continue',
1025 ... 'continue']):
1026 ... test_function()
1027 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(6)test_function()
1028 -> print('pdb %d: %s' % (i, sess._previous_sigint_handler))
1029 (Pdb) continue
1030 pdb 1: <built-in function default_int_handler>
1031 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(5)test_function()
1032 -> sess.set_trace(sys._getframe())
1033 (Pdb) continue
1034 pdb 2: <built-in function default_int_handler>
1035 """
Georg Brandl46b9afc2010-07-30 09:14:20 +00001036
Georg Brandl6cccb862010-07-30 14:16:43 +00001037
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001038class PdbTestCase(unittest.TestCase):
1039 def tearDown(self):
1040 support.unlink(support.TESTFN)
1041
1042 def _run_pdb(self, pdb_args, commands):
1043 self.addCleanup(support.rmtree, '__pycache__')
1044 cmd = [sys.executable, '-m', 'pdb'] + pdb_args
1045 with subprocess.Popen(
1046 cmd,
1047 stdout=subprocess.PIPE,
1048 stdin=subprocess.PIPE,
1049 stderr=subprocess.STDOUT,
1050 ) as proc:
1051 stdout, stderr = proc.communicate(str.encode(commands))
1052 stdout = stdout and bytes.decode(stdout)
1053 stderr = stderr and bytes.decode(stderr)
1054 return stdout, stderr
1055
1056 def run_pdb_script(self, script, commands):
Senthil Kumaran42d70812012-05-01 10:07:49 +08001057 """Run 'script' lines with pdb and the pdb 'commands'."""
1058 filename = 'main.py'
1059 with open(filename, 'w') as f:
1060 f.write(textwrap.dedent(script))
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001061 self.addCleanup(support.unlink, filename)
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001062 return self._run_pdb([filename], commands)
1063
1064 def run_pdb_module(self, script, commands):
1065 """Runs the script code as part of a module"""
1066 self.module_name = 't_main'
1067 support.rmtree(self.module_name)
1068 main_file = self.module_name + '/__main__.py'
1069 init_file = self.module_name + '/__init__.py'
1070 os.mkdir(self.module_name)
1071 with open(init_file, 'w') as f:
1072 pass
1073 with open(main_file, 'w') as f:
1074 f.write(textwrap.dedent(script))
1075 self.addCleanup(support.rmtree, self.module_name)
1076 return self._run_pdb(['-m', self.module_name], commands)
Senthil Kumaran42d70812012-05-01 10:07:49 +08001077
Georg Brandl6e220552013-10-13 20:51:47 +02001078 def _assert_find_function(self, file_content, func_name, expected):
1079 file_content = textwrap.dedent(file_content)
1080
1081 with open(support.TESTFN, 'w') as f:
1082 f.write(file_content)
1083
1084 expected = None if not expected else (
1085 expected[0], support.TESTFN, expected[1])
1086 self.assertEqual(
1087 expected, pdb.find_function(func_name, support.TESTFN))
1088
1089 def test_find_function_empty_file(self):
1090 self._assert_find_function('', 'foo', None)
1091
1092 def test_find_function_found(self):
1093 self._assert_find_function(
1094 """\
1095 def foo():
1096 pass
1097
1098 def bar():
1099 pass
1100
1101 def quux():
1102 pass
1103 """,
1104 'bar',
1105 ('bar', 4),
1106 )
1107
Georg Brandl6cccb862010-07-30 14:16:43 +00001108 def test_issue7964(self):
1109 # open the file as binary so we can force \r\n newline
1110 with open(support.TESTFN, 'wb') as f:
1111 f.write(b'print("testing my pdb")\r\n')
1112 cmd = [sys.executable, '-m', 'pdb', support.TESTFN]
1113 proc = subprocess.Popen(cmd,
1114 stdout=subprocess.PIPE,
1115 stdin=subprocess.PIPE,
1116 stderr=subprocess.STDOUT,
1117 )
Brian Curtin994ad6c2010-11-05 15:38:47 +00001118 self.addCleanup(proc.stdout.close)
Georg Brandl6cccb862010-07-30 14:16:43 +00001119 stdout, stderr = proc.communicate(b'quit\n')
1120 self.assertNotIn(b'SyntaxError', stdout,
1121 "Got a syntax error running test script under PDB")
1122
Senthil Kumaran42d70812012-05-01 10:07:49 +08001123 def test_issue13183(self):
1124 script = """
1125 from bar import bar
1126
1127 def foo():
1128 bar()
1129
1130 def nope():
1131 pass
1132
1133 def foobar():
1134 foo()
1135 nope()
1136
1137 foobar()
1138 """
1139 commands = """
1140 from bar import bar
1141 break bar
1142 continue
1143 step
1144 step
1145 quit
1146 """
1147 bar = """
1148 def bar():
Senthil Kumarancb172042012-05-02 08:00:22 +08001149 pass
Senthil Kumaran42d70812012-05-01 10:07:49 +08001150 """
1151 with open('bar.py', 'w') as f:
1152 f.write(textwrap.dedent(bar))
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001153 self.addCleanup(support.unlink, 'bar.py')
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001154 stdout, stderr = self.run_pdb_script(script, commands)
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001155 self.assertTrue(
1156 any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
1157 'Fail to step into the caller after a return')
Senthil Kumaran42d70812012-05-01 10:07:49 +08001158
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001159 def test_issue13210(self):
1160 # invoking "continue" on a non-main thread triggered an exception
1161 # inside signal.signal
1162
1163 with open(support.TESTFN, 'wb') as f:
1164 f.write(textwrap.dedent("""
1165 import threading
1166 import pdb
1167
1168 def start_pdb():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001169 pdb.Pdb(readrc=False).set_trace()
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001170 x = 1
1171 y = 1
1172
1173 t = threading.Thread(target=start_pdb)
1174 t.start()""").encode('ascii'))
1175 cmd = [sys.executable, '-u', support.TESTFN]
1176 proc = subprocess.Popen(cmd,
1177 stdout=subprocess.PIPE,
1178 stdin=subprocess.PIPE,
1179 stderr=subprocess.STDOUT,
1180 )
1181 self.addCleanup(proc.stdout.close)
1182 stdout, stderr = proc.communicate(b'cont\n')
1183 self.assertNotIn('Error', stdout.decode(),
1184 "Got an error running test script under PDB")
1185
Terry Jan Reedyca3f4352015-09-05 19:13:26 -04001186 def test_issue16180(self):
1187 # A syntax error in the debuggee.
1188 script = "def f: pass\n"
1189 commands = ''
1190 expected = "SyntaxError:"
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001191 stdout, stderr = self.run_pdb_script(script, commands)
Terry Jan Reedyca3f4352015-09-05 19:13:26 -04001192 self.assertIn(expected, stdout,
1193 '\n\nExpected:\n{}\nGot:\n{}\n'
1194 'Fail to handle a syntax error in the debuggee.'
1195 .format(expected, stdout))
1196
1197
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001198 def test_readrc_kwarg(self):
Victor Stinner11ea0442016-09-09 22:56:54 -07001199 script = textwrap.dedent("""
1200 import pdb; pdb.Pdb(readrc=False).set_trace()
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001201
Victor Stinner11ea0442016-09-09 22:56:54 -07001202 print('hello')
1203 """)
Victor Stinner11ea0442016-09-09 22:56:54 -07001204
Victor Stinnerbc626262016-09-09 23:22:09 -07001205 save_home = os.environ.pop('HOME', None)
1206 try:
1207 with support.temp_cwd():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001208 with open('.pdbrc', 'w') as f:
1209 f.write("invalid\n")
1210
1211 with open('main.py', 'w') as f:
1212 f.write(script)
1213
1214 cmd = [sys.executable, 'main.py']
1215 proc = subprocess.Popen(
1216 cmd,
1217 stdout=subprocess.PIPE,
1218 stdin=subprocess.PIPE,
1219 stderr=subprocess.PIPE,
1220 )
Victor Stinnerbc626262016-09-09 23:22:09 -07001221 with proc:
1222 stdout, stderr = proc.communicate(b'q\n')
1223 self.assertNotIn("NameError: name 'invalid' is not defined",
1224 stdout.decode())
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001225
1226 finally:
Victor Stinner11ea0442016-09-09 22:56:54 -07001227 if save_home is not None:
1228 os.environ['HOME'] = save_home
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001229
Barry Warsaw35425d62017-09-22 12:29:42 -04001230 def test_header(self):
1231 stdout = StringIO()
1232 header = 'Nobody expects... blah, blah, blah'
1233 with ExitStack() as resources:
1234 resources.enter_context(patch('sys.stdout', stdout))
1235 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))
1236 pdb.set_trace(header=header)
1237 self.assertEqual(stdout.getvalue(), header + '\n')
1238
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001239 def test_run_module(self):
1240 script = """print("SUCCESS")"""
1241 commands = """
1242 continue
1243 quit
1244 """
1245 stdout, stderr = self.run_pdb_module(script, commands)
1246 self.assertTrue(any("SUCCESS" in l for l in stdout.splitlines()), stdout)
1247
1248 def test_module_is_run_as_main(self):
1249 script = """
1250 if __name__ == '__main__':
1251 print("SUCCESS")
1252 """
1253 commands = """
1254 continue
1255 quit
1256 """
1257 stdout, stderr = self.run_pdb_module(script, commands)
1258 self.assertTrue(any("SUCCESS" in l for l in stdout.splitlines()), stdout)
1259
1260 def test_breakpoint(self):
1261 script = """
1262 if __name__ == '__main__':
1263 pass
1264 print("SUCCESS")
1265 pass
1266 """
1267 commands = """
1268 b 3
1269 quit
1270 """
1271 stdout, stderr = self.run_pdb_module(script, commands)
1272 self.assertTrue(any("Breakpoint 1 at" in l for l in stdout.splitlines()), stdout)
1273 self.assertTrue(all("SUCCESS" not in l for l in stdout.splitlines()), stdout)
1274
1275 def test_run_pdb_with_pdb(self):
1276 commands = """
1277 c
1278 quit
1279 """
1280 stdout, stderr = self._run_pdb(["-m", "pdb"], commands)
Mario Corcherofcf8b4c2018-01-28 04:58:47 +00001281 self.assertIn(
1282 pdb._usage,
1283 stdout.replace('\r', '') # remove \r for windows
1284 )
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001285
1286 def test_module_without_a_main(self):
1287 module_name = 't_main'
1288 support.rmtree(module_name)
1289 init_file = module_name + '/__init__.py'
1290 os.mkdir(module_name)
1291 with open(init_file, 'w') as f:
1292 pass
1293 self.addCleanup(support.rmtree, module_name)
1294 stdout, stderr = self._run_pdb(['-m', module_name], "")
1295 self.assertIn("ImportError: No module named t_main.__main__",
1296 stdout.splitlines())
1297
1298 def test_blocks_at_first_code_line(self):
1299 script = """
1300 #This is a comment, on line 2
1301
1302 print("SUCCESS")
1303 """
1304 commands = """
1305 quit
1306 """
1307 stdout, stderr = self.run_pdb_module(script, commands)
1308 self.assertTrue(any("__main__.py(4)<module>()"
1309 in l for l in stdout.splitlines()), stdout)
1310
1311 def test_relative_imports(self):
1312 self.module_name = 't_main'
1313 support.rmtree(self.module_name)
1314 main_file = self.module_name + '/__main__.py'
1315 init_file = self.module_name + '/__init__.py'
1316 module_file = self.module_name + '/module.py'
1317 self.addCleanup(support.rmtree, self.module_name)
1318 os.mkdir(self.module_name)
1319 with open(init_file, 'w') as f:
1320 f.write(textwrap.dedent("""
1321 top_var = "VAR from top"
1322 """))
1323 with open(main_file, 'w') as f:
1324 f.write(textwrap.dedent("""
1325 from . import top_var
1326 from .module import var
1327 from . import module
1328 pass # We'll stop here and print the vars
1329 """))
1330 with open(module_file, 'w') as f:
1331 f.write(textwrap.dedent("""
1332 var = "VAR from module"
1333 var2 = "second var"
1334 """))
1335 commands = """
1336 b 5
1337 c
1338 p top_var
1339 p var
1340 p module.var2
1341 quit
1342 """
1343 stdout, _ = self._run_pdb(['-m', self.module_name], commands)
1344 self.assertTrue(any("VAR from module" in l for l in stdout.splitlines()))
1345 self.assertTrue(any("VAR from top" in l for l in stdout.splitlines()))
1346 self.assertTrue(any("second var" in l for l in stdout.splitlines()))
Georg Brandl6cccb862010-07-30 14:16:43 +00001347
1348
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001349def load_tests(*args):
Georg Brandl243ad662009-05-05 09:00:19 +00001350 from test import test_pdb
Mario Corchero9f1e5f12018-01-06 07:53:05 +00001351 suites = [
1352 unittest.makeSuite(PdbTestCase),
1353 doctest.DocTestSuite(test_pdb)
1354 ]
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001355 return unittest.TestSuite(suites)
Georg Brandl243ad662009-05-05 09:00:19 +00001356
1357
1358if __name__ == '__main__':
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001359 unittest.main()