1 |
578 |
markom |
# Commands covered: scan
|
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) 1991-1994 The Regents of the University of California.
|
8 |
|
|
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
|
9 |
|
|
#
|
10 |
|
|
# See the file "license.terms" for information on usage and redistribution
|
11 |
|
|
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
12 |
|
|
#
|
13 |
|
|
# RCS: @(#) $Id: scan.test,v 1.1.1.1 2002-01-16 10:25:36 markom Exp $
|
14 |
|
|
|
15 |
|
|
if {[string compare test [info procs test]] == 1} then {source defs}
|
16 |
|
|
|
17 |
|
|
test scan-1.1 {integer scanning} {
|
18 |
|
|
set a {}; set b {}; set c {}; set d {}
|
19 |
|
|
list [scan "-20 1476 \n33 0" "%d %d %d %d" a b c d] $a $b $c $d
|
20 |
|
|
} {4 -20 1476 33 0}
|
21 |
|
|
test scan-1.2 {integer scanning} {
|
22 |
|
|
set a {}; set b {}; set c {}
|
23 |
|
|
list [scan "-45 16 7890 +10" "%2d %*d %10d %d" a b c] $a $b $c
|
24 |
|
|
} {3 -4 16 7890}
|
25 |
|
|
test scan-1.3 {integer scanning} {
|
26 |
|
|
set a {}; set b {}; set c {}; set d {}
|
27 |
|
|
list [scan "-45 16 +10 987" "%ld %d %ld %d" a b c d] $a $b $c $d
|
28 |
|
|
} {4 -45 16 10 987}
|
29 |
|
|
test scan-1.4 {integer scanning} {
|
30 |
|
|
set a {}; set b {}; set c {}; set d {}
|
31 |
|
|
list [scan "14 1ab 62 10" "%d %x %lo %x" a b c d] $a $b $c $d
|
32 |
|
|
} {4 14 427 50 16}
|
33 |
|
|
test scan-1.5 {integer scanning} {
|
34 |
|
|
set a {}; set b {}; set c {}; set d {}
|
35 |
|
|
list [scan "12345670 1234567890ab cdefg" "%o %o %x %lx" a b c d] \
|
36 |
|
|
$a $b $c $d
|
37 |
|
|
} {4 2739128 342391 561323 52719}
|
38 |
|
|
test scan-1.6 {integer scanning} {
|
39 |
|
|
set a {}; set b {}; set c {}; set d {}
|
40 |
|
|
list [scan "ab123-24642" "%2x %3x %3o %2o" a b c d] $a $b $c $d
|
41 |
|
|
} {4 171 291 -20 52}
|
42 |
|
|
test scan-1.7 {integer scanning} {
|
43 |
|
|
set a {}; set b {}
|
44 |
|
|
list [scan "1234567 234 567 " "%*3x %x %*o %4o" a b] $a $b
|
45 |
|
|
} {2 17767 375}
|
46 |
|
|
test scan-1.8 {integer scanning} {
|
47 |
|
|
set a {}; set b {}
|
48 |
|
|
list [scan "a 1234" "%d %d" a b] $a $b
|
49 |
|
|
} {0 {} {}}
|
50 |
|
|
test scan-1.9 {integer scanning} {
|
51 |
|
|
set a {}; set b {}; set c {}; set d {};
|
52 |
|
|
list [scan "12345678" "%2d %2d %2ld %2d" a b c d] $a $b $c $d
|
53 |
|
|
} {4 12 34 56 78}
|
54 |
|
|
test scan-1.10 {integer scanning} {
|
55 |
|
|
set a {}; set b {}; set c {}; set d {}
|
56 |
|
|
list [scan "1 2 " "%hd %d %d %d" a b c d] $a $b $c $d
|
57 |
|
|
} {2 1 2 {} {}}
|
58 |
|
|
#
|
59 |
|
|
# The behavior for scaning intergers larger than MAX_INT is
|
60 |
|
|
# not defined by the ANSI spec. Some implementations wrap the
|
61 |
|
|
# input (-16) some return MAX_INT.
|
62 |
|
|
#
|
63 |
|
|
test scan-1.11 {integer scanning} {nonPortable} {
|
64 |
|
|
set a {}; set b {};
|
65 |
|
|
list [scan "4294967280 4294967280" "%u %d" a b] $a $b
|
66 |
|
|
} {2 4294967280 -16}
|
67 |
|
|
|
68 |
|
|
test scan-2.1 {floating-point scanning} {
|
69 |
|
|
set a {}; set b {}; set c {}; set d {}
|
70 |
|
|
list [scan "2.1 -3.0e8 .99962 a" "%f%g%e%f" a b c d] $a $b $c $d
|
71 |
|
|
} {3 2.1 -300000000.0 0.99962 {}}
|
72 |
|
|
test scan-2.2 {floating-point scanning} {
|
73 |
|
|
set a {}; set b {}; set c {}; set d {}
|
74 |
|
|
list [scan "-1.2345 +8.2 9" "%3e %3lf %f %f" a b c d] $a $b $c $d
|
75 |
|
|
} {4 -1.0 234.0 5.0 8.2}
|
76 |
|
|
test scan-2.3 {floating-point scanning} {
|
77 |
|
|
set a {}; set b {}; set c {}
|
78 |
|
|
list [scan "1e00004 332E-4 3e+4" "%Lf %*2e %f %f" a b c] $a $c
|
79 |
|
|
} {3 10000.0 30000.0}
|
80 |
|
|
#
|
81 |
|
|
# Some libc implementations consider 3.e- bad input. The ANSI
|
82 |
|
|
# spec states that digits must follow the - sign.
|
83 |
|
|
#
|
84 |
|
|
test scan-2.4 {floating-point scanning} {nonPortable} {
|
85 |
|
|
set a {}; set b {}; set c {}
|
86 |
|
|
list [scan "1. 47.6 2.e2 3.e-" "%f %*f %f %f" a b c] $a $b $c
|
87 |
|
|
} {3 1.0 200.0 3.0}
|
88 |
|
|
test scan-2.5 {floating-point scanning} {
|
89 |
|
|
set a {}; set b {}; set c {}; set d {}
|
90 |
|
|
list [scan "4.6 99999.7 876.43e-1 118" "%f %f %f %e" a b c d] $a $b $c $d
|
91 |
|
|
} {4 4.6 99999.7 87.643 118.0}
|
92 |
|
|
test scan-2.6 {floating-point scanning} {eformat} {
|
93 |
|
|
set a {}; set b {}; set c {}; set d {}
|
94 |
|
|
list [scan "1.2345 697.0e-3 124 .00005" "%f %e %f %e" a b c d] $a $b $c $d
|
95 |
|
|
} {4 1.2345 0.697 124.0 5e-05}
|
96 |
|
|
test scan-2.7 {floating-point scanning} {
|
97 |
|
|
set a {}; set b {}; set c {}; set d {}
|
98 |
|
|
list [scan "4.6abc" "%f %f %f %f" a b c d] $a $b $c $d
|
99 |
|
|
} {1 4.6 {} {} {}}
|
100 |
|
|
test scan-2.8 {floating-point scanning} {
|
101 |
|
|
set a {}; set b {}; set c {}; set d {}
|
102 |
|
|
list [scan "4.6 5.2" "%f %f %f %f" a b c d] $a $b $c $d
|
103 |
|
|
} {2 4.6 5.2 {} {}}
|
104 |
|
|
|
105 |
|
|
test scan-3.1 {string and character scanning} {
|
106 |
|
|
set a {}; set b {}; set c {}; set d {}
|
107 |
|
|
list [scan "abc defghijk dum " "%s %3s %20s %s" a b c d] $a $b $c $d
|
108 |
|
|
} {4 abc def ghijk dum}
|
109 |
|
|
test scan-3.2 {string and character scanning} {
|
110 |
|
|
set a {}; set b {}; set c {}; set d {}
|
111 |
|
|
list [scan "a bcdef" "%c%c%1s %s" a b c d] $a $b $c $d
|
112 |
|
|
} {4 97 32 b cdef}
|
113 |
|
|
test scan-3.3 {string and character scanning} {
|
114 |
|
|
set a {}; set b {}; set c {}
|
115 |
|
|
list [scan "123456 test " "%*c%*s %s %s %s" a b c] $a $b $c
|
116 |
|
|
} {1 test {} {}}
|
117 |
|
|
test scan-3.4 {string and character scanning} {
|
118 |
|
|
set a {}; set b {}; set c {}; set d
|
119 |
|
|
list [scan "ababcd01234 f 123450" {%4[abcd] %4[abcd] %[^abcdef] %[^0]} a b c d] $a $b $c $d
|
120 |
|
|
} {4 abab cd {01234 } {f 12345}}
|
121 |
|
|
test scan-3.5 {string and character scanning} {
|
122 |
|
|
set a {}; set b {}; set c {}
|
123 |
|
|
list [scan "aaaaaabc aaabcdefg + + XYZQR" {%*4[a] %s %*4[a]%s%*4[ +]%c} a b c] $a $b $c
|
124 |
|
|
} {3 aabc bcdefg 43}
|
125 |
|
|
|
126 |
|
|
test scan-4.1 {error conditions} {
|
127 |
|
|
catch {scan a}
|
128 |
|
|
} 1
|
129 |
|
|
test scan-4.2 {error conditions} {
|
130 |
|
|
catch {scan a} msg
|
131 |
|
|
set msg
|
132 |
|
|
} {wrong # args: should be "scan string format ?varName varName ...?"}
|
133 |
|
|
test scan-4.3 {error conditions} {
|
134 |
|
|
catch {scan "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21" "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d" a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21}
|
135 |
|
|
} 1
|
136 |
|
|
test scan-4.4 {error conditions} {
|
137 |
|
|
catch {scan "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21" "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d" a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21} msg
|
138 |
|
|
set msg
|
139 |
|
|
} {too many fields to scan}
|
140 |
|
|
test scan-4.5 {error conditions} {
|
141 |
|
|
list [catch {scan a %D} msg] $msg
|
142 |
|
|
} {1 {bad scan conversion character "D"}}
|
143 |
|
|
test scan-4.6 {error conditions} {
|
144 |
|
|
list [catch {scan a %O} msg] $msg
|
145 |
|
|
} {1 {bad scan conversion character "O"}}
|
146 |
|
|
test scan-4.7 {error conditions} {
|
147 |
|
|
list [catch {scan a %X} msg] $msg
|
148 |
|
|
} {1 {bad scan conversion character "X"}}
|
149 |
|
|
test scan-4.8 {error conditions} {
|
150 |
|
|
list [catch {scan a %F} msg] $msg
|
151 |
|
|
} {1 {bad scan conversion character "F"}}
|
152 |
|
|
test scan-4.9 {error conditions} {
|
153 |
|
|
list [catch {scan a %E} msg] $msg
|
154 |
|
|
} {1 {bad scan conversion character "E"}}
|
155 |
|
|
test scan-4.10 {error conditions} {
|
156 |
|
|
list [catch {scan a "%d %d" a} msg] $msg
|
157 |
|
|
} {1 {different numbers of variable names and field specifiers}}
|
158 |
|
|
test scan-4.11 {error conditions} {
|
159 |
|
|
list [catch {scan a "%d %d" a b c} msg] $msg
|
160 |
|
|
} {1 {different numbers of variable names and field specifiers}}
|
161 |
|
|
test scan-4.12 {error conditions} {
|
162 |
|
|
set a {}; set b {}; set c {}; set d {}
|
163 |
|
|
list [expr {[scan " a" " a %d %d %d %d" a b c d] <= 0}] $a $b $c $d
|
164 |
|
|
} {1 {} {} {} {}}
|
165 |
|
|
test scan-4.13 {error conditions} {
|
166 |
|
|
set a {}; set b {}; set c {}; set d {}
|
167 |
|
|
list [scan "1 2" "%d %d %d %d" a b c d] $a $b $c $d
|
168 |
|
|
} {2 1 2 {} {}}
|
169 |
|
|
test scan-4.14 {error conditions} {
|
170 |
|
|
catch {unset a}
|
171 |
|
|
set a(0) 44
|
172 |
|
|
list [catch {scan 44 %d a} msg] $msg
|
173 |
|
|
} {1 {couldn't set variable "a"}}
|
174 |
|
|
test scan-4.15 {error conditions} {
|
175 |
|
|
catch {unset a}
|
176 |
|
|
set a(0) 44
|
177 |
|
|
list [catch {scan 44 %c a} msg] $msg
|
178 |
|
|
} {1 {couldn't set variable "a"}}
|
179 |
|
|
test scan-4.16 {error conditions} {
|
180 |
|
|
catch {unset a}
|
181 |
|
|
set a(0) 44
|
182 |
|
|
list [catch {scan 44 %s a} msg] $msg
|
183 |
|
|
} {1 {couldn't set variable "a"}}
|
184 |
|
|
test scan-4.17 {error conditions} {
|
185 |
|
|
catch {unset a}
|
186 |
|
|
set a(0) 44
|
187 |
|
|
list [catch {scan 44 %f a} msg] $msg
|
188 |
|
|
} {1 {couldn't set variable "a"}}
|
189 |
|
|
test scan-4.18 {error conditions} {
|
190 |
|
|
catch {unset a}
|
191 |
|
|
set a(0) 44
|
192 |
|
|
list [catch {scan 44 %f a} msg] $msg
|
193 |
|
|
} {1 {couldn't set variable "a"}}
|
194 |
|
|
catch {unset a}
|
195 |
|
|
test scan-4.19 {error conditions} {
|
196 |
|
|
list [catch {scan 44 %2c a} msg] $msg
|
197 |
|
|
} {1 {field width may not be specified in %c conversion}}
|
198 |
|
|
test scan-4.20 {error conditions} {
|
199 |
|
|
list [catch {scan abc {%[}} msg] $msg
|
200 |
|
|
} {1 {unmatched [ in format string}}
|
201 |
|
|
|
202 |
|
|
test scan-5.1 {lots of arguments} {
|
203 |
|
|
scan "10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200" "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d" a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20
|
204 |
|
|
} 20
|
205 |
|
|
test scan-5.2 {lots of arguments} {
|
206 |
|
|
scan "10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200" "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d" a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20
|
207 |
|
|
set a20
|
208 |
|
|
} 200
|
209 |
|
|
|
210 |
|
|
test scan-6.1 {miscellaneous tests} {
|
211 |
|
|
set a {}
|
212 |
|
|
list [scan ab16c ab%dc a] $a
|
213 |
|
|
} {1 16}
|
214 |
|
|
test scan-6.2 {miscellaneous tests} {
|
215 |
|
|
set a {}
|
216 |
|
|
list [scan ax16c ab%dc a] $a
|
217 |
|
|
} {0 {}}
|
218 |
|
|
test scan-6.3 {miscellaneous tests} {
|
219 |
|
|
set a {}
|
220 |
|
|
list [catch {scan ab%c114 ab%%c%d a} msg] $msg $a
|
221 |
|
|
} {0 1 114}
|
222 |
|
|
test scan-6.4 {miscellaneous tests} {
|
223 |
|
|
set a {}
|
224 |
|
|
list [catch {scan ab%c14 ab%%c%d a} msg] $msg $a
|
225 |
|
|
} {0 1 14}
|
226 |
|
|
|
227 |
|
|
test scan-7.1 {alignment in results array (TCL_ALIGN)} {
|
228 |
|
|
scan "123 13.6" "%s %f" a b
|
229 |
|
|
set b
|
230 |
|
|
} 13.6
|
231 |
|
|
test scan-7.2 {alignment in results array (TCL_ALIGN)} {
|
232 |
|
|
scan "1234567 13.6" "%s %f" a b
|
233 |
|
|
set b
|
234 |
|
|
} 13.6
|
235 |
|
|
test scan-7.3 {alignment in results array (TCL_ALIGN)} {
|
236 |
|
|
scan "12345678901 13.6" "%s %f" a b
|
237 |
|
|
set b
|
238 |
|
|
} 13.6
|
239 |
|
|
test scan-7.4 {alignment in results array (TCL_ALIGN)} {
|
240 |
|
|
scan "123456789012345 13.6" "%s %f" a b
|
241 |
|
|
set b
|
242 |
|
|
} 13.6
|
243 |
|
|
test scan-7.5 {alignment in results array (TCL_ALIGN)} {
|
244 |
|
|
scan "1234567890123456789 13.6" "%s %f" a b
|
245 |
|
|
set b
|
246 |
|
|
} 13.6
|