diff options
author | hobbs <hobbs> | 2001-05-17 02:21:06 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-05-17 02:21:06 (GMT) |
commit | 18284b3edb580eca9fa3c4d28ea515e362e51a23 (patch) | |
tree | e9eed630ebbd144e28cb2d4f4ba122e70681a621 /tests/appendComp.test | |
parent | 8ea22a0b6d6fd6d009a1cd86ac8de8d14e1367f3 (diff) | |
download | tcl-18284b3edb580eca9fa3c4d28ea515e362e51a23.zip tcl-18284b3edb580eca9fa3c4d28ea515e362e51a23.tar.gz tcl-18284b3edb580eca9fa3c4d28ea515e362e51a23.tar.bz2 |
* tests/appendComp.test:
* tests/stringComp.test: new files for extended bytecode testing
Diffstat (limited to 'tests/appendComp.test')
-rw-r--r-- | tests/appendComp.test | 258 |
1 files changed, 258 insertions, 0 deletions
diff --git a/tests/appendComp.test b/tests/appendComp.test new file mode 100644 index 0000000..0e7a768 --- /dev/null +++ b/tests/appendComp.test @@ -0,0 +1,258 @@ +# Commands covered: append lappend +# +# 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. +# Copyright (c) 1994-1996 Sun Microsystems, Inc. +# Copyright (c) 1998-1999 by Scriptics Corporation. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. +# +# RCS: @(#) $Id: appendComp.test,v 1.2 2001/05/17 02:21:06 hobbs Exp $ + +if {[lsearch [namespace children] ::tcltest] == -1} { + package require tcltest + namespace import -force ::tcltest::* +} +catch {unset x} + +test append-1.1 {append command} { + catch {unset x} + proc foo {} {append ::x 1 2 abc "long string"} + list [foo] $x +} {{12abclong string} {12abclong string}} +test append-1.2 {append command} { + proc foo {} { + set x "" + list [append x first] [append x second] [append x third] $x + } + foo +} {first firstsecond firstsecondthird firstsecondthird} +test append-1.3 {append command} { + proc foo {} { + set x "abcd" + append x + } + foo +} abcd + +test append-2.1 {long appends} { + proc foo {} { + set x "" + for {set i 0} {$i < 1000} {set i [expr $i+1]} { + append x "foobar " + } + set y "foobar" + set y "$y $y $y $y $y $y $y $y $y $y" + set y "$y $y $y $y $y $y $y $y $y $y" + set y "$y $y $y $y $y $y $y $y $y $y " + expr {$x == $y} + } + foo +} 1 + +test append-3.1 {append errors} { + proc foo {} {append} + list [catch {foo} msg] $msg +} {1 {wrong # args: should be "append varName ?value value ...?"}} +test append-3.2 {append errors} { + proc foo {} { + set x "" + append x(0) 44 + } + list [catch {foo} msg] $msg +} {1 {can't set "x(0)": variable isn't array}} +test append-3.3 {append errors} { + proc foo {} { + catch {unset x} + append x + } + list [catch {foo} msg] $msg +} {1 {can't read "x": no such variable}} + +test append-4.1 {lappend command} { + proc foo {} { + global x + catch {unset x} + lappend x 1 2 abc "long string" + } + list [foo] $x +} {{1 2 abc {long string}} {1 2 abc {long string}}} +test append-4.2 {lappend command} { + proc foo {} { + set x "" + list [lappend x first] [lappend x second] [lappend x third] $x + } + foo +} {first {first second} {first second third} {first second third}} +test append-4.3 {lappend command} { + proc foo {} { + global x + set x old + unset x + lappend x new + } + set result [foo] + rename foo {} + set result +} {new} +test append-4.4 {lappend command} { + proc foo {} { + set x {} + lappend x \{\ abc + } + foo +} {\{\ abc} +test append-4.5 {lappend command} { + proc foo {} { + set x {} + lappend x \{ abc + } + foo +} {\{ abc} +test append-4.6 {lappend command} { + proc foo {} { + set x {1 2 3} + lappend x + } + foo +} {1 2 3} +test append-4.7 {lappend command} { + proc foo {} { + set x "a\{" + lappend x abc + } + foo +} "a\\\{ abc" +test append-4.8 {lappend command} { + proc foo {} { + set x "\\\{" + lappend x abc + } + foo +} "\\{ abc" +test append-4.9 {lappend command} { + proc foo {} { + set x " \{" + list [catch {lappend x abc} msg] $msg + } + foo +} {1 {unmatched open brace in list}} +test append-4.10 {lappend command} { + proc foo {} { + set x " \{" + list [catch {lappend x abc} msg] $msg + } + foo +} {1 {unmatched open brace in list}} +test append-4.11 {lappend command} { + proc foo {} { + set x "\{\{\{" + list [catch {lappend x abc} msg] $msg + } + foo +} {1 {unmatched open brace in list}} +test append-4.12 {lappend command} { + proc foo {} { + set x "x \{\{\{" + list [catch {lappend x abc} msg] $msg + } + foo +} {1 {unmatched open brace in list}} +test append-4.13 {lappend command} { + proc foo {} { + set x "x\{\{\{" + lappend x abc + } + foo +} "x\\\{\\\{\\\{ abc" +test append-4.14 {lappend command} { + proc foo {} { + set x " " + lappend x abc + } + foo +} "abc" +test append-4.15 {lappend command} { + proc foo {} { + set x "\\ " + lappend x abc + } + foo +} "{ } abc" +test append-4.16 {lappend command} { + proc foo {} { + set x "x " + lappend x abc + } + foo +} "x abc" +test append-4.17 {lappend command} { + proc foo {} { lappend x } + foo +} {} +test append-4.18 {lappend command} { + proc foo {} { lappend x {} } + foo +} {{}} + +proc check {var size} { + set l [llength $var] + if {$l != $size} { + return "length mismatch: should have been $size, was $l" + } + for {set i 0} {$i < $size} {set i [expr $i+1]} { + set j [lindex $var $i] + if {$j != "item $i"} { + return "element $i should have been \"item $i\", was \"$j\"" + } + } + return ok +} +test append-5.1 {long lappends} { + set x "" + for {set i 0} {$i < 300} {set i [expr $i+1]} { + lappend x "item $i" + } + check $x 300 +} ok + +test append-6.1 {lappend errors} { + proc foo {} {lappend} + list [catch {foo} msg] $msg +} {1 {wrong # args: should be "lappend varName ?value value ...?"}} +test append-6.2 {lappend errors} { + proc foo {} { + set x "" + lappend x(0) 44 + } + list [catch {foo} msg] $msg +} {1 {can't set "x(0)": variable isn't array}} + +test append-7.1 {lappend-created var and error in trace on that var} { + proc bar {} { + global x + catch {rename foo ""} + catch {unset x} + trace variable x w foo + proc foo {} {global x; unset x} + catch {lappend x 1} + proc foo {args} {global x; unset x} + info exists x + set x + lappend x 1 + list [info exists x] [catch {set x} msg] $msg + } + bar +} {0 1 {can't read "x": no such variable}} + +catch {unset i x result y} +catch {rename foo ""} +catch {rename check ""} + +# cleanup +::tcltest::cleanupTests +return |