Skip to content

Commit d8a7f3c

Browse files
committed
Add tests for locals in pdb
1 parent 528e9c6 commit d8a7f3c

File tree

1 file changed

+149
-0
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+149
-0
lines changed
Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3+
#
4+
# The Universal Permissive License (UPL), Version 1.0
5+
#
6+
# Subject to the condition set forth below, permission is hereby granted to any
7+
# person obtaining a copy of this software, associated documentation and/or
8+
# data (collectively the "Software"), free of charge and under any and all
9+
# copyright rights in the Software, and any and all patent rights owned or
10+
# freely licensable by each licensor hereunder covering either (i) the
11+
# unmodified Software as contributed to or provided by such licensor, or (ii)
12+
# the Larger Works (as defined below), to deal in both
13+
#
14+
# (a) the Software, and
15+
#
16+
# (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
17+
# one is included with the Software each a "Larger Work" to which the Software
18+
# is contributed by such licensors),
19+
#
20+
# without restriction, including without limitation the rights to copy, create
21+
# derivative works of, display, perform, and distribute the Software and make,
22+
# use, sell, offer for sale, import, export, have made, and have sold the
23+
# Software and the Larger Work(s), and to sublicense the foregoing rights on
24+
# either these or other terms.
25+
#
26+
# This license is subject to the following condition:
27+
#
28+
# The above copyright notice and either this complete permission notice or at a
29+
# minimum a reference to the UPL must be included in all copies or substantial
30+
# portions of the Software.
31+
#
32+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38+
# SOFTWARE.
39+
40+
from test.test_doctest import _FakeInput
41+
42+
import doctest
43+
import sys
44+
45+
46+
class PdbTestInput(object):
47+
"""Context manager that makes testing Pdb in doctests easier."""
48+
49+
def __init__(self, input):
50+
self.input = input
51+
52+
def __enter__(self):
53+
self.real_stdin = sys.stdin
54+
sys.stdin = _FakeInput(self.input)
55+
self.orig_trace = sys.gettrace() if hasattr(sys, 'gettrace') else None
56+
57+
def __exit__(self, *exc):
58+
sys.stdin = self.real_stdin
59+
if self.orig_trace:
60+
sys.settrace(self.orig_trace)
61+
62+
63+
def doctest_pdb_locals():
64+
"""
65+
Test that locals get synced after breakpoint
66+
67+
>>> def test_function():
68+
... a = 1
69+
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
70+
... a = 2
71+
72+
>>> with PdbTestInput([
73+
... 'p a',
74+
... 'next',
75+
... 'p a',
76+
... 'continue',
77+
... ]):
78+
... test_function()
79+
> <doctest tests.test_pdb.doctest_pdb_locals[0]>(4)test_function()
80+
-> a = 2
81+
(Pdb) p a
82+
1
83+
(Pdb) next
84+
--Return--
85+
> <doctest tests.test_pdb.doctest_pdb_locals[0]>(4)test_function()->None
86+
-> a = 2
87+
(Pdb) p a
88+
2
89+
(Pdb) continue
90+
"""
91+
92+
93+
def doctest_pdb_locals_generator():
94+
"""
95+
Test that locals get synced after breakpoint in a generator
96+
97+
>>> def test_function():
98+
... a = 1
99+
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
100+
... a = 2
101+
... yield
102+
103+
>>> with PdbTestInput([
104+
... 'p a',
105+
... 'next',
106+
... 'p a',
107+
... 'continue',
108+
... ]):
109+
... next(test_function())
110+
> <doctest tests.test_pdb.doctest_pdb_locals_generator[0]>(4)test_function()
111+
-> a = 2
112+
(Pdb) p a
113+
1
114+
(Pdb) next
115+
> <doctest tests.test_pdb.doctest_pdb_locals_generator[0]>(5)test_function()
116+
-> yield
117+
(Pdb) p a
118+
2
119+
(Pdb) continue
120+
"""
121+
122+
123+
def doctest_pdb_locals_sync_back():
124+
"""
125+
Test that locals set by debugger get propagated back into the frame.
126+
127+
>>> def test_function():
128+
... foo = 1
129+
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
130+
... return foo
131+
132+
>>> with PdbTestInput([
133+
... 'p foo',
134+
... 'foo = 5',
135+
... 'continue',
136+
... ]):
137+
... print(test_function())
138+
> <doctest tests.test_pdb.doctest_pdb_locals_sync_back[0]>(4)test_function()
139+
-> return foo
140+
(Pdb) p foo
141+
1
142+
(Pdb) foo = 5
143+
(Pdb) continue
144+
5
145+
"""
146+
147+
148+
def test_run_doctests():
149+
doctest.testmod(sys.modules[__name__], raise_on_error=True)

0 commit comments

Comments
 (0)