]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-cmd.exp
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-cmd.exp
CommitLineData
3666a048 1# Copyright (C) 2009-2021 Free Software Foundation, Inc.
6db7e351
TJB
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# This file is part of the GDB testsuite. It tests the mechanism
17# for defining new GDB commands in Python.
18
f39a75d0 19load_lib gdb-python.exp
6db7e351 20
92e32e33 21standard_testfile
6db7e351 22
5b362f04 23if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
92e32e33
PM
24 return -1
25}
6db7e351 26
f6bbabf0
PM
27# Skip all tests if Python scripting is not enabled.
28if { [skip_python_tests] } { continue }
6db7e351 29
92e32e33 30if ![runto_main] then {
bc6c7af4 31 fail "cannot run to main."
92e32e33
PM
32 return 0
33}
34
6db7e351
TJB
35# Test a simple command.
36
2a17c803 37gdb_test_multiline "input simple command" \
6db7e351
TJB
38 "python" "" \
39 "class test_cmd (gdb.Command):" "" \
40 " def __init__ (self):" "" \
41 " super (test_cmd, self).__init__ (\"test_cmd\", gdb.COMMAND_OBSCURE)" "" \
42 " def invoke (self, arg, from_tty):" "" \
9325cb04 43 " print (\"test_cmd output, arg = %s\" % arg)" "" \
6db7e351
TJB
44 "test_cmd ()" "" \
45 "end" ""
46
47gdb_test "test_cmd ugh" "test_cmd output, arg = ugh" "call simple command"
48
49# Test a prefix command, and a subcommand within it.
50
2a17c803 51gdb_test_multiline "input prefix command" \
6db7e351
TJB
52 "python" "" \
53 "class prefix_cmd (gdb.Command):" "" \
54 " def __init__ (self):" "" \
55 " super (prefix_cmd, self).__init__ (\"prefix_cmd\", gdb.COMMAND_OBSCURE, gdb.COMPLETE_NONE, True)" "" \
56 " def invoke (self, arg, from_tty):" "" \
9325cb04 57 " print (\"prefix_cmd output, arg = %s\" % arg)" "" \
6db7e351
TJB
58 "prefix_cmd ()" "" \
59 "end" ""
60
61gdb_test "prefix_cmd ugh" "prefix_cmd output, arg = ugh" "call prefix command"
62
2a17c803 63gdb_test_multiline "input subcommand" \
6db7e351
TJB
64 "python" "" \
65 "class subcmd (gdb.Command):" "" \
66 " def __init__ (self):" "" \
67 " super (subcmd, self).__init__ (\"prefix_cmd subcmd\", gdb.COMMAND_OBSCURE)" "" \
68 " def invoke (self, arg, from_tty):" "" \
9325cb04 69 " print (\"subcmd output, arg = %s\" % arg)" "" \
6db7e351
TJB
70 "subcmd ()" "" \
71 "end" ""
72
73gdb_test "prefix_cmd subcmd ugh" "subcmd output, arg = ugh" "call subcmd"
74
cc924cad
TJB
75# Test prefix command using keyword arguments.
76
2a17c803 77gdb_test_multiline "input prefix command, keyword arguments" \
cc924cad
TJB
78 "python" "" \
79 "class prefix_cmd2 (gdb.Command):" "" \
80 " def __init__ (self):" "" \
81 " super (prefix_cmd2, self).__init__ (\"prefix_cmd2\", gdb.COMMAND_OBSCURE, prefix = True, completer_class = gdb.COMPLETE_FILENAME)" "" \
82 " def invoke (self, arg, from_tty):" "" \
9325cb04 83 " print (\"prefix_cmd2 output, arg = %s\" % arg)" "" \
cc924cad
TJB
84 "prefix_cmd2 ()" "" \
85 "end" ""
86
87gdb_test "prefix_cmd2 argh" "prefix_cmd2 output, arg = argh" "call prefix command, keyword arguments"
88
2a17c803 89gdb_test_multiline "input subcommand under prefix_cmd2" \
cc924cad
TJB
90 "python" "" \
91 "class subcmd (gdb.Command):" "" \
92 " def __init__ (self):" "" \
93 " super (subcmd, self).__init__ (\"prefix_cmd2 subcmd\", gdb.COMMAND_OBSCURE)" "" \
94 " def invoke (self, arg, from_tty):" "" \
9325cb04 95 " print (\"subcmd output, arg = %s\" % arg)" "" \
cc924cad
TJB
96 "subcmd ()" "" \
97 "end" ""
98
99gdb_test "prefix_cmd2 subcmd ugh" "subcmd output, arg = ugh" "call subcmd under prefix_cmd2"
100
6db7e351
TJB
101# Test a subcommand in an existing GDB prefix.
102
2a17c803 103gdb_test_multiline "input new subcommand" \
6db7e351
TJB
104 "python" "" \
105 "class newsubcmd (gdb.Command):" "" \
106 " def __init__ (self):" "" \
107 " super (newsubcmd, self).__init__ (\"info newsubcmd\", gdb.COMMAND_OBSCURE)" "" \
108 " def invoke (self, arg, from_tty):" "" \
9325cb04 109 " print (\"newsubcmd output, arg = %s\" % arg)" "" \
6db7e351
TJB
110 "newsubcmd ()" "" \
111 "end" ""
112
113gdb_test "info newsubcmd ugh" "newsubcmd output, arg = ugh" "call newsubcmd"
07ca107c
DE
114
115# Test a command that throws gdb.GdbError.
116
2a17c803 117gdb_test_multiline "input command to throw error" \
07ca107c
DE
118 "python" "" \
119 "class test_error_cmd (gdb.Command):" "" \
120 " def __init__ (self):" "" \
121 " super (test_error_cmd, self).__init__ (\"test_error_cmd\", gdb.COMMAND_OBSCURE)" "" \
122 " def invoke (self, arg, from_tty):" "" \
123 " raise gdb.GdbError ('you lose!')" "" \
124 "test_error_cmd ()" "" \
125 "end" ""
126
127gdb_test "test_error_cmd ugh" "you lose!" "call error command"
128
129# Test gdb.string_to_argv.
130
9325cb04 131gdb_test "python print (gdb.string_to_argv (\"1 2 3\"))" \
07ca107c
DE
132 {\['1', '2', '3'\]} \
133 "string_to_argv (\"1 2 3\")"
134
9325cb04 135gdb_test "python print (gdb.string_to_argv (\"'1 2' 3\"))" \
07ca107c
DE
136 {\['1 2', '3'\]} \
137 "string_to_argv (\"'1 2' 3\")"
138
9325cb04 139gdb_test "python print (gdb.string_to_argv ('\"1 2\" 3'))" \
07ca107c
DE
140 {\['1 2', '3'\]} \
141 "string_to_argv ('\"1 2\" 3')"
142
9325cb04 143gdb_test "python print (gdb.string_to_argv ('1\\ 2 3'))" \
07ca107c
DE
144 {\['1 2', '3'\]} \
145 "string_to_argv ('1\\ 2 3')"
7d74f244
DE
146
147# Test user-defined python commands.
2a17c803 148gdb_test_multiline "input simple user-defined command" \
7d74f244
DE
149 "python" "" \
150 "class test_help (gdb.Command):" "" \
151 " \"\"\"Docstring\"\"\"" "" \
152 " def __init__ (self):" "" \
153 " super (test_help, self).__init__ (\"test_help\", gdb.COMMAND_USER)" "" \
154 " def invoke (self, arg, from_tty):" "" \
9325cb04 155 " print (\"test_cmd output, arg = %s\" % arg)" "" \
7d74f244
DE
156 "test_help ()" "" \
157 "end" ""
158
159gdb_test "test_help ugh" "test_cmd output, arg = ugh" "call simple user-defined command"
160
161# Make sure the command shows up in `help user-defined`.
206584bd 162test_user_defined_class_help {"test_help -- Docstring[\r\n]"}
92e32e33 163
a9f116cb
GKB
164# Make sure the command does not show up in `show user`.
165gdb_test "show user test_help" "Not a user command\." \
166 "don't show user-defined python command in `show user command`"
167
92e32e33 168# Test expression completion on fields
2a17c803 169gdb_test_multiline "expression completion command" \
92e32e33
PM
170 "python" "" \
171 "class expr_test (gdb.Command):" "" \
172 " def __init__ (self):" "" \
173 " super (expr_test, self).__init__ (\"expr_test\", gdb.COMMAND_USER, gdb.COMPLETE_EXPRESSION)" "" \
174 " def invoke (self, arg, from_tty):" "" \
175 " print (\"invoked on = %s\" % arg)" "" \
176 "expr_test ()" "" \
177 "end" ""
178
179
180gdb_test "complete expr_test bar\." \
181 "expr_test bar\.bc.*expr_test bar\.ij.*" \
bb95117e 182 "test completion through complete command"
92e32e33 183
51ed89aa
SDJ
184# Test that the "python" command is correctly recognized as
185# inline/multi-line when entering a sequence of commands.
186#
187# This proc tests PR cli/21688. The PR is not language-specific, but
188# the easiest way is just to test with Python.
189proc test_python_inline_or_multiline { } {
dc4bde35 190 global gdb_prompt
b04480b1 191 set end "\r\n$gdb_prompt $"
dc4bde35 192
b04480b1
AH
193 set define_cmd_not_inline [ list \
194 [ list "if 1" " >$" "multi-line if 1" ] \
195 [ list "python" " >$" "multi-line python command" ] \
196 [ list "print ('hello')" " >$" "multi-line print" ] \
197 [ list "end" " >$" "multi-line first end" ] \
198 [ list "end" "hello$end" "multi-line last end" ] ]
51ed89aa 199
dc4bde35 200 # This also tests trailing whitespace on the command.
b04480b1
AH
201 set define_cmd_alias_not_inline [ list \
202 [ list "if 1" " >$" "multi-line if 1 alias" ] \
203 [ list "py " " >$" "multi-line python command alias" ] \
204 [ list "print ('hello')" " >$" "multi-line print alias" ] \
205 [ list "end" " >$" "multi-line first end alias" ] \
206 [ list "end" "hello$end" "multi-line last end alias" ] ]
207
208 set define_cmd_alias_foo_not_inline [ list \
209 [ list "alias foo=python" "$end" "multi-line alias foo" ] \
210 [ list "if 1" " >$" "multi-line if 1 alias foo" ] \
211 [ list "foo " " >$" "multi-line python command alias foo" ] \
212 [ list "print ('hello')" " >$" "multi-line print alias foo" ] \
213 [ list "end" " >$" "multi-line first end alias foo" ] \
214 [ list "end" "hello$end" "multi-line last end alias foo" ] ]
215
216 set define_cmd_inline [ list \
217 [ list "if 1" " >$" "inline if 1" ] \
218 [ list "python print ('hello')" " >$" "inline python command" ] \
219 [ list "end" "hello$end" "inline end" ] ]
220
221 set define_cmd_alias_inline [ list \
222 [ list "if 1" " >$" "inline if 1 alias" ] \
223 [ list "py print ('hello')" " >$" "inline python command alias" ] \
224 [ list "end" "hello$end" "inline end alias" ] ]
225
226 set define_cmd_alias_foo_inline [ list \
227 [ list "if 1" " >$" "inline if 1 alias foo" ] \
228 [ list "foo print ('hello')" " >$" "inline python command alias foo" ] \
229 [ list "end" "hello$end" "inline end alias foo" ] ]
dc4bde35
SDJ
230
231 foreach t [list $define_cmd_not_inline \
232 $define_cmd_alias_not_inline \
233 $define_cmd_alias_foo_not_inline \
234 $define_cmd_inline \
235 $define_cmd_alias_inline \
236 $define_cmd_alias_foo_inline] {
51ed89aa
SDJ
237 foreach l $t {
238 lassign $l command regex testmsg
239 gdb_test_multiple "$command" "$testmsg" {
240 -re "$regex" {
241 pass "$testmsg"
242 }
243 }
244 }
245 }
246}
247
248test_python_inline_or_multiline
249
0d4d0e77
YQ
250if { [readline_is_used] } {
251 set test "complete 'expr_test bar.i'"
252 send_gdb "expr_test bar\.i\t\t"
253 gdb_test_multiple "" "$test" {
254 -re "expr_test bar\.ij \\\x07$" {
255 send_gdb "\n"
256 gdb_test_multiple "" $test {
257 -re "invoked on = bar.ij.*$gdb_prompt $" {
258 pass "$test"
259 }
92e32e33
PM
260 }
261 }
262 }
263}
bc543c90
TT
264
265
266# Test that interrupting pagination throws a gdb quit.
267gdb_test_no_output "set height 10"
268
2a17c803 269gdb_test_multiline "input multi-line-output command" \
bc543c90
TT
270 "python" "" \
271 "class test_mline (gdb.Command):" "" \
272 " \"\"\"Docstring\"\"\"" "" \
273 " def __init__ (self):" "" \
274 " super (test_mline, self).__init__ (\"test_multiline\", gdb.COMMAND_USER)" "" \
275 " def invoke (self, arg, from_tty):" "" \
276 " for f in range(20):" "" \
277 " print (\"test_multiline output\")" "" \
278 "test_mline ()" "" \
279 "end" ""
280
281set test "verify pagination from test_multiline"
282gdb_test_multiple "test_multiline" $test {
283 -re "--Type <RET>" {
284 exp_continue
285 }
286 -re " for more, q to quit" {
287 exp_continue
288 }
289 -re ", c to continue without paging--$" {
290 pass $test
291 }
292}
293
294send_gdb "q\n"
295set test "verify pagination from test_multiline: q"
296gdb_test_multiple "test_multiline" $test {
297 -re "Error occurred in Python" {
298 fail $test
299 }
300 -re "Quit" {
301 pass $test
302 }
303}