Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/tcl8.5.2/tests/subst.test @ 68

Last change on this file since 68 was 25, checked in by landauf, 16 years ago

added tcl to libs

File size: 8.9 KB
Line 
1# Commands covered:  subst
2#
3# This file contains a collection of tests for one or more of the Tcl
4# built-in commands.  Sourcing this file into Tcl runs the tests and
5# generates output for errors.  No output means no errors were found.
6#
7# Copyright (c) 1994 The Regents of the University of California.
8# Copyright (c) 1994 Sun Microsystems, Inc.
9# Copyright (c) 1998-2000 Ajuba Solutions.
10#
11# See the file "license.terms" for information on usage and redistribution
12# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
13#
14# RCS: @(#) $Id: subst.test,v 1.18 2004/10/26 21:52:41 dgp Exp $
15
16if {[lsearch [namespace children] ::tcltest] == -1} {
17    package require tcltest 2.1
18    namespace import -force ::tcltest::*
19}
20
21test subst-1.1 {basics} {
22    list [catch {subst} msg] $msg
23} {1 {wrong # args: should be "subst ?-nobackslashes? ?-nocommands? ?-novariables? string"}}
24test subst-1.2 {basics} {
25    list [catch {subst a b c} msg] $msg
26} {1 {bad switch "a": must be -nobackslashes, -nocommands, or -novariables}}
27
28test subst-2.1 {simple strings} {
29    subst {}
30} {}
31test subst-2.2 {simple strings} {
32    subst a
33} a
34test subst-2.3 {simple strings} {
35    subst abcdefg
36} abcdefg
37test subst-2.4 {simple strings} {
38    # Tcl Bug 685106
39    subst [bytestring bar\x00soom]
40} [bytestring bar\x00soom]
41
42test subst-3.1 {backslash substitutions} {
43    subst {\x\$x\[foo bar]\\}
44} "x\$x\[foo bar]\\"
45test subst-3.2 {backslash substitutions with utf chars} {
46    # 'j' is just a char that doesn't mean anything, and \344 is 'ä'
47    # that also doesn't mean anything, but is multi-byte in UTF-8.
48    list [subst \j] [subst \\j] [subst \\344] [subst \\\344]
49} "j j \344 \344"
50
51test subst-4.1 {variable substitutions} {
52    set a 44
53    subst {$a}
54} {44}
55test subst-4.2 {variable substitutions} {
56    set a 44
57    subst {x$a.y{$a}.z}
58} {x44.y{44}.z}
59test subst-4.3 {variable substitutions} {
60    catch {unset a}
61    set a(13) 82
62    set i 13
63    subst {x.$a($i)}
64} {x.82}
65catch {unset a}
66set long {This is a very long string, intentionally made so long that it
67        will overflow the static character size for dstrings, so that
68        additional memory will have to be allocated by subst.  That way,
69        if the subst procedure forgets to free up memory while returning
70        an error, there will be memory that isn't freed (this will be
71        detected when the tests are run under a checking memory allocator
72        such as Purify).}
73test subst-4.4 {variable substitutions} {
74    list [catch {subst {$long $a}} msg] $msg
75} {1 {can't read "a": no such variable}}
76
77test subst-5.1 {command substitutions} {
78    subst {[concat {}]}
79} {}
80test subst-5.2 {command substitutions} {
81    subst {[concat A test string]}
82} {A test string}
83test subst-5.3 {command substitutions} {
84    subst {x.[concat foo].y.[concat bar].z}
85} {x.foo.y.bar.z}
86test subst-5.4 {command substitutions} {
87    list [catch {subst {$long [set long] [bogus_command]}} msg] $msg
88} {1 {invalid command name "bogus_command"}}
89test subst-5.5 {command substitutions} {
90    set a 0
91    list [catch {subst {[set a 1}} msg] $a $msg
92} {1 0 {missing close-bracket}}
93test subst-5.6 {command substitutions} {
94    set a 0
95    list [catch {subst {0[set a 1}} msg] $a $msg
96} {1 0 {missing close-bracket}}
97test subst-5.7 {command substitutions} {
98    set a 0
99    list [catch {subst {0[set a 1; set a 2}} msg] $a $msg
100} {1 1 {missing close-bracket}}
101
102# repeat the tests above simulating cmd line input
103test subst-5.8 {command substitutions} {
104    set script {[subst {[set a 1}]}
105    list [catch {exec [info nameofexecutable] << $script} msg] $msg
106} {1 {missing close-bracket}}
107test subst-5.9 {command substitutions} {
108    set script {[subst {0[set a 1}]}
109    list [catch {exec [info nameofexecutable] << $script} msg] $msg
110} {1 {missing close-bracket}}
111test subst-5.10 {command substitutions} {
112    set script {[subst {0[set a 1; set a 2}]}
113    list [catch {exec [info nameofexecutable] << $script} msg] $msg
114} {1 {missing close-bracket}}
115
116test subst-6.1 {clear the result after command substitution} {
117    catch {unset a}
118    list [catch {subst {[concat foo] $a}} msg] $msg
119} {1 {can't read "a": no such variable}}
120
121test subst-7.1 {switches} {
122    list [catch {subst foo bar} msg] $msg
123} {1 {bad switch "foo": must be -nobackslashes, -nocommands, or -novariables}}
124test subst-7.2 {switches} {
125    list [catch {subst -no bar} msg] $msg
126} {1 {ambiguous switch "-no": must be -nobackslashes, -nocommands, or -novariables}}
127test subst-7.3 {switches} {
128    list [catch {subst -bogus bar} msg] $msg
129} {1 {bad switch "-bogus": must be -nobackslashes, -nocommands, or -novariables}}
130test subst-7.4 {switches} {
131    set x 123
132    subst -nobackslashes {abc $x [expr 1+2] \\\x41}
133} {abc 123 3 \\\x41}
134test subst-7.5 {switches} {
135    set x 123
136    subst -nocommands {abc $x [expr 1+2] \\\x41}
137} {abc 123 [expr 1+2] \A}
138test subst-7.6 {switches} {
139    set x 123
140    subst -novariables {abc $x [expr 1+2] \\\x41}
141} {abc $x 3 \A}
142test subst-7.7 {switches} {
143    set x 123
144    subst -nov -nob -noc {abc $x [expr 1+2] \\\x41}
145} {abc $x [expr 1+2] \\\x41}
146
147test subst-8.1 {return in a subst} {
148    subst {foo [return {x}; bogus code] bar}
149} {foo x bar}
150test subst-8.2 {return in a subst} {
151    subst {foo [return x ; bogus code] bar}
152} {foo x bar}
153test subst-8.3 {return in a subst} {
154    subst {foo [if 1 { return {x}; bogus code }] bar}
155} {foo x bar}
156test subst-8.4 {return in a subst} {
157    subst {[eval {return hi}] there}
158} {hi there}
159test subst-8.5 {return in a subst} {
160    subst {foo [return {]}; bogus code] bar}
161} {foo ] bar}
162test subst-8.6 {return in a subst} {
163    list [catch {subst {foo [return {x}; bogus code bar}} msg] $msg
164} {1 {missing close-bracket}}
165test subst-8.7 {return in a subst, parse error} -body {
166    subst {foo [return {x} ; set a {}" ; stuff] bar}
167} -returnCodes error -result {extra characters after close-brace}
168test subst-8.8 {return in a subst, parse error} -body {
169    subst {foo [return {x} ; set bar baz ; set a {}" ; stuff] bar}
170} -returnCodes error -result {extra characters after close-brace}
171test subst-8.9 {return in a variable subst} {
172    subst {foo $var([return {x}]) bar}
173} {foo x bar}
174
175test subst-9.1 {error in a subst} {
176    list [catch {subst {[error foo; bogus code]bar}} msg] $msg
177} {1 foo}
178test subst-9.2 {error in a subst} {
179    list [catch {subst {[if 1 { error foo; bogus code}]bar}} msg] $msg
180} {1 foo}
181test subst-9.3 {error in a variable subst} {
182    list [catch {subst {foo $var([error foo]) bar}} msg] $msg
183} {1 foo}
184
185test subst-10.1 {break in a subst} {
186    subst {foo [break; bogus code] bar}
187} {foo }
188test subst-10.2 {break in a subst} {
189    subst {foo [break; return x; bogus code] bar}
190} {foo }
191test subst-10.3 {break in a subst} {
192    subst {foo [if 1 { break; bogus code}] bar}
193} {foo }
194test subst-10.4 {break in a subst, parse error} {
195    subst {foo [break ; set a {}{} ; stuff] bar}
196} {foo }
197test subst-10.5 {break in a subst, parse error} {
198    subst {foo [break ;set bar baz ;set a {}{} ; stuff] bar}
199} {foo }
200test subst-10.6 {break in a variable subst} {
201    subst {foo $var([break]) bar}
202} {foo }
203
204test subst-11.1 {continue in a subst} {
205    subst {foo [continue; bogus code] bar}
206} {foo  bar}
207test subst-11.2 {continue in a subst} {
208    subst {foo [continue; return x; bogus code] bar}
209} {foo  bar}
210test subst-11.3 {continue in a subst} {
211    subst {foo [if 1 { continue; bogus code}] bar}
212} {foo  bar}
213test subst-11.4 {continue in a subst, parse error} -body {
214    subst {foo [continue ; set a {}{} ; stuff] bar}
215} -returnCodes error -result {extra characters after close-brace}
216test subst-11.5 {continue in a subst, parse error} -body {
217    subst {foo [continue ;set bar baz ;set a {}{} ; stuff] bar}
218} -returnCodes error -result {extra characters after close-brace}
219test subst-11.6 {continue in a variable subst} {
220    subst {foo $var([continue]) bar}
221} {foo  bar}
222
223test subst-12.1 {nasty case, Bug 1036649} {
224    for {set i 0} {$i < 10} {incr i} {
225        set res [list [catch {subst "\[subst {};"} msg] $msg]
226        if {$msg ne "missing close-bracket"} break
227    }
228    set res
229} {1 {missing close-bracket}}
230test subst-12.2 {nasty case, Bug 1036649} {
231    for {set i 0} {$i < 10} {incr i} {
232        set res [list [catch {subst "\[subst {}; "} msg] $msg]
233        if {$msg ne "missing close-bracket"} break
234    }
235    set res
236} {1 {missing close-bracket}}
237test subst-12.3 {nasty case, Bug 1036649} {
238    set x 0
239    for {set i 0} {$i < 10} {incr i} {
240        set res [list [catch {subst "\[incr x;"} msg] $msg]
241        if {$msg ne "missing close-bracket"} break
242    }
243    list $res $x
244} {{1 {missing close-bracket}} 10}
245test subst-12.4 {nasty case, Bug 1036649} {
246    set x 0
247    for {set i 0} {$i < 10} {incr i} {
248        set res [list [catch {subst "\[incr x; "} msg] $msg]
249        if {$msg ne "missing close-bracket"} break
250    }
251    list $res $x
252} {{1 {missing close-bracket}} 10}
253test subst-12.5 {nasty case, Bug 1036649} {
254    set x 0
255    for {set i 0} {$i < 10} {incr i} {
256        set res [list [catch {subst "\[incr x"} msg] $msg]
257        if {$msg ne "missing close-bracket"} break
258    }
259    list $res $x
260} {{1 {missing close-bracket}} 0}
261
262# cleanup
263::tcltest::cleanupTests
264return
Note: See TracBrowser for help on using the repository browser.