blob: 71d8203fc56a0a42eef000c78a9c10da5847e78d [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
730def test_pdb_return_command_for_generator():
731 """Testing no unwindng stack on yield for generators
732 for "return" command
733
734 >>> def test_gen():
735 ... yield 0
736 ... return 1
737 ... yield 2
738
739 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700740 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800741 ... it = test_gen()
742 ... try:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300743 ... if next(it) != 0:
744 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800745 ... next(it)
746 ... except StopIteration as ex:
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300747 ... if ex.value != 1:
748 ... raise AssertionError
Guido van Rossum8820c232013-11-21 11:30:06 -0800749 ... print("finished")
750
751 >>> with PdbTestInput(['step',
752 ... 'step',
753 ... 'step',
754 ... 'return',
755 ... 'step',
756 ... 'step',
757 ... 'continue']):
758 ... test_function()
759 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(3)test_function()
760 -> it = test_gen()
761 (Pdb) step
762 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(4)test_function()
763 -> try:
764 (Pdb) step
765 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(5)test_function()
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300766 -> if next(it) != 0:
Guido van Rossum8820c232013-11-21 11:30:06 -0800767 (Pdb) step
768 --Call--
769 > <doctest test.test_pdb.test_pdb_return_command_for_generator[0]>(1)test_gen()
770 -> def test_gen():
771 (Pdb) return
772 StopIteration: 1
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300773 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(7)test_function()
Guido van Rossum8820c232013-11-21 11:30:06 -0800774 -> next(it)
775 (Pdb) step
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300776 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(8)test_function()
Guido van Rossum8820c232013-11-21 11:30:06 -0800777 -> except StopIteration as ex:
778 (Pdb) step
Serhiy Storchakaa16de5d2015-04-01 16:58:19 +0300779 > <doctest test.test_pdb.test_pdb_return_command_for_generator[1]>(9)test_function()
780 -> if ex.value != 1:
Guido van Rossum8820c232013-11-21 11:30:06 -0800781 (Pdb) continue
782 finished
783 """
784
785def test_pdb_until_command_for_generator():
786 """Testing no unwindng stack on yield for generators
787 for "until" command if target breakpoing is not reached
788
789 >>> def test_gen():
790 ... yield 0
791 ... yield 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 ... for i in test_gen():
797 ... print(i)
798 ... print("finished")
799
800 >>> with PdbTestInput(['step',
801 ... 'until 4',
802 ... 'step',
803 ... 'step',
804 ... 'continue']):
805 ... test_function()
806 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(3)test_function()
807 -> for i in test_gen():
808 (Pdb) step
809 --Call--
810 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(1)test_gen()
811 -> def test_gen():
812 (Pdb) until 4
813 0
814 1
815 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()
816 -> yield 2
817 (Pdb) step
818 --Return--
819 > <doctest test.test_pdb.test_pdb_until_command_for_generator[0]>(4)test_gen()->2
820 -> yield 2
821 (Pdb) step
822 > <doctest test.test_pdb.test_pdb_until_command_for_generator[1]>(4)test_function()
823 -> print(i)
824 (Pdb) continue
825 2
826 finished
827 """
828
829def test_pdb_next_command_in_generator_for_loop():
Martin Panter46f50722016-05-26 05:35:26 +0000830 """The next command on returning from a generator controlled by a for loop.
Guido van Rossum8820c232013-11-21 11:30:06 -0800831
832 >>> def test_gen():
833 ... yield 0
834 ... return 1
835
836 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700837 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800838 ... for i in test_gen():
839 ... print('value', i)
840 ... x = 123
841
842 >>> with PdbTestInput(['break test_gen',
843 ... 'continue',
844 ... 'next',
845 ... 'next',
846 ... 'next',
847 ... 'continue']):
848 ... test_function()
849 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
850 -> for i in test_gen():
851 (Pdb) break test_gen
852 Breakpoint 6 at <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>:1
853 (Pdb) continue
854 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(2)test_gen()
855 -> yield 0
856 (Pdb) next
857 value 0
858 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[0]>(3)test_gen()
859 -> return 1
860 (Pdb) next
861 Internal StopIteration: 1
862 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(3)test_function()
863 -> for i in test_gen():
864 (Pdb) next
865 > <doctest test.test_pdb.test_pdb_next_command_in_generator_for_loop[1]>(5)test_function()
866 -> x = 123
867 (Pdb) continue
868 """
869
870def test_pdb_next_command_subiterator():
871 """The next command in a generator with a subiterator.
872
873 >>> def test_subgenerator():
874 ... yield 0
875 ... return 1
876
877 >>> def test_gen():
878 ... x = yield from test_subgenerator()
879 ... return x
880
881 >>> def test_function():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700882 ... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
Guido van Rossum8820c232013-11-21 11:30:06 -0800883 ... for i in test_gen():
884 ... print('value', i)
885 ... x = 123
886
887 >>> with PdbTestInput(['step',
888 ... 'step',
889 ... 'next',
890 ... 'next',
891 ... 'next',
892 ... 'continue']):
893 ... test_function()
894 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
895 -> for i in test_gen():
896 (Pdb) step
897 --Call--
898 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(1)test_gen()
899 -> def test_gen():
900 (Pdb) step
901 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(2)test_gen()
902 -> x = yield from test_subgenerator()
903 (Pdb) next
904 value 0
905 > <doctest test.test_pdb.test_pdb_next_command_subiterator[1]>(3)test_gen()
906 -> return x
907 (Pdb) next
908 Internal StopIteration: 1
909 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(3)test_function()
910 -> for i in test_gen():
911 (Pdb) next
912 > <doctest test.test_pdb.test_pdb_next_command_subiterator[2]>(5)test_function()
913 -> x = 123
914 (Pdb) continue
915 """
916
Xavier de Gaye10e54ae2016-10-12 20:13:24 +0200917def test_pdb_issue_20766():
918 """Test for reference leaks when the SIGINT handler is set.
919
920 >>> def test_function():
921 ... i = 1
922 ... while i <= 2:
923 ... sess = pdb.Pdb()
924 ... sess.set_trace(sys._getframe())
925 ... print('pdb %d: %s' % (i, sess._previous_sigint_handler))
926 ... i += 1
927
928 >>> with PdbTestInput(['continue',
929 ... 'continue']):
930 ... test_function()
931 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(6)test_function()
932 -> print('pdb %d: %s' % (i, sess._previous_sigint_handler))
933 (Pdb) continue
934 pdb 1: <built-in function default_int_handler>
935 > <doctest test.test_pdb.test_pdb_issue_20766[0]>(5)test_function()
936 -> sess.set_trace(sys._getframe())
937 (Pdb) continue
938 pdb 2: <built-in function default_int_handler>
939 """
Georg Brandl46b9afc2010-07-30 09:14:20 +0000940
Georg Brandl6cccb862010-07-30 14:16:43 +0000941class PdbTestCase(unittest.TestCase):
942
Senthil Kumaran42d70812012-05-01 10:07:49 +0800943 def run_pdb(self, script, commands):
944 """Run 'script' lines with pdb and the pdb 'commands'."""
945 filename = 'main.py'
946 with open(filename, 'w') as f:
947 f.write(textwrap.dedent(script))
Georg Brandl4bde9ca2012-05-01 09:21:16 +0200948 self.addCleanup(support.unlink, filename)
Victor Stinner047b7ae2014-10-05 17:37:41 +0200949 self.addCleanup(support.rmtree, '__pycache__')
Senthil Kumaran42d70812012-05-01 10:07:49 +0800950 cmd = [sys.executable, '-m', 'pdb', filename]
951 stdout = stderr = None
952 with subprocess.Popen(cmd, stdout=subprocess.PIPE,
953 stdin=subprocess.PIPE,
954 stderr=subprocess.STDOUT,
955 ) as proc:
956 stdout, stderr = proc.communicate(str.encode(commands))
957 stdout = stdout and bytes.decode(stdout)
958 stderr = stderr and bytes.decode(stderr)
959 return stdout, stderr
960
Georg Brandl6e220552013-10-13 20:51:47 +0200961 def _assert_find_function(self, file_content, func_name, expected):
962 file_content = textwrap.dedent(file_content)
963
964 with open(support.TESTFN, 'w') as f:
965 f.write(file_content)
966
967 expected = None if not expected else (
968 expected[0], support.TESTFN, expected[1])
969 self.assertEqual(
970 expected, pdb.find_function(func_name, support.TESTFN))
971
972 def test_find_function_empty_file(self):
973 self._assert_find_function('', 'foo', None)
974
975 def test_find_function_found(self):
976 self._assert_find_function(
977 """\
978 def foo():
979 pass
980
981 def bar():
982 pass
983
984 def quux():
985 pass
986 """,
987 'bar',
988 ('bar', 4),
989 )
990
Georg Brandl6cccb862010-07-30 14:16:43 +0000991 def test_issue7964(self):
992 # open the file as binary so we can force \r\n newline
993 with open(support.TESTFN, 'wb') as f:
994 f.write(b'print("testing my pdb")\r\n')
995 cmd = [sys.executable, '-m', 'pdb', support.TESTFN]
996 proc = subprocess.Popen(cmd,
997 stdout=subprocess.PIPE,
998 stdin=subprocess.PIPE,
999 stderr=subprocess.STDOUT,
1000 )
Brian Curtin994ad6c2010-11-05 15:38:47 +00001001 self.addCleanup(proc.stdout.close)
Georg Brandl6cccb862010-07-30 14:16:43 +00001002 stdout, stderr = proc.communicate(b'quit\n')
1003 self.assertNotIn(b'SyntaxError', stdout,
1004 "Got a syntax error running test script under PDB")
1005
Senthil Kumaran42d70812012-05-01 10:07:49 +08001006 def test_issue13183(self):
1007 script = """
1008 from bar import bar
1009
1010 def foo():
1011 bar()
1012
1013 def nope():
1014 pass
1015
1016 def foobar():
1017 foo()
1018 nope()
1019
1020 foobar()
1021 """
1022 commands = """
1023 from bar import bar
1024 break bar
1025 continue
1026 step
1027 step
1028 quit
1029 """
1030 bar = """
1031 def bar():
Senthil Kumarancb172042012-05-02 08:00:22 +08001032 pass
Senthil Kumaran42d70812012-05-01 10:07:49 +08001033 """
1034 with open('bar.py', 'w') as f:
1035 f.write(textwrap.dedent(bar))
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001036 self.addCleanup(support.unlink, 'bar.py')
Senthil Kumaran42d70812012-05-01 10:07:49 +08001037 stdout, stderr = self.run_pdb(script, commands)
Georg Brandl4bde9ca2012-05-01 09:21:16 +02001038 self.assertTrue(
1039 any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
1040 'Fail to step into the caller after a return')
Senthil Kumaran42d70812012-05-01 10:07:49 +08001041
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001042 def test_issue13210(self):
1043 # invoking "continue" on a non-main thread triggered an exception
1044 # inside signal.signal
1045
1046 with open(support.TESTFN, 'wb') as f:
1047 f.write(textwrap.dedent("""
1048 import threading
1049 import pdb
1050
1051 def start_pdb():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001052 pdb.Pdb(readrc=False).set_trace()
Andrew Svetlov539ee5d2012-12-04 21:08:28 +02001053 x = 1
1054 y = 1
1055
1056 t = threading.Thread(target=start_pdb)
1057 t.start()""").encode('ascii'))
1058 cmd = [sys.executable, '-u', support.TESTFN]
1059 proc = subprocess.Popen(cmd,
1060 stdout=subprocess.PIPE,
1061 stdin=subprocess.PIPE,
1062 stderr=subprocess.STDOUT,
1063 )
1064 self.addCleanup(proc.stdout.close)
1065 stdout, stderr = proc.communicate(b'cont\n')
1066 self.assertNotIn('Error', stdout.decode(),
1067 "Got an error running test script under PDB")
1068
Terry Jan Reedyca3f4352015-09-05 19:13:26 -04001069 def test_issue16180(self):
1070 # A syntax error in the debuggee.
1071 script = "def f: pass\n"
1072 commands = ''
1073 expected = "SyntaxError:"
1074 stdout, stderr = self.run_pdb(script, commands)
1075 self.assertIn(expected, stdout,
1076 '\n\nExpected:\n{}\nGot:\n{}\n'
1077 'Fail to handle a syntax error in the debuggee.'
1078 .format(expected, stdout))
1079
1080
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001081 def test_readrc_kwarg(self):
Victor Stinner11ea0442016-09-09 22:56:54 -07001082 script = textwrap.dedent("""
1083 import pdb; pdb.Pdb(readrc=False).set_trace()
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001084
Victor Stinner11ea0442016-09-09 22:56:54 -07001085 print('hello')
1086 """)
Victor Stinner11ea0442016-09-09 22:56:54 -07001087
Victor Stinnerbc626262016-09-09 23:22:09 -07001088 save_home = os.environ.pop('HOME', None)
1089 try:
1090 with support.temp_cwd():
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001091 with open('.pdbrc', 'w') as f:
1092 f.write("invalid\n")
1093
1094 with open('main.py', 'w') as f:
1095 f.write(script)
1096
1097 cmd = [sys.executable, 'main.py']
1098 proc = subprocess.Popen(
1099 cmd,
1100 stdout=subprocess.PIPE,
1101 stdin=subprocess.PIPE,
1102 stderr=subprocess.PIPE,
1103 )
Victor Stinnerbc626262016-09-09 23:22:09 -07001104 with proc:
1105 stdout, stderr = proc.communicate(b'q\n')
1106 self.assertNotIn("NameError: name 'invalid' is not defined",
1107 stdout.decode())
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001108
1109 finally:
Victor Stinner11ea0442016-09-09 22:56:54 -07001110 if save_home is not None:
1111 os.environ['HOME'] = save_home
Łukasz Langa2eb6eca2016-09-09 22:21:17 -07001112
Barry Warsaw35425d62017-09-22 12:29:42 -04001113 def test_header(self):
1114 stdout = StringIO()
1115 header = 'Nobody expects... blah, blah, blah'
1116 with ExitStack() as resources:
1117 resources.enter_context(patch('sys.stdout', stdout))
1118 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))
1119 pdb.set_trace(header=header)
1120 self.assertEqual(stdout.getvalue(), header + '\n')
1121
Georg Brandl6cccb862010-07-30 14:16:43 +00001122 def tearDown(self):
1123 support.unlink(support.TESTFN)
1124
1125
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001126def load_tests(*args):
Georg Brandl243ad662009-05-05 09:00:19 +00001127 from test import test_pdb
Xavier de Gaye02e247f2016-10-02 11:42:22 +02001128 suites = [unittest.makeSuite(PdbTestCase), doctest.DocTestSuite(test_pdb)]
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001129 return unittest.TestSuite(suites)
Georg Brandl243ad662009-05-05 09:00:19 +00001130
1131
1132if __name__ == '__main__':
Andrew Svetlovf0efea02013-03-18 10:09:50 -07001133 unittest.main()