archie/tcl7.6/tests/parse.test

521 lines
14 KiB
Plaintext
Raw Permalink Normal View History

2024-05-27 16:40:40 +02:00
# Commands covered: set (plus basic command syntax). Also tests
# the procedures in the file tclParse.c.
2024-05-27 16:13:40 +02:00
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
#
# Copyright (c) 1991-1993 The Regents of the University of California.
2024-05-27 16:40:40 +02:00
# Copyright (c) 1994 Sun Microsystems, Inc.
2024-05-27 16:13:40 +02:00
#
2024-05-27 16:40:40 +02:00
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
2024-05-27 16:13:40 +02:00
#
2024-05-27 16:40:40 +02:00
# SCCS: @(#) parse.test 1.34 96/03/02 14:29:03
2024-05-27 16:13:40 +02:00
if {[string compare test [info procs test]] == 1} then {source defs}
proc fourArgs {a b c d} {
global arg1 arg2 arg3 arg4
set arg1 $a
set arg2 $b
set arg3 $c
set arg4 $d
}
proc getArgs args {
global argv
set argv $args
}
# Basic argument parsing.
test parse-1.1 {basic argument parsing} {
set arg1 {}
fourArgs a b c d
list $arg1 $arg2 $arg3 $arg4
} {a b c d}
test parse-1.2 {basic argument parsing} {
set arg1 {}
eval "fourArgs 123\v4\f56\r7890"
list $arg1 $arg2 $arg3 $arg4
} {123 4 56 7890}
# Quotes.
test parse-2.1 {quotes and variable-substitution} {
getArgs "a b c" d
set argv
} {{a b c} d}
test parse-2.2 {quotes and variable-substitution} {
set a 101
getArgs "a$a b c"
set argv
} {{a101 b c}}
test parse-2.3 {quotes and variable-substitution} {
set argv "xy[format xabc]"
set argv
} {xyxabc}
test parse-2.4 {quotes and variable-substitution} {
set argv "xy\t"
set argv
} xy\t
test parse-2.5 {quotes and variable-substitution} {
set argv "a b c
d e f"
set argv
} a\ b\tc\nd\ e\ f
test parse-2.6 {quotes and variable-substitution} {
set argv a"bcd"e
set argv
} {a"bcd"e}
# Braces.
test parse-3.1 {braces} {
getArgs {a b c} d
set argv
} "{a b c} d"
test parse-3.2 {braces} {
set a 101
set argv {a$a b c}
set b [string index $argv 1]
set b
} {$}
test parse-3.3 {braces} {
set argv {a[format xyz] b}
string length $argv
} 15
test parse-3.4 {braces} {
set argv {a\nb\}}
string length $argv
} 6
test parse-3.5 {braces} {
set argv {{{{}}}}
set argv
} "{{{}}}"
test parse-3.6 {braces} {
set argv a{{}}b
set argv
} "a{{}}b"
test parse-3.7 {braces} {
set a [format "last]"]
set a
} {last]}
# Command substitution.
test parse-4.1 {command substitution} {
set a [format xyz]
set a
} xyz
test parse-4.2 {command substitution} {
set a a[format xyz]b[format q]
set a
} axyzbq
test parse-4.3 {command substitution} {
set a a[
set b 22;
format %s $b
]b
set a
} a22b
# Variable substitution.
test parse-5.1 {variable substitution} {
set a 123
set b $a
set b
} 123
test parse-5.2 {variable substitution} {
set a 345
set b x$a.b
set b
} x345.b
test parse-5.3 {variable substitution} {
set _123z xx
set b $_123z^
set b
} xx^
test parse-5.4 {variable substitution} {
set a 78
set b a${a}b
set b
} a78b
test parse-5.5 {variable substitution} {catch {$_non_existent_} msg} 1
test parse-5.6 {variable substitution} {
catch {$_non_existent_} msg
set msg
} {can't read "_non_existent_": no such variable}
test parse-5.7 {array variable substitution} {
catch {unset a}
set a(xyz) 123
set b $a(xyz)foo
set b
} 123foo
test parse-5.8 {array variable substitution} {
catch {unset a}
set "a(x y z)" 123
set b $a(x y z)foo
set b
} 123foo
test parse-5.9 {array variable substitution} {
catch {unset a}; catch {unset qqq}
set "a(x y z)" qqq
set $a([format x]\ y [format z]) foo
set qqq
} foo
test parse-5.10 {array variable substitution} {
catch {unset a}
list [catch {set b $a(22)} msg] $msg
} {1 {can't read "a(22)": no such variable}}
test parse-5.11 {array variable substitution} {
set b a$!
set b
} {a$!}
test parse-5.12 {array variable substitution} {
set b a$()
set b
} {a$()}
catch {unset a}
test parse-5.13 {array variable substitution} {
catch {unset a}
set long {This is a very long variable, long enough to cause storage \
allocation to occur in Tcl_ParseVar. If that storage isn't getting \
freed up correctly, then a core leak will occur when this test is \
run. This text is probably beginning to sound like drivel, but I've \
run out of things to say and I need more characters still.}
set a($long) 777
set b $a($long)
list $b [array names a]
} {777 {{This is a very long variable, long enough to cause storage \
allocation to occur in Tcl_ParseVar. If that storage isn't getting \
freed up correctly, then a core leak will occur when this test is \
run. This text is probably beginning to sound like drivel, but I've \
run out of things to say and I need more characters still.}}}
test parse-5.14 {array variable substitution} {
catch {unset a}; catch {unset b}; catch {unset a1}
set a1(22) foo
set a(foo) bar
set b $a($a1(22))
set b
} bar
catch {unset a}; catch {unset a1}
# Backslash substitution.
set errNum 1
proc bsCheck {char num} {
global errNum
test parse-6.$errNum {backslash substitution} {
scan $char %c value
set value
} $num
set errNum [expr $errNum+1]
}
bsCheck \b 8
bsCheck \e 101
bsCheck \f 12
bsCheck \n 10
bsCheck \r 13
bsCheck \t 9
bsCheck \v 11
bsCheck \{ 123
bsCheck \} 125
bsCheck \[ 91
bsCheck \] 93
bsCheck \$ 36
bsCheck \ 32
bsCheck \; 59
bsCheck \\ 92
bsCheck \Ca 67
bsCheck \Ma 77
bsCheck \CMa 67
bsCheck \8a 8
bsCheck \14 12
bsCheck \141 97
bsCheck \340 224
bsCheck b\0 98
bsCheck \x 120
bsCheck \xa 10
bsCheck \x41 65
bsCheck \x541 65
2024-05-27 16:40:40 +02:00
test parse-6.1 {backslash substitution} {
2024-05-27 16:13:40 +02:00
set a "\a\c\n\]\}"
string length $a
} 5
2024-05-27 16:40:40 +02:00
test parse-6.2 {backslash substitution} {
2024-05-27 16:13:40 +02:00
set a {\a\c\n\]\}}
string length $a
} 10
2024-05-27 16:40:40 +02:00
test parse-6.3 {backslash substitution} {
2024-05-27 16:13:40 +02:00
set a "abc\
def"
set a
} {abc def}
2024-05-27 16:40:40 +02:00
test parse-6.4 {backslash substitution} {
2024-05-27 16:13:40 +02:00
set a {abc\
def}
set a
} {abc def}
2024-05-27 16:40:40 +02:00
test parse-6.5 {backslash substitution} {
2024-05-27 16:13:40 +02:00
set msg {}
set a xxx
set error [catch {if {24 < \
35} {set a 22} {set \
a 33}} msg]
list $error $msg $a
} {0 22 22}
2024-05-27 16:40:40 +02:00
test parse-6.6 {backslash substitution} {
2024-05-27 16:13:40 +02:00
eval "concat abc\\"
} "abc\\"
2024-05-27 16:40:40 +02:00
test parse-6.7 {backslash substitution} {
2024-05-27 16:13:40 +02:00
eval "concat \\\na"
} "a"
2024-05-27 16:40:40 +02:00
test parse-6.8 {backslash substitution} {
eval "concat x\\\n a"
2024-05-27 16:13:40 +02:00
} "x a"
2024-05-27 16:40:40 +02:00
test parse-6.9 {backslash substitution} {
2024-05-27 16:13:40 +02:00
eval "concat \\x"
} "x"
2024-05-27 16:40:40 +02:00
test parse-6.10 {backslash substitution} {
2024-05-27 16:13:40 +02:00
eval "list a b\\\nc d"
} {a b c d}
2024-05-27 16:40:40 +02:00
test parse-6.11 {backslash substitution} {
eval "list a \"b c\"\\\nd e"
} {a {b c} d e}
2024-05-27 16:13:40 +02:00
# Semi-colon.
2024-05-27 16:40:40 +02:00
test parse-7.1 {semi-colons} {
2024-05-27 16:13:40 +02:00
set b 0
getArgs a;set b 2
set argv
} a
2024-05-27 16:40:40 +02:00
test parse-7.2 {semi-colons} {
2024-05-27 16:13:40 +02:00
set b 0
getArgs a;set b 2
set b
} 2
2024-05-27 16:40:40 +02:00
test parse-7.3 {semi-colons} {
2024-05-27 16:13:40 +02:00
getArgs a b ; set b 1
set argv
} {a b}
2024-05-27 16:40:40 +02:00
test parse-7.4 {semi-colons} {
2024-05-27 16:13:40 +02:00
getArgs a b ; set b 1
set b
} 1
# The following checks are to ensure that the interpreter's result
# gets re-initialized by Tcl_Eval in all the right places.
2024-05-27 16:40:40 +02:00
test parse-8.1 {result initialization} {concat abc} abc
test parse-8.2 {result initialization} {concat abc; proc foo {} {}} {}
test parse-8.3 {result initialization} {concat abc; proc foo {} $a} {}
test parse-8.4 {result initialization} {proc foo {} [concat abc]} {}
test parse-8.5 {result initialization} {concat abc; } abc
test parse-8.6 {result initialization} {
2024-05-27 16:13:40 +02:00
eval {
concat abc
}} abc
2024-05-27 16:40:40 +02:00
test parse-8.7 {result initialization} {} {}
test parse-8.8 {result initialization} {concat abc; ; ;} abc
2024-05-27 16:13:40 +02:00
# Syntax errors.
2024-05-27 16:40:40 +02:00
test parse-9.1 {syntax errors} {catch "set a \{bcd" msg} 1
test parse-9.2 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch "set a \{bcd" msg
set msg
} {missing close-brace}
2024-05-27 16:40:40 +02:00
test parse-9.3 {syntax errors} {catch {set a "bcd} msg} 1
test parse-9.4 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch {set a "bcd} msg
set msg
} {missing "}
2024-05-27 16:40:40 +02:00
test parse-9.5 {syntax errors} {catch {set a "bcd"xy} msg} 1
test parse-9.6 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch {set a "bcd"xy} msg
set msg
} {extra characters after close-quote}
2024-05-27 16:40:40 +02:00
test parse-9.7 {syntax errors} {catch "set a {bcd}xy" msg} 1
test parse-9.8 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch "set a {bcd}xy" msg
set msg
} {extra characters after close-brace}
2024-05-27 16:40:40 +02:00
test parse-9.9 {syntax errors} {catch {set a [format abc} msg} 1
test parse-9.10 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch {set a [format abc} msg
set msg
} {missing close-bracket}
2024-05-27 16:40:40 +02:00
test parse-9.11 {syntax errors} {catch gorp-a-lot msg} 1
test parse-9.12 {syntax errors} {
2024-05-27 16:13:40 +02:00
catch gorp-a-lot msg
set msg
2024-05-27 16:40:40 +02:00
} {invalid command name "gorp-a-lot"}
test parse-9.13 {syntax errors} {
2024-05-27 16:13:40 +02:00
set a [concat {a}\
{b}]
set a
} {a b}
2024-05-27 16:40:40 +02:00
test parse-9.14 {syntax errors} {
list [catch {eval \$x[format "%01000d" 0](} msg] $msg $errorInfo
} {1 {missing )} {missing )
(parsing index for array "x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
invoked from within
"$x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ..."
("eval" body line 1)
invoked from within
"eval \$x[format "%01000d" 0]("}}
2024-05-27 16:13:40 +02:00
# Long values (stressing storage management)
set a {1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH}
2024-05-27 16:40:40 +02:00
test parse-10.1 {long values} {
2024-05-27 16:13:40 +02:00
string length $a
} 214
2024-05-27 16:40:40 +02:00
test parse-10.2 {long values} {
2024-05-27 16:13:40 +02:00
llength $a
} 43
test parse-1a1.3 {long values} {
set b "1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH"
set b
} $a
2024-05-27 16:40:40 +02:00
test parse-10.3 {long values} {
2024-05-27 16:13:40 +02:00
set b "$a"
set b
} $a
2024-05-27 16:40:40 +02:00
test parse-10.4 {long values} {
2024-05-27 16:13:40 +02:00
set b [set a]
set b
} $a
2024-05-27 16:40:40 +02:00
test parse-10.5 {long values} {
2024-05-27 16:13:40 +02:00
set b [concat 1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH]
string length $b
} 214
2024-05-27 16:40:40 +02:00
test parse-10.6 {long values} {
2024-05-27 16:13:40 +02:00
set b [concat 1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH]
llength $b
} 43
2024-05-27 16:40:40 +02:00
test parse-10.7 {long values} {
2024-05-27 16:13:40 +02:00
set b
} $a
2024-05-27 16:40:40 +02:00
test parse-10.8 {long values} {
2024-05-27 16:13:40 +02:00
set a [concat 0000 1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH IIII JJJJ KKKK LLLL MMMM NNNN OOOO PPPP QQQQ RRRR SSSS TTTT UUUU VVVV WWWW XXXX YYYY ZZZZ]
llength $a
} 62
set i 0
foreach j [concat 0000 1111 2222 3333 4444 5555 6666 7777 8888 9999 aaaa bbbb cccc dddd eeee ffff gggg hhhh iiii jjjj kkkk llll mmmm nnnn oooo pppp qqqq rrrr ssss tttt uuuu vvvv wwww xxxx yyyy zzzz AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH IIII JJJJ KKKK LLLL MMMM NNNN OOOO PPPP QQQQ RRRR SSSS TTTT UUUU VVVV WWWW XXXX YYYY ZZZZ] {
set test [string index 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ $i]
set test $test$test$test$test
set i [expr $i+1]
2024-05-27 16:40:40 +02:00
test parse-10.9 {long values} {
2024-05-27 16:13:40 +02:00
set j
} $test
}
2024-05-27 16:40:40 +02:00
test parse-10.10 {test buffer overflow in backslashes in braces} {
2024-05-27 16:13:40 +02:00
expr {"a" == {xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101\101}}
} 0
2024-05-27 16:40:40 +02:00
test parse-11.1 {comments} {
set a old
eval { # set a new}
set a
} {old}
test parse-11.2 {comments} {
set a old
eval " # set a new\nset a new"
set a
} {new}
test parse-11.3 {comments} {
set a old
eval " # set a new\\\nset a new"
set a
} {old}
test parse-11.4 {comments} {
set a old
eval " # set a new\\\\\nset a new"
set a
} {new}
test parse-12.1 {comments at the end of a bracketed script} {
set x "[
expr 1+1
# skip this!
]"
} {2}
if {[info command testwordend] == "testwordend"} {
test parse-13.1 {TclWordEnd procedure} {
testwordend " \n abc"
} {c}
test parse-13.2 {TclWordEnd procedure} {
testwordend " \\\n"
} {}
test parse-13.3 {TclWordEnd procedure} {
testwordend " \\\n "
} { }
test parse-13.4 {TclWordEnd procedure} {
testwordend {"abc"}
} {"}
test parse-13.5 {TclWordEnd procedure} {
testwordend {{xyz}}
} \}
test parse-13.6 {TclWordEnd procedure} {
testwordend {{a{}b{}\}} xyz}
} "\} xyz"
test parse-13.7 {TclWordEnd procedure} {
testwordend {abc[this is a]def ghi}
} {f ghi}
test parse-13.8 {TclWordEnd procedure} {
testwordend "puts\\\n\n "
} "s\\\n\n "
test parse-13.9 {TclWordEnd procedure} {
testwordend "puts\\\n "
} "s\\\n "
test parse-13.10 {TclWordEnd procedure} {
testwordend "puts\\\n xyz"
} "s\\\n xyz"
test parse-13.11 {TclWordEnd procedure} {
testwordend {a$x.$y(a long index) foo}
} ") foo"
test parse-13.12 {TclWordEnd procedure} {
testwordend {abc; def}
} {; def}
test parse-13.13 {TclWordEnd procedure} {
testwordend {abc def}
} {c def}
test parse-13.14 {TclWordEnd procedure} {
testwordend {abc def}
} {c def}
test parse-13.15 {TclWordEnd procedure} {
testwordend "abc\ndef"
} "c\ndef"
test parse-13.16 {TclWordEnd procedure} {
testwordend "abc"
} {c}
}
test parse-14.1 {TclScriptEnd procedure} {
info complete {puts [
expr 1+1
#this is a comment ]}
} {0}
test parse-14.2 {TclScriptEnd procedure} {
info complete "abc\\\n"
} {0}
test parse-14.3 {TclScriptEnd procedure} {
info complete "abc\\\\\n"
} {1}
test parse-14.4 {TclScriptEnd procedure} {
info complete "xyz \[abc \{abc\]"
} {0}
test parse-14.5 {TclScriptEnd procedure} {
info complete "xyz \[abc"
} {0}