os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/tests/concat.test
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
# Commands covered:  concat
sl@0
     2
#
sl@0
     3
# This file contains a collection of tests for one or more of the Tcl
sl@0
     4
# built-in commands.  Sourcing this file into Tcl runs the tests and
sl@0
     5
# generates output for errors.  No output means no errors were found.
sl@0
     6
#
sl@0
     7
# Copyright (c) 1991-1993 The Regents of the University of California.
sl@0
     8
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
sl@0
     9
# Copyright (c) 1998-1999 by Scriptics Corporation.
sl@0
    10
#
sl@0
    11
# See the file "license.terms" for information on usage and redistribution
sl@0
    12
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
sl@0
    13
#
sl@0
    14
# RCS: @(#) $Id: concat.test,v 1.5 2000/04/10 17:18:58 ericm Exp $
sl@0
    15
sl@0
    16
if {[lsearch [namespace children] ::tcltest] == -1} {
sl@0
    17
    package require tcltest
sl@0
    18
    namespace import -force ::tcltest::*
sl@0
    19
}
sl@0
    20
sl@0
    21
test concat-1.1 {simple concatenation} {
sl@0
    22
    concat a b c d e f g
sl@0
    23
} {a b c d e f g}
sl@0
    24
test concat-1.2 {merging lists together} {
sl@0
    25
    concat a {b c d} {e f g h}
sl@0
    26
} {a b c d e f g h}
sl@0
    27
test concat-1.3 {merge lists, retain sub-lists} {
sl@0
    28
    concat a {b {c d}} {{e f}} g h
sl@0
    29
} {a b {c d} {e f} g h}
sl@0
    30
test concat-1.4 {special characters} {
sl@0
    31
    concat a\{ {b \{c d} \{d
sl@0
    32
} "a{ b \\{c d {d"
sl@0
    33
sl@0
    34
test concat-2.1 {error: one empty argument} {
sl@0
    35
    concat {}
sl@0
    36
} {}
sl@0
    37
sl@0
    38
test concat-3.1 {error: no arguments} {
sl@0
    39
    list [catch concat msg] $msg
sl@0
    40
} {0 {}}
sl@0
    41
sl@0
    42
test concat-4.1 {pruning off extra white space} {
sl@0
    43
    concat {} {a b c}
sl@0
    44
} {a b c}
sl@0
    45
test concat-4.2 {pruning off extra white space} {
sl@0
    46
    concat x y "  a b c	\n\t  " "   "  " def "
sl@0
    47
} {x y a b c def}
sl@0
    48
test concat-4.3 {pruning off extra white space sets length correctly} {
sl@0
    49
    llength [concat { {{a}} }]
sl@0
    50
} 1
sl@0
    51
sl@0
    52
# cleanup
sl@0
    53
::tcltest::cleanupTests
sl@0
    54
return
sl@0
    55
sl@0
    56
sl@0
    57
sl@0
    58
sl@0
    59
sl@0
    60
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
sl@0
    65
sl@0
    66