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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  append lappend
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1991-1993 The Regents of the University of California.
  8. # Copyright (c) 1994-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: appendComp.test,v 1.5.4.1 2004/10/28 00:01:05 dgp Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. catch {unset x}
  20. test appendComp-1.1 {append command} {
  21.     catch {unset x}
  22.     proc foo {} {append ::x 1 2 abc "long string"}
  23.     list [foo] $x
  24. } {{12abclong string} {12abclong string}}
  25. test appendComp-1.2 {append command} {
  26.     proc foo {} {
  27. set x ""
  28. list [append x first] [append x second] [append x third] $x
  29.     }
  30.     foo
  31. } {first firstsecond firstsecondthird firstsecondthird}
  32. test appendComp-1.3 {append command} {
  33.     proc foo {} {
  34. set x "abcd"
  35. append x
  36.     }
  37.     foo
  38. } abcd
  39. test appendComp-2.1 {long appends} {
  40.     proc foo {} {
  41. set x ""
  42. for {set i 0} {$i < 1000} {set i [expr $i+1]} {
  43.     append x "foobar "
  44. }
  45. set y "foobar"
  46. set y "$y $y $y $y $y $y $y $y $y $y"
  47. set y "$y $y $y $y $y $y $y $y $y $y"
  48. set y "$y $y $y $y $y $y $y $y $y $y "
  49. expr {$x == $y}
  50.     }
  51.     foo
  52. } 1
  53. test appendComp-3.1 {append errors} {
  54.     proc foo {} {append}
  55.     list [catch {foo} msg] $msg
  56. } {1 {wrong # args: should be "append varName ?value value ...?"}}
  57. test appendComp-3.2 {append errors} {
  58.     proc foo {} {
  59. set x ""
  60. append x(0) 44
  61.     }
  62.     list [catch {foo} msg] $msg
  63. } {1 {can't set "x(0)": variable isn't array}}
  64. test appendComp-3.3 {append errors} {
  65.     proc foo {} {
  66. catch {unset x}
  67. append x
  68.     }
  69.     list [catch {foo} msg] $msg
  70. } {1 {can't read "x": no such variable}}
  71. test appendComp-4.1 {lappend command} {
  72.     proc foo {} {
  73. global x
  74. catch {unset x}
  75. lappend x 1 2 abc "long string"
  76.     }
  77.     list [foo] $x
  78. } {{1 2 abc {long string}} {1 2 abc {long string}}}
  79. test appendComp-4.2 {lappend command} {
  80.     proc foo {} {
  81. set x ""
  82. list [lappend x first] [lappend x second] [lappend x third] $x
  83.     }
  84.     foo
  85. } {first {first second} {first second third} {first second third}}
  86. test appendComp-4.3 {lappend command} {
  87.     proc foo {} {
  88. global x
  89. set x old
  90. unset x
  91. lappend x new
  92.     }
  93.     set result [foo]
  94.     rename foo {}
  95.     set result
  96. } {new}
  97. test appendComp-4.4 {lappend command} {
  98.     proc foo {} {
  99. set x {}
  100. lappend x {  abc
  101.     }
  102.     foo
  103. } {{  abc}
  104. test appendComp-4.5 {lappend command} {
  105.     proc foo {} {
  106. set x {}
  107. lappend x { abc
  108.     }
  109.     foo
  110. } {{ abc}
  111. test appendComp-4.6 {lappend command} {
  112.     proc foo {} {
  113. set x {1 2 3}
  114. lappend x
  115.     }
  116.     foo
  117. } {1 2 3}
  118. test appendComp-4.7 {lappend command} {
  119.     proc foo {} {
  120. set x "a{"
  121. lappend x abc
  122.     }
  123.     foo
  124. } "a\{ abc"
  125. test appendComp-4.8 {lappend command} {
  126.     proc foo {} {
  127. set x "\{"
  128. lappend x abc
  129.     }
  130.     foo
  131. } "\{ abc"
  132. test appendComp-4.9 {lappend command} {
  133.     proc foo {} {
  134. set x " {"
  135. list [catch {lappend x abc} msg] $msg
  136.     }
  137.     foo
  138. } {1 {unmatched open brace in list}}
  139. test appendComp-4.10 {lappend command} {
  140.     proc foo {} {
  141. set x " {"
  142. list [catch {lappend x abc} msg] $msg
  143.     }
  144.     foo
  145. } {1 {unmatched open brace in list}}
  146. test appendComp-4.11 {lappend command} {
  147.     proc foo {} {
  148. set x "{{{"
  149. list [catch {lappend x abc} msg] $msg
  150.     }
  151.     foo
  152. } {1 {unmatched open brace in list}}
  153. test appendComp-4.12 {lappend command} {
  154.     proc foo {} {
  155. set x "x {{{"
  156. list [catch {lappend x abc} msg] $msg
  157.     }
  158.     foo
  159. } {1 {unmatched open brace in list}}
  160. test appendComp-4.13 {lappend command} {
  161.     proc foo {} {
  162. set x "x{{{"
  163. lappend x abc
  164.     }
  165.     foo
  166. } "x\{\{\{ abc"
  167. test appendComp-4.14 {lappend command} {
  168.     proc foo {} {
  169. set x " "
  170. lappend x abc
  171.     }
  172.     foo
  173. } "abc"
  174. test appendComp-4.15 {lappend command} {
  175.     proc foo {} {
  176. set x "\ "
  177. lappend x abc
  178.     }
  179.     foo
  180. } "{ } abc"
  181. test appendComp-4.16 {lappend command} {
  182.     proc foo {} {
  183. set x "x "
  184. lappend x abc
  185.     }
  186.     foo
  187. } "x abc"
  188. test appendComp-4.17 {lappend command} {
  189.     proc foo {} { lappend x }
  190.     foo
  191. } {}
  192. test appendComp-4.18 {lappend command} {
  193.     proc foo {} { lappend x {} }
  194.     foo
  195. } {{}}
  196. test appendComp-4.19 {lappend command} {
  197.     proc foo {} { lappend x(0) }
  198.     foo
  199. } {}
  200. test appendComp-4.20 {lappend command} {
  201.     proc foo {} { lappend x(0) abc }
  202.     foo
  203. } {abc}
  204. proc check {var size} {
  205.     set l [llength $var]
  206.     if {$l != $size} {
  207. return "length mismatch: should have been $size, was $l"
  208.     }
  209.     for {set i 0} {$i < $size} {set i [expr $i+1]} {
  210. set j [lindex $var $i]
  211. if {$j != "item $i"} {
  212.     return "element $i should have been "item $i", was "$j""
  213. }
  214.     }
  215.     return ok
  216. }
  217. test appendComp-5.1 {long lappends} {
  218.     catch {unset x}
  219.     set x ""
  220.     for {set i 0} {$i < 300} {set i [expr $i+1]} {
  221. lappend x "item $i"
  222.     }
  223.     check $x 300
  224. } ok
  225. test appendComp-6.1 {lappend errors} {
  226.     proc foo {} {lappend}
  227.     list [catch {foo} msg] $msg
  228. } {1 {wrong # args: should be "lappend varName ?value value ...?"}}
  229. test appendComp-6.2 {lappend errors} {
  230.     proc foo {} {
  231. set x ""
  232. lappend x(0) 44
  233.     }
  234.     list [catch {foo} msg] $msg
  235. } {1 {can't set "x(0)": variable isn't array}}
  236. test appendComp-7.1 {lappendComp-created var and error in trace on that var} {
  237.     proc bar {} {
  238. global x
  239. catch {rename foo ""}
  240. catch {unset x}
  241. trace variable x w foo
  242. proc foo {} {global x; unset x}
  243. catch {lappend x 1}
  244. proc foo {args} {global x; unset x}
  245. info exists x
  246. set x
  247. lappend x 1
  248. list [info exists x] [catch {set x} msg] $msg
  249.     }
  250.     bar
  251. } {0 1 {can't read "x": no such variable}}
  252. test appendComp-7.2 {lappend var triggers read trace, index var} {
  253.     proc bar {} {
  254. catch {unset myvar}
  255. catch {unset ::result}
  256. trace variable myvar r foo
  257. proc foo {args} {append ::result $args}
  258. lappend myvar a
  259. list [catch {set ::result} msg] $msg
  260.     }
  261.     bar
  262. } {0 {myvar {} r}}
  263. test appendComp-7.3 {lappend var triggers read trace, stack var} {
  264.     proc bar {} {
  265. catch {unset ::myvar}
  266. catch {unset ::result}
  267. trace variable ::myvar r foo
  268. proc foo {args} {append ::result $args}
  269. lappend ::myvar a
  270. list [catch {set ::result} msg] $msg
  271.     }
  272.     bar
  273. } {0 {::myvar {} r}}
  274. test appendComp-7.4 {lappend var triggers read trace, array var} {
  275.     # The behavior of read triggers on lappend changed in 8.0 to
  276.     # not trigger them.  Maybe not correct, but been there a while.
  277.     proc bar {} {
  278. catch {unset myvar}
  279. catch {unset ::result}
  280. trace variable myvar r foo
  281. proc foo {args} {append ::result $args}
  282. lappend myvar(b) a
  283. list [catch {set ::result} msg] $msg
  284.     }
  285.     bar
  286. } {0 {myvar b r}}
  287. test appendComp-7.5 {lappend var triggers read trace, array var} {
  288.     # The behavior of read triggers on lappend changed in 8.0 to
  289.     # not trigger them.  Maybe not correct, but been there a while.
  290.     proc bar {} {
  291. catch {unset myvar}
  292. catch {unset ::result}
  293. trace variable myvar r foo
  294. proc foo {args} {append ::result $args}
  295. lappend myvar(b) a b
  296. list [catch {set ::result} msg] $msg
  297.     }
  298.     bar
  299. } {0 {myvar b r}}
  300. test appendComp-7.6 {lappend var triggers read trace, array var exists} {
  301.     proc bar {} {
  302. catch {unset myvar}
  303. catch {unset ::result}
  304. set myvar(0) 1
  305. trace variable myvar r foo
  306. proc foo {args} {append ::result $args}
  307. lappend myvar(b) a
  308. list [catch {set ::result} msg] $msg
  309.     }
  310.     bar
  311. } {0 {myvar b r}}
  312. test appendComp-7.7 {lappend var triggers read trace, array stack var} {
  313.     proc bar {} {
  314. catch {unset ::myvar}
  315. catch {unset ::result}
  316. trace variable ::myvar r foo
  317. proc foo {args} {append ::result $args}
  318. lappend ::myvar(b) a
  319. list [catch {set ::result} msg] $msg
  320.     }
  321.     bar
  322. } {0 {::myvar b r}}
  323. test appendComp-7.8 {lappend var triggers read trace, array stack var} {
  324.     proc bar {} {
  325. catch {unset ::myvar}
  326. catch {unset ::result}
  327. trace variable ::myvar r foo
  328. proc foo {args} {append ::result $args}
  329. lappend ::myvar(b) a b
  330. list [catch {set ::result} msg] $msg
  331.     }
  332.     bar
  333. } {0 {::myvar b r}}
  334. test appendComp-7.9 {append var does not trigger read trace} {
  335.     proc bar {} {
  336. catch {unset myvar}
  337. catch {unset ::result}
  338. trace variable myvar r foo
  339. proc foo {args} {append ::result $args}
  340. append myvar a
  341. info exists ::result
  342.     }
  343.     bar
  344. } {0}
  345. catch {unset i x result y}
  346. catch {rename foo ""}
  347. catch {rename bar ""}
  348. catch {rename check ""}
  349. catch {rename bar {}}
  350. # cleanup
  351. ::tcltest::cleanupTests
  352. return