92 lines
3.4 KiB
Plaintext
92 lines
3.4 KiB
Plaintext
|
# Commands covered: linsert
|
||
|
#
|
||
|
# 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.
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
# Permission is hereby granted, without written agreement and without
|
||
|
# license or royalty fees, to use, copy, modify, and distribute this
|
||
|
# software and its documentation for any purpose, provided that the
|
||
|
# above copyright notice and the following two paragraphs appear in
|
||
|
# all copies of this software.
|
||
|
#
|
||
|
# IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
|
||
|
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
|
||
|
# OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
|
||
|
# CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
#
|
||
|
# THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
|
||
|
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||
|
# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
||
|
# ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
|
||
|
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
||
|
#
|
||
|
# $Header: /user6/ouster/tcl/tests/RCS/linsert.test,v 1.5 93/06/19 14:31:26 ouster Exp $ (Berkeley)
|
||
|
|
||
|
if {[string compare test [info procs test]] == 1} then {source defs}
|
||
|
|
||
|
test linsert-1.1 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 0 a
|
||
|
} {a 1 2 3 4 5}
|
||
|
test linsert-1.2 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 1 a
|
||
|
} {1 a 2 3 4 5}
|
||
|
test linsert-1.3 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 2 a
|
||
|
} {1 2 a 3 4 5}
|
||
|
test linsert-1.4 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 3 a
|
||
|
} {1 2 3 a 4 5}
|
||
|
test linsert-1.5 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 4 a
|
||
|
} {1 2 3 4 a 5}
|
||
|
test linsert-1.6 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 5 a
|
||
|
} {1 2 3 4 5 a}
|
||
|
test linsert-1.7 {linsert command} {
|
||
|
linsert {1 2 3 4 5} 2 one two \{three \$four
|
||
|
} {1 2 one two \{three {$four} 3 4 5}
|
||
|
test linsert-1.8 {linsert command} {
|
||
|
linsert {\{one \$two \{three \ four \ five} 2 a b c
|
||
|
} {\{one \$two a b c \{three \ four \ five}
|
||
|
test linsert-1.9 {linsert command} {
|
||
|
linsert {{1 2} {3 4} {5 6} {7 8}} 2 {x y} {a b}
|
||
|
} {{1 2} {3 4} {x y} {a b} {5 6} {7 8}}
|
||
|
test linsert-1.10 {linsert command} {
|
||
|
linsert {} 2 a b c
|
||
|
} {a b c}
|
||
|
test linsert-1.11 {linsert command} {
|
||
|
linsert {} 2 {}
|
||
|
} {{}}
|
||
|
test linsert-1.12 {linsert command} {
|
||
|
linsert {a b "c c" d e} 3 1
|
||
|
} {a b "c c" 1 d e}
|
||
|
test linsert-1.13 {linsert command} {
|
||
|
linsert { a b c d} 0 1 2
|
||
|
} {1 2 a b c d}
|
||
|
test linsert-1.14 {linsert command} {
|
||
|
linsert {a b c {d e f}} 4 1 2
|
||
|
} {a b c {d e f} 1 2}
|
||
|
test linsert-1.15 {linsert command} {
|
||
|
linsert {a b c \{\ abc} 4 q r
|
||
|
} {a b c \{\ q r abc}
|
||
|
test linsert-1.16 {linsert command} {
|
||
|
linsert {a b c \{ abc} 4 q r
|
||
|
} {a b c \{ q r abc}
|
||
|
|
||
|
test linsert-2.1 {linsert errors} {
|
||
|
list [catch linsert msg] $msg
|
||
|
} {1 {wrong # args: should be "linsert list index element ?element ...?"}}
|
||
|
test linsert-2.2 {linsert errors} {
|
||
|
list [catch {linsert a b} msg] $msg
|
||
|
} {1 {wrong # args: should be "linsert list index element ?element ...?"}}
|
||
|
test linsert-2.3 {linsert errors} {
|
||
|
list [catch {linsert a 12x 2} msg] $msg
|
||
|
} {1 {expected integer but got "12x"}}
|
||
|
test linsert-2.4 {linsert errors} {
|
||
|
list [catch {linsert \{ 12 2} msg] $msg
|
||
|
} {1 {unmatched open brace in list}}
|