listObj.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:7k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Functionality covered: operation of the procedures in tclListObj.c that
  2. # implement the Tcl type manager for the list object type.
  3. #
  4. # This file contains a collection of tests for one or more of the Tcl
  5. # built-in commands. Sourcing this file into Tcl runs the tests and
  6. # generates output for errors.  No output means no errors were found.
  7. #
  8. # Copyright (c) 1995-1996 Sun Microsystems, Inc.
  9. # Copyright (c) 1998-1999 by Scriptics Corporation.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: listObj.test,v 1.5 2000/04/10 17:19:01 ericm Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. if {[info commands testobj] == {}} {
  20.     puts "This application hasn't been compiled with the "testobj""
  21.     puts "command, so I can't test the Tcl type and object support."
  22.     ::tcltest::cleanupTests
  23.     return
  24. }
  25. catch {unset x}
  26. test listobj-1.1 {Tcl_GetListObjType} {
  27.     set t [testobj types]
  28.     set first [string first "list" $t]
  29.     set result [expr {$first != -1}]
  30. } {1}
  31. test listobj-2.1 {Tcl_SetListObj, use in lappend} {
  32.     catch {unset x}
  33.     list [lappend x 1 abc def] [lappend x 1 ghi jkl] $x
  34. } {{1 abc def} {1 abc def 1 ghi jkl} {1 abc def 1 ghi jkl}}
  35. test listobj-2.2 {Tcl_SetListObj, use in ObjInterpProc} {
  36.     proc return_args {args} {
  37.         return $args
  38.     }
  39.     list [return_args] [return_args x] [return_args x y]
  40. } {{} x {x y}}
  41. test listobj-2.3 {Tcl_SetListObj, zero element count} {
  42.     list
  43. } {}
  44. test listobj-3.1 {Tcl_ListObjAppend, list conversion} {
  45.     catch {unset x}
  46.     list [lappend x 1 2 abc "long string"] $x
  47. } {{1 2 abc {long string}} {1 2 abc {long string}}}
  48. test listobj-3.2 {Tcl_ListObjAppend, list conversion} {
  49.     set x ""
  50.     list [lappend x first second] [lappend x third fourth] $x
  51. } {{first second} {first second third fourth} {first second third fourth}}
  52. test listobj-3.3 {Tcl_ListObjAppend, list conversion} {
  53.     set x "abc def"
  54.     list [lappend x first second] $x
  55. } {{abc def first second} {abc def first second}}
  56. test listobj-3.4 {Tcl_ListObjAppend, error in conversion} {
  57.     set x " {"
  58.     list [catch {lappend x abc def} msg] $msg
  59. } {1 {unmatched open brace in list}}
  60. test listobj-3.5 {Tcl_ListObjAppend, force internal rep array to grow} {
  61.     set x ""
  62.     list [lappend x 1 1] [lappend x 2 2] [lappend x 3 3] [lappend x 4 4] 
  63.         [lappend x 5 5] [lappend x 6 6] [lappend x 7 7] [lappend x 8 8] $x
  64. } {{1 1} {1 1 2 2} {1 1 2 2 3 3} {1 1 2 2 3 3 4 4} {1 1 2 2 3 3 4 4 5 5} {1 1 2 2 3 3 4 4 5 5 6 6} {1 1 2 2 3 3 4 4 5 5 6 6 7 7} {1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8} {1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8}}
  65. test listobj-4.1 {Tcl_ListObjAppendElement, list conversion} {
  66.     catch {unset x}
  67.     list [lappend x 1] $x
  68. } {1 1}
  69. test listobj-4.2 {Tcl_ListObjAppendElement, list conversion} {
  70.     set x ""
  71.     list [lappend x first] [lappend x second] $x
  72. } {first {first second} {first second}}
  73. test listobj-4.3 {Tcl_ListObjAppendElement, list conversion} {
  74.     set x "abc def"
  75.     list [lappend x first] $x
  76. } {{abc def first} {abc def first}}
  77. test listobj-4.4 {Tcl_ListObjAppendElement, error in conversion} {
  78.     set x " {"
  79.     list [catch {lappend x abc} msg] $msg
  80. } {1 {unmatched open brace in list}}
  81. test listobj-4.5 {Tcl_ListObjAppendElement, force internal rep array to grow} {
  82.     set x ""
  83.     list [lappend x 1] [lappend x 2] [lappend x 3] [lappend x 4] 
  84.         [lappend x 5] [lappend x 6] [lappend x 7] [lappend x 8] $x
  85. } {1 {1 2} {1 2 3} {1 2 3 4} {1 2 3 4 5} {1 2 3 4 5 6} {1 2 3 4 5 6 7} {1 2 3 4 5 6 7 8} {1 2 3 4 5 6 7 8}}
  86. test listobj-5.1 {Tcl_ListObjIndex, basic tests} {
  87.     lindex {a b c} 0
  88. } a
  89. test listobj-5.2 {Tcl_ListObjIndex, basic tests} {
  90.     lindex a 0
  91. } a
  92. test listobj-5.3 {Tcl_ListObjIndex, basic tests} {
  93.     lindex {a {b c d} x} 1
  94. } {b c d}
  95. test listobj-5.4 {Tcl_ListObjIndex, basic tests} {
  96.     lindex {a b c} 3
  97. } {}
  98. test listobj-5.5 {Tcl_ListObjIndex, basic tests} {
  99.     lindex {a b c} 100
  100. } {}
  101. test listobj-5.6 {Tcl_ListObjIndex, basic tests} {
  102.     lindex a 100
  103. } {}
  104. test listobj-5.7 {Tcl_ListObjIndex, basic tests} {
  105.     lindex {} -1
  106. } {}
  107. test listobj-5.8 {Tcl_ListObjIndex, error in conversion} {
  108.     set x " {"
  109.     list [catch {lindex $x 0} msg] $msg
  110. } {1 {unmatched open brace in list}}
  111. test listobj-6.1 {Tcl_ListObjLength} {
  112.     llength {a b c d}
  113. } 4
  114. test listobj-6.2 {Tcl_ListObjLength} {
  115.     llength {a b c {a b {c d}} d}
  116. } 5
  117. test listobj-6.3 {Tcl_ListObjLength} {
  118.     llength {}
  119. } 0
  120. test listobj-6.4 {Tcl_ListObjLength, convert from non-list} {
  121.     llength 123
  122. } 1
  123. test listobj-6.5 {Tcl_ListObjLength, error converting from non-list} {
  124.     list [catch {llength "a b c {"} msg] $msg
  125. } {1 {unmatched open brace in list}}
  126. test listobj-6.6 {Tcl_ListObjLength, error converting from non-list} {
  127.     list [catch {llength "a {b}c"} msg] $msg
  128. } {1 {list element in braces followed by "c" instead of space}}
  129. test listobj-7.1 {Tcl_ListObjReplace, conversion from non-list} {
  130.     lreplace 123 0 0 x
  131. } {x}
  132. test listobj-7.2 {Tcl_ListObjReplace, error converting from non-list} {
  133.     list [catch {lreplace "a b c {" 1 1 x} msg] $msg
  134. } {1 {unmatched open brace in list}}
  135. test listobj-7.3 {Tcl_ListObjReplace, error converting from non-list} {
  136.     list [catch {lreplace "a {b}c" 1 2 x} msg] $msg
  137. } {1 {list element in braces followed by "c" instead of space}}
  138. test listobj-7.4 {Tcl_ListObjReplace, negative first element index} {
  139.     lreplace {1 2 3 4 5} -1 1 a
  140. } {a 3 4 5}
  141. test listobj-7.5 {Tcl_ListObjReplace, last element index >= num elems} {
  142.     lreplace {1 2 3 4 5} 3 7 a b c
  143. } {1 2 3 a b c}
  144. test listobj-7.6 {Tcl_ListObjReplace, first element index > last index} {
  145.     lreplace {1 2 3 4 5} 3 1 a b c
  146. } {1 2 3 a b c 4 5}
  147. test listobj-7.7 {Tcl_ListObjReplace, no new elements} {
  148.     lreplace {1 2 3 4 5} 1 1
  149. } {1 3 4 5}
  150. test listobj-7.8 {Tcl_ListObjReplace, shrink array in place} {
  151.     lreplace {1 2 3 4 5 6 7} 4 5
  152. } {1 2 3 4 7}
  153. test listobj-7.9 {Tcl_ListObjReplace, grow array in place} {
  154.     lreplace {1 2 3 4 5 6 7} 1 3 a b c d e
  155. } {1 a b c d e 5 6 7}
  156. test listobj-7.10 {Tcl_ListObjReplace, replace tail of array} {
  157.     lreplace {1 2 3 4 5 6 7} 3 6 a
  158. } {1 2 3 a}
  159. test listobj-7.11 {Tcl_ListObjReplace, must grow internal array} {
  160.     lreplace {1 2 3 4 5} 2 3 a b c d e f g h i j k l
  161. } {1 2 a b c d e f g h i j k l 5}
  162. test listobj-7.12 {Tcl_ListObjReplace, grow array, insert at start} {
  163.     lreplace {1 2 3 4 5} -1 -1 a b c d e f g h i j k l
  164. } {a b c d e f g h i j k l 1 2 3 4 5}
  165. test listobj-7.13 {Tcl_ListObjReplace, grow array, insert at end} {
  166.     lreplace {1 2 3 4 5} 4 1 a b c d e f g h i j k l
  167. } {1 2 3 4 a b c d e f g h i j k l 5}
  168. test listobj-8.1 {SetListFromAny} {
  169.     lindex {0 foox00help 2} 1
  170. } "foox00help"
  171. test listobj-9.1 {UpdateStringOfList} {
  172.     string length [list foox00help]
  173. } 8
  174. # cleanup
  175. ::tcltest::cleanupTests
  176. return