tcltest: do a better job of cleanup up after tests
[jimtcl.git] / tests / regexp.test
blob94107eb942b82a7998328c39fd10d31673981d52
1 # Commands covered:  regexp, regsub
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.
7 # Copyright (c) 1991-1993 The Regents of the University of California.
8 # Copyright (c) 1998 Sun Microsystems, Inc.
9 # Copyright (c) 1998-1999 by Scriptics Corporation.
11 # See the file "license.terms" for information on usage and redistribution
12 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
14 # RCS: @(#) $Id: regexp.test,v 1.30.2.1 2008/08/21 23:19:06 hobbs Exp $
16 source [file dirname [info script]]/testing.tcl
18 needs cmd regexp
19 testConstraint regexp_are [regexp {\d} 1]
21 catch {unset foo}
22 test regexp-1.1 {basic regexp operation} {
23     regexp ab*c abbbc
24 } 1
25 test regexp-1.2 {basic regexp operation} {
26     regexp ab*c ac
27 } 1
28 test regexp-1.3 {basic regexp operation} {
29     regexp ab*c ab
30 } 0
31 test regexp-1.4 {basic regexp operation} {
32     regexp -- -gorp abc-gorpxxx
33 } 1
34 test regexp-1.5 {basic regexp operation} {
35     regexp {^([^ ]*)[ ]*([^ ]*)} "" a
36 } 1
37 test regexp-1.6 {basic regexp operation} regexp_are {
38     list [catch {regexp {} abc} msg] $msg
39 } {0 1}
40 #test regexp-1.7 {regexp utf compliance} {
41 #    # if not UTF-8 aware, result is "0 1"
42 #    set foo "\u4e4eb q"
43 #    regexp "\u4e4eb q" "a\u4e4eb qw\u5e4e\x4e wq" bar
44 #    list [string compare $foo $bar] [regexp 4 $bar]
45 #} {0 0}
48 test regexp-2.1 {getting substrings back from regexp} {
49     set foo {}
50     list [regexp ab*c abbbbc foo] $foo
51 } {1 abbbbc}
52 test regexp-2.2 {getting substrings back from regexp} {
53     set foo {}
54     set f2 {}
55     list [regexp a(b*)c abbbbc foo f2] $foo $f2
56 } {1 abbbbc bbbb}
57 test regexp-2.3 {getting substrings back from regexp} {
58     set foo {}
59     set f2 {}
60     list [regexp a(b*)(c) abbbbc foo f2] $foo $f2
61 } {1 abbbbc bbbb}
62 test regexp-2.4 {getting substrings back from regexp} {
63     set foo {}
64     set f2 {}
65     set f3 {}
66     list [regexp a(b*)(c) abbbbc foo f2 f3] $foo $f2 $f3
67 } {1 abbbbc bbbb c}
68 test regexp-2.5 {getting substrings back from regexp} {
69     set foo {}; set f1 {}; set f2 {}; set f3 {}; set f4 {}; set f5 {};
70     set f6 {}; set f7 {}; set f8 {}; set f9 {}; set fa {}; set fb {};
71     list [regexp (1*)(2*)(3*)(4*)(5*)(6*)(7*)(8*)(9*)(a*)(b*) \
72               12223345556789999aabbb \
73             foo f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb] $foo $f1 $f2 $f3 $f4 $f5 \
74             $f6 $f7 $f8 $f9 $fa $fb
75 } {1 12223345556789999aabbb 1 222 33 4 555 6 7 8 9999 aa bbb}
76 test regexp-2.6 {getting substrings back from regexp} {
77     set foo 2; set f2 2; set f3 2; set f4 2
78     list [regexp (a)(b)? xay foo f2 f3 f4] $foo $f2 $f3 $f4
79 } {1 a a {} {}}
80 test regexp-2.7 {getting substrings back from regexp} {
81     set foo 1; set f2 1; set f3 1; set f4 1
82     list [regexp (a)(b)?(c) xacy foo f2 f3 f4] $foo $f2 $f3 $f4
83 } {1 ac a {} c}
84 test regexp-2.8 {getting substrings back from regexp} {
85     set match {}
86     list [regexp {^a*b} aaaab match] $match
87 } {1 aaaab}
88 test regexp-2.9 {getting substrings back from regexp} {
89     set foo {}
90     set f2 {}
91     list [regexp f\352te(b*)c f\352tebbbbc foo f2] $foo $f2
92 } [list 1 f\352tebbbbc bbbb]
93 test regexp-2.10 {getting substrings back from regexp} {
94     set foo {}
95     set f2 {}
96     list [regexp f\352te(b*)c eff\352tebbbbc foo f2] $foo $f2
97 } [list 1 f\352tebbbbc bbbb]
99 test regexp-3.1 {-indices option to regexp} {
100     set foo {}
101     list [regexp -indices ab*c abbbbc foo] $foo
102 } {1 {0 5}}
103 test regexp-3.2 {-indices option to regexp} {
104     set foo {}
105     set f2 {}
106     list [regexp -indices a(b*)c abbbbc foo f2] $foo $f2
107 } {1 {0 5} {1 4}}
108 test regexp-3.3 {-indices option to regexp} {
109     set foo {}
110     set f2 {}
111     list [regexp -indices a(b*)(c) abbbbc foo f2] $foo $f2
112 } {1 {0 5} {1 4}}
113 test regexp-3.4 {-indices option to regexp} {
114     set foo {}
115     set f2 {}
116     set f3 {}
117     list [regexp -indices a(b*)(c) abbbbc foo f2 f3] $foo $f2 $f3
118 } {1 {0 5} {1 4} {5 5}}
119 test regexp-3.5 {-indices option to regexp} {
120     set foo {}; set f1 {}; set f2 {}; set f3 {}; set f4 {}; set f5 {};
121     set f6 {}; set f7 {}; set f8 {}; set f9 {}
122     list [regexp -indices (1*)(2*)(3*)(4*)(5*)(6*)(7*)(8*)(9*) \
123             12223345556789999 \
124             foo f1 f2 f3 f4 f5 f6 f7 f8 f9] $foo $f1 $f2 $f3 $f4 $f5 \
125             $f6 $f7 $f8 $f9
126 } {1 {0 16} {0 0} {1 3} {4 5} {6 6} {7 9} {10 10} {11 11} {12 12} {13 16}}
127 test regexp-3.6 {getting substrings back from regexp} {
128     set foo 2; set f2 2; set f3 2; set f4 2
129     list [regexp -indices (a)(b)? xay foo f2 f3 f4] $foo $f2 $f3 $f4
130 } {1 {1 1} {1 1} {-1 -1} {-1 -1}}
131 test regexp-3.7 {getting substrings back from regexp} {
132     set foo 1; set f2 1; set f3 1; set f4 1
133     list [regexp -indices (a)(b)?(c) xacy foo f2 f3 f4] $foo $f2 $f3 $f4
134 } {1 {1 2} {1 1} {-1 -1} {2 2}}
136 test regexp-4.1 {-nocase option to regexp} {
137     regexp -nocase foo abcFOo
138 } 1
139 test regexp-4.2 {-nocase option to regexp} {
140     set f1 22
141     set f2 33
142     set f3 44
143     list [regexp -nocase {a(b*)([xy]*)z} aBbbxYXxxZ22 f1 f2 f3] $f1 $f2 $f3
144 } {1 aBbbxYXxxZ Bbb xYXxx}
145 test regexp-4.3 {-nocase option to regexp} {
146     regexp -nocase FOo abcFOo
147 } 1
148 set x abcdefghijklmnopqrstuvwxyz1234567890
149 set x $x$x$x$x$x$x$x$x$x$x$x$x
150 test regexp-4.4 {case conversion in regexp} {
151     list [regexp -nocase $x $x foo] $foo
152 } "1 $x"
153 catch {unset x}
155 test regexp-5.1 {exercise cache of compiled expressions} {
156     regexp .*a b
157     regexp .*b c
158     regexp .*c d
159     regexp .*d e
160     regexp .*e f
161     regexp .*a bbba
162 } 1
163 test regexp-5.2 {exercise cache of compiled expressions} {
164     regexp .*a b
165     regexp .*b c
166     regexp .*c d
167     regexp .*d e
168     regexp .*e f
169     regexp .*b xxxb
170 } 1
171 test regexp-5.3 {exercise cache of compiled expressions} {
172     regexp .*a b
173     regexp .*b c
174     regexp .*c d
175     regexp .*d e
176     regexp .*e f
177     regexp .*c yyyc
178 } 1
179 test regexp-5.4 {exercise cache of compiled expressions} {
180     regexp .*a b
181     regexp .*b c
182     regexp .*c d
183     regexp .*d e
184     regexp .*e f
185     regexp .*d 1d
186 } 1
187 test regexp-5.5 {exercise cache of compiled expressions} {
188     regexp .*a b
189     regexp .*b c
190     regexp .*c d
191     regexp .*d e
192     regexp .*e f
193     regexp .*e xe
194 } 1
196 test regexp-6.1 {regexp errors} {
197     list [catch {regexp a} msg] $msg
198 } {1 {wrong # args: should be "regexp ?-switch ...? exp string ?matchVar? ?subMatchVar ...?"}}
199 test regexp-6.2 {regexp errors} {
200     list [catch {regexp -nocase a} msg] $msg
201 } {1 {wrong # args: should be "regexp ?-switch ...? exp string ?matchVar? ?subMatchVar ...?"}}
202 test regexp-6.3 {regexp errors} jim {
203     list [catch {regexp -gorp a} msg] $msg
204 } {1 {bad switch "-gorp": must be --, -all, -indices, -inline, -line, -nocase, or -start}}
205 test regexp-6.4 {regexp errors} {
206     catch {regexp a( b} msg
207 } 1
208 test regexp-6.5 {regexp errors} regexp_are {
209     list [catch {regexp a) b} msg] [string match *parentheses* $msg]
210 } {1 1}
211 test regexp-6.6 {regexp errors} {
212     list [catch {regexp a a f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1} msg] $msg
213 } {0 1}
214 test regexp-6.7 {regexp errors} {
215     list [catch {regexp (x)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.) xyzzy} msg] $msg
216 } {0 0}
217 test regexp-6.8 {regexp errors} jim {
218     catch {unset f1}
219     set f1 44
220     list [catch {regexp abc abc f1(f2)} msg] $msg
221 } {1 {can't set "f1(f2)": variable isn't array}}
222 test regexp-6.9 {regexp errors, -start bad int check} {
223     list [catch {regexp -start bogus {^$} {}} msg] $msg
224 } {1 {bad index "bogus": must be integer?[+-]integer? or end?[+-]integer?}}
226 test regexp-7.1 {basic regsub operation} {
227     list [regsub aa+ xaxaaaxaa 111&222 foo] $foo
228 } {1 xax111aaa222xaa}
229 test regexp-7.2 {basic regsub operation} {
230     list [regsub aa+ aaaxaa &111 foo] $foo
231 } {1 aaa111xaa}
232 test regexp-7.3 {basic regsub operation} {
233     list [regsub aa+ xaxaaa 111& foo] $foo
234 } {1 xax111aaa}
235 test regexp-7.4 {basic regsub operation} {
236     list [regsub aa+ aaa 11&2&333 foo] $foo
237 } {1 11aaa2aaa333}
238 test regexp-7.5 {basic regsub operation} {
239     list [regsub aa+ xaxaaaxaa &2&333 foo] $foo
240 } {1 xaxaaa2aaa333xaa}
241 test regexp-7.6 {basic regsub operation} {
242     list [regsub aa+ xaxaaaxaa 1&22& foo] $foo
243 } {1 xax1aaa22aaaxaa}
244 test regexp-7.7 {basic regsub operation} {
245     list [regsub a(a+) xaxaaaxaa {1\122\1} foo] $foo
246 } {1 xax1aa22aaxaa}
247 test regexp-7.8 {basic regsub operation} {
248     list [regsub a(a+) xaxaaaxaa {1\\\122\1} foo] $foo
249 } "1 {xax1\\aa22aaxaa}"
250 test regexp-7.9 {basic regsub operation} {
251     list [regsub a(a+) xaxaaaxaa {1\\122\1} foo] $foo
252 } "1 {xax1\\122aaxaa}"
253 test regexp-7.10 {basic regsub operation} {
254     list [regsub a(a+) xaxaaaxaa {1\\&\1} foo] $foo
255 } "1 {xax1\\aaaaaxaa}"
256 test regexp-7.11 {basic regsub operation} {
257     list [regsub a(a+) xaxaaaxaa {1\&\1} foo] $foo
258 } {1 xax1&aaxaa}
259 test regexp-7.12 {basic regsub operation} {
260     list [regsub a(a+) xaxaaaxaa {\1\1\1\1&&} foo] $foo
261 } {1 xaxaaaaaaaaaaaaaaxaa}
262 test regexp-7.13 {basic regsub operation} {
263     set foo xxx
264     list [regsub abc xyz 111 foo] $foo
265 } {0 xyz}
266 test regexp-7.14 {basic regsub operation} {
267     set foo xxx
268     list [regsub ^ xyz "111 " foo] $foo
269 } {1 {111 xyz}}
270 test regexp-7.15 {basic regsub operation} {
271     set foo xxx
272     list [regsub -- -foo abc-foodef "111 " foo] $foo
273 } {1 {abc111 def}}
274 test regexp-7.16 {basic regsub operation} {
275     set foo xxx
276     list [regsub x "" y foo] $foo
277 } {0 {}}
278 #test regexp-7.17 {regsub utf compliance} {
279 #    # if not UTF-8 aware, result is "0 1"
280 #    set foo "xyz555ijka\u4e4ebpqr"
281 #    regsub a\u4e4eb xyza\u4e4ebijka\u4e4ebpqr 555 bar
282 #    list [string compare $foo $bar] [regexp 4 $bar]
283 #} {0 0}
285 test regexp-8.1 {case conversion in regsub} {
286     list [regsub -nocase a(a+) xaAAaAAay & foo] $foo
287 } {1 xaAAaAAay}
288 test regexp-8.2 {case conversion in regsub} {
289     list [regsub -nocase a(a+) xaAAaAAay & foo] $foo
290 } {1 xaAAaAAay}
291 test regexp-8.3 {case conversion in regsub} {
292     set foo 123
293     list [regsub a(a+) xaAAaAAay & foo] $foo
294 } {0 xaAAaAAay}
295 test regexp-8.4 {case conversion in regsub} {
296     set foo 123
297     list [regsub -nocase a CaDE b foo] $foo
298 } {1 CbDE}
299 test regexp-8.5 {case conversion in regsub} {
300     set foo 123
301     list [regsub -nocase XYZ CxYzD b foo] $foo
302 } {1 CbD}
303 test regexp-8.6 {case conversion in regsub} {
304     set x abcdefghijklmnopqrstuvwxyz1234567890
305     set x $x$x$x$x$x$x$x$x$x$x$x$x
306     set foo 123
307     list [regsub -nocase $x $x b foo] $foo
308 } {1 b}
310 test regexp-9.1 {-all option to regsub} {
311     set foo 86
312     list [regsub -all x+ axxxbxxcxdx |&| foo] $foo
313 } {4 a|xxx|b|xx|c|x|d|x|}
314 test regexp-9.2 {-all option to regsub} {
315     set foo 86
316     list [regsub -nocase -all x+ aXxXbxxcXdx |&| foo] $foo
317 } {4 a|XxX|b|xx|c|X|d|x|}
318 test regexp-9.3 {-all option to regsub} {
319     set foo 86
320     list [regsub x+ axxxbxxcxdx |&| foo] $foo
321 } {1 a|xxx|bxxcxdx}
322 test regexp-9.4 {-all option to regsub} {
323     set foo 86
324     list [regsub -all bc axxxbxxcxdx |&| foo] $foo
325 } {0 axxxbxxcxdx}
326 test regexp-9.5 {-all option to regsub} {
327     set foo xxx
328     list [regsub -all node "node node more" yy foo] $foo
329 } {2 {yy yy more}}
330 test regexp-9.6 {-all option to regsub} {
331     set foo xxx
332     list [regsub -all ^ xxx 123 foo] $foo
333 } {1 123xxx}
335 test regexp-10.2 {newline sensitivity in regsub} {
336     set foo xxx
337     list [regsub -line {^a.*b$} "dabc\naxyb\n" 123 foo] $foo
338 } "1 {dabc\n123\n}"
339 test regexp-10.3 {newline sensitivity in regsub} {
340     set foo xxx
341     list [regsub -line {^a.*b$} "dabc\naxyb\nxb" 123 foo] $foo
342 } "1 {dabc\n123\nxb}"
343 #test regexp-10.4 {partial newline sensitivity in regsub} {
344 #    set foo xxx
345 #    list [regsub -lineanchor {^a.*b$} "da\naxyb\nxb" 123 foo] $foo
346 #} "1 {da\n123}"
347 #test regexp-10.5 {inverse partial newline sensitivity in regsub} {
348 #    set foo xxx
349 #    list [regsub -linestop {a.*b} "da\nbaxyb\nxb" 123 foo] $foo
350 #} "1 {da\nb123\nxb}"
352 test regexp-11.1 {regsub errors} {
353     list [catch {regsub a b} msg] $msg
354 } {1 {wrong # args: should be "regsub ?-switch ...? exp string subSpec ?varName?"}}
355 test regexp-11.2 {regsub errors} {
356     list [catch {regsub -nocase a b} msg] $msg
357 } {1 {wrong # args: should be "regsub ?-switch ...? exp string subSpec ?varName?"}}
358 test regexp-11.3 {regsub errors} {
359     list [catch {regsub -nocase -all a b} msg] $msg
360 } {1 {wrong # args: should be "regsub ?-switch ...? exp string subSpec ?varName?"}}
361 test regexp-11.4 {regsub errors} {
362     list [catch {regsub a b c d e f} msg] $msg
363 } {1 {wrong # args: should be "regsub ?-switch ...? exp string subSpec ?varName?"}}
364 test regexp-11.5 {regsub errors} jim {
365     list [catch {regsub -gorp a b c} msg] $msg
366 } {1 {bad switch "-gorp": must be --, -all, -line, -nocase, or -start}}
367 test regexp-11.6 {regsub errors} {
368     catch {regsub -nocase a( b c d} msg
369 } 1
370 test regexp-11.7 {regsub errors} jim {
371     catch {unset f1}
372     set f1 44
373     list [catch {regsub -nocase aaa aaa xxx f1(f2)} msg] $msg
374 } {1 {can't set "f1(f2)": variable isn't array}}
375 test regexp-11.8 {regsub errors, -start bad int check} {
376     list [catch {regsub -start bogus pattern string rep var} msg] $msg
377 } {1 {bad index "bogus": must be integer?[+-]integer? or end?[+-]integer?}}
378 test regexp-11.9 {regsub without final variable name returns value} {
379     regsub b abaca X
380 } {aXaca}
381 test regexp-11.10 {regsub without final variable name returns value} {
382     regsub -all a abaca X
383 } {XbXcX}
385 test regexp-11.11 {regsub without final variable name returns value} {
386     regsub b(\[^d\]*)d abcdeabcfde {,&,\1,}
387 } {a,bcd,c,eabcfde}
388 test regexp-11.12 {regsub without final variable name returns value} {
389     regsub -all b(\[^d\]*)d abcdeabcfde {,&,\1,}
390 } {a,bcd,c,ea,bcfd,cf,e}
392 # This test crashes on the Mac unless you increase the Stack Space to about 1
393 # Meg.  This is probably bigger than most users want... 
394 # 8.2.3 regexp reduced stack space requirements, but this should be
395 # tested again
396 test regexp-12.1 {Tcl_RegExpExec: large number of subexpressions} {
397     list [regexp (.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.) abcdefghijklmnopqrstuvwxyz all a b c d e f g h i j k l m n o p q r s t u v w x y z] $all $a $b $c $d $e $f $g $h $i $j $k $l $m $n $o $p $q $r $s $t $u $v $w $x $y $z
398 } {1 abcdefghijklmnopqrstuvwxyz a b c d e f g h i j k l m n o p q r s t u v w x y z}
400 test regexp-13.1 {regsub of a very large string} {
401     # This test is designed to stress the memory subsystem in order
402     # to catch Bug #933.  It only fails if the Tcl memory allocator
403     # is in use.
405     set line {BEGIN_TABLE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; END_TABLE}
406     set filedata [string repeat $line 200]
407     for {set i 1} {$i<10} {incr i} {
408         regsub -all "BEGIN_TABLE " $filedata "" newfiledata
409     }
410     set x done
411 } {done}
413 test regexp-14.1 {CompileRegexp: regexp cache} {
414     regexp .*a b
415     regexp .*b c
416     regexp .*c d
417     regexp .*d e
418     regexp .*e f
419     set x .
420     append x *a
421     regexp $x bbba
422 } 1
423 test regexp-14.2 {CompileRegexp: regexp cache, different flags} {
424     regexp .*a b
425     regexp .*b c
426     regexp .*c d
427     regexp .*d e
428     regexp .*e f
429     set x .
430     append x *a
431     regexp -nocase $x bbba
432 } 1
434 test regexp-15.1 {regexp -start} regexp_are {
435     catch {unset x}
436     list [regexp -start -10 {\d} 1abc2de3 x] $x
437 } {1 1}
438 test regexp-15.2 {regexp -start} regexp_are {
439     catch {unset x}
440     list [regexp -start 2 {\d} 1abc2de3 x] $x
441 } {1 2}
442 test regexp-15.3 {regexp -start} regexp_are {
443     catch {unset x}
444     list [regexp -start 4 {\d} 1abc2de3 x] $x
445 } {1 2}
446 test regexp-15.4 {regexp -start} regexp_are {
447     catch {unset x}
448     list [regexp -start 5 {\d} 1abc2de3 x] $x
449 } {1 3}
450 test regexp-15.5 {regexp -start, over end of string} regexp_are {
451     catch {unset x}
452     list [regexp -start [string length 1abc2de3] {\d} 1abc2de3 x] [info exists x]
453 } {0 0}
454 test regexp-15.6 {regexp -start, loss of ^$ behavior} {
455     list [regexp -start 2 {^$} {}]
456 } {0}
457 test regexp-15.7 {regexp -start, double option} {
458     regexp -start 2 -start 0 a abc
459 } 1
460 test regexp-15.8 {regexp -start, double option} {
461     regexp -start 0 -start 2 a abc
462 } 0
463 test regexp-15.9 {regexp -start, end relative index} {
464     catch {unset x}
465     list [regexp -start end {\d} 1abc2de3 x] [info exists x]
466 } {0 0}
467 test regexp-15.10 {regexp -start, end relative index} regexp_are {
468     catch {unset x}
469     list [regexp -start end-1 {\d} 1abc2de3 x] [info exists x] $x
470 } {1 1 3}
472 test regexp-16.1 {regsub -start} regexp_are {
473     catch {unset x}
474     list [regsub -all -start 2 {\d} a1b2c3d4e5 {/&} x] $x
475 } {4 a1b/2c/3d/4e/5}
476 test regexp-16.2 {regsub -start} {
477     catch {unset x}
478     list [regsub -all -start -25 {z} hello {/&} x] $x
479 } {0 hello}
480 test regexp-16.3 {regsub -start} {
481     catch {unset x}
482     list [regsub -all -start 3 {z} hello {/&} x] $x
483 } {0 hello}
484 #test regexp-16.4 {regsub -start, \A behavior} {
485 #    set out {}
486 #    lappend out [regsub -start 0 -all {\A(\w)} {abcde} {/\1} x] $x
487 #    lappend out [regsub -start 2 -all {\A(\w)} {abcde} {/\1} x] $x
488 #} {5 /a/b/c/d/e 3 ab/c/d/e}
489 test regexp-16.5 {regsub -start, double option} {
490     list [regsub -start 2 -start 0 a abc c x] $x
491 } {1 cbc}
492 test regexp-16.6 {regsub -start, double option} {
493     list [regsub -start 0 -start 2 a abc c x] $x
494 } {0 abc}
495 test regexp-16.7 {regexp -start, end relative index} {
496     list [regsub -start end a aaa b x] $x
497 } {0 aaa}
498 test regexp-16.8 {regexp -start, end relative index} {
499     list [regsub -start end-1 a aaa b x] $x
500 } {1 aab}
502 test regexp-17.1 {regexp -inline} {
503     regexp -inline b ababa
504 } {b}
505 test regexp-17.2 {regexp -inline} {
506     regexp -inline (b) ababa
507 } {b b}
508 test regexp-17.3 {regexp -inline -indices} {
509     regexp -inline -indices (b) ababa
510 } {{1 1} {1 1}}
511 test regexp-17.4 {regexp -inline} regexp_are {
512     regexp -inline {\w(\d+)\w} "   hello 23 there456def "
513 } {e456d 456}
514 test regexp-17.5 {regexp -inline no matches} {
515     regexp -inline {\w(\d+)\w} ""
516 } {}
517 test regexp-17.6 {regexp -inline no matches} {
518     regexp -inline hello goodbye
519 } {}
520 test regexp-17.7 {regexp -inline, no matchvars allowed} {
521     list [catch {regexp -inline b abc match} msg] $msg
522 } {1 {regexp match variables not allowed when using -inline}}
523 test regexp-17.8 {\W, \S and \D} regexp_are {
524     regexp -inline {(\W+)(\D+)(\S+)} " #!word  abc 13123  "
525 } {{ #!word  abc 13123} { #!} {word  abc } 13123}
527 test regexp-18.1 {regexp -all} {
528     regexp -all b bbbbb
529 } {5}
530 test regexp-18.2 {regexp -all} {
531     regexp -all b abababbabaaaaaaaaaab
532 } {6}
533 test regexp-18.3 {regexp -all -inline} {
534     regexp -all -inline b abababbabaaaaaaaaaab
535 } {b b b b b b}
536 test regexp-18.4 {regexp -all -inline} regexp_are {
537     regexp -all -inline {\w(\w)} abcdefg
538 } {ab b cd d ef f}
539 test regexp-18.5 {regexp -all -inline} regexp_are {
540     regexp -all -inline {\w(\w)$} abcdefg
541 } {fg g}
542 test regexp-18.6 {regexp -all -inline} regexp_are {
543     regexp -all -inline {\d+} 10:20:30:40
544 } {10 20 30 40}
545 test regexp-18.7 {regexp -all -inline} {
546     list [catch {regexp -all -inline b abc match} msg] $msg
547 } {1 {regexp match variables not allowed when using -inline}}
548 test regexp-18.8 {regexp -all} {
549     # This should not cause an infinite loop
550     regexp -all -inline {a*} a
551 } {a}
552 test regexp-18.9 {regexp -all} {
553     # Yes, the expected result is {a {}}.  Here's why:
554     # Start at index 0; a* matches the "a" there then stops.
555     # Go to index 1; a* matches the lambda (or {}) there then stops.  Recall
556     #   that a* matches zero or more "a"'s; thus it matches the string "b", as
557     #   there are zero or more "a"'s there.
558     # Go to index 2; this is past the end of the string, so stop.
559     regexp -all -inline {a*} ab
560 } {a {}}
561 test regexp-18.10 {regexp -all} {
562     # Yes, the expected result is {a {} a}.  Here's why:
563     # Start at index 0; a* matches the "a" there then stops.
564     # Go to index 1; a* matches the lambda (or {}) there then stops.   Recall
565     #   that a* matches zero or more "a"'s; thus it matches the string "b", as
566     #   there are zero or more "a"'s there.
567     # Go to index 2; a* matches the "a" there then stops.
568     # Go to index 3; this is past the end of the string, so stop.
569     regexp -all -inline {a*} aba
570 } {a {} a}
571 test regexp-18.11 {regexp -all} {
572     regexp -all -inline {^a} aaaa
573 } {a}
574 test regexp-18.12 {regexp -all -inline -indices} {
575     regexp -all -inline -indices a(b(c)d|e(f)g)h abcdhaefgh
576 } {{0 4} {1 3} {2 2} {-1 -1} {5 9} {6 8} {-1 -1} {7 7}}
578 test regexp-19.1 {regsub null replacement} {
579     regsub -all {@} {@hel@lo@} "\0a\0" result
580     list $result [string length $result]
581 } "\0a\0hel\0a\0lo\0a\0 14"
583 #test regexp-20.1 {regsub shared object shimmering} {
584 #    # Bug #461322
585 #    set a abcdefghijklmnopqurstuvwxyz 
586 #    set b $a 
587 #    set c abcdefghijklmnopqurstuvwxyz0123456789 
588 #    regsub $a $c $b d 
589 #    list $d [string length $d] [string bytelength $d]
590 #} [list abcdefghijklmnopqurstuvwxyz0123456789 37 37]
591 #test regexp-20.2 {regsub shared object shimmering with -about} {
592 #    eval regexp -about abc
593 #} {0 {}}
595 test regexp-21.1 {regsub works with empty string} {
596     regsub -- ^ {} foo
597 } {foo}
599 test regexp-21.2 {regsub works with empty string} {
600     regsub -- \$ {} foo
601 } {foo}
603 test regexp-21.3 {regsub works with empty string offset} {
604     regsub -start 0 -- ^ {} foo
605 } {foo}
607 test regexp-21.4 {regsub works with empty string offset} {
608     regsub -start 0 -- \$ {} foo
609 } {foo}
611 test regexp-21.5 {regsub works with empty string offset} {
612     regsub -start 3 -- \$ {123} foo
613 } {123foo}
615 test regexp-21.6 {regexp works with empty string} {
616     regexp -- ^ {}
617 } {1}
619 test regexp-21.7 {regexp works with empty string} {
620     regexp -start 0 -- ^ {}
621 } {1}
623 test regexp-21.8 {regexp works with empty string offset} {
624     regexp -start 3 -- ^ {123}
625 } {0}
627 test regexp-21.9 {regexp works with empty string offset} {
628     regexp -start 3 -- \$ {123}
629 } {1}
631 #test regexp-21.10 {multiple matches handle newlines} {
632 #    regsub -all -lineanchor -- {^#[^\n]*\n} "#one\n#two\n#three\n" foo\n
633 #} "foo\nfoo\nfoo\n"
635 test regexp-21.11 {multiple matches handle newlines} {
636     regsub -all -line -- ^ "a\nb\nc" \#
637 } "\#a\n\#b\n\#c"
639 test regexp-21.12 {multiple matches handle newlines} {
640     regsub -all -line -- ^ "\n\n" \#
641 } "\#\n\#\n\#"
643 test regexp-21.13 {multiple matches handle newlines} {
644     regexp -all -inline -indices -line -- ^ "a\nb\nc"
645 } {{0 -1} {2 1} {4 3}}
647 test regexp-21.14 {Literal newline in pattern} {
648     regexp -all -inline "\n(\[ \t\]+)" "\n\t\t# This  is  a test"
649 } "{\n\t\t} {\t\t}"
651 test regexp-21.15 {Replace literal backslash} {
652     regsub -all <bs> {<bs>abc<bs>def} \\ value
653     set value
654 } "\\abc\\def"
656 # Tests resulting from bugs reported by users
657 test reg-31.1 {[[:xdigit:]] behaves correctly when followed by [[:space:]]} {
658     set str {2:::DebugWin32}
659     set re {([[:xdigit:]])([[:space:]]*)}
660     list [regexp $re $str match xdigit spaces] $match $xdigit $spaces
661     # Code used to produce {1 2:::DebugWin32 2 :::DebugWin32} !!!
662 } {1 2 2 {}}
664 testreport