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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  lreplace
  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 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: lreplace.test,v 1.7 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. test lreplace-1.1 {lreplace command} {
  20.     lreplace {1 2 3 4 5} 0 0 a
  21. } {a 2 3 4 5}
  22. test lreplace-1.2 {lreplace command} {
  23.     lreplace {1 2 3 4 5} 1 1 a
  24. } {1 a 3 4 5}
  25. test lreplace-1.3 {lreplace command} {
  26.     lreplace {1 2 3 4 5} 2 2 a
  27. } {1 2 a 4 5}
  28. test lreplace-1.4 {lreplace command} {
  29.     lreplace {1 2 3 4 5} 3 3 a
  30. } {1 2 3 a 5}
  31. test lreplace-1.5 {lreplace command} {
  32.     lreplace {1 2 3 4 5} 4 4 a
  33. } {1 2 3 4 a}
  34. test lreplace-1.6 {lreplace command} {
  35.     lreplace {1 2 3 4 5} 4 5 a
  36. } {1 2 3 4 a}
  37. test lreplace-1.7 {lreplace command} {
  38.     lreplace {1 2 3 4 5} -1 -1 a
  39. } {a 1 2 3 4 5}
  40. test lreplace-1.8 {lreplace command} {
  41.     lreplace {1 2 3 4 5} 2 end a b c d
  42. } {1 2 a b c d}
  43. test lreplace-1.9 {lreplace command} {
  44.     lreplace {1 2 3 4 5} 0 3
  45. } {5}
  46. test lreplace-1.10 {lreplace command} {
  47.     lreplace {1 2 3 4 5} 0 4
  48. } {}
  49. test lreplace-1.11 {lreplace command} {
  50.     lreplace {1 2 3 4 5} 0 1
  51. } {3 4 5}
  52. test lreplace-1.12 {lreplace command} {
  53.     lreplace {1 2 3 4 5} 2 3
  54. } {1 2 5}
  55. test lreplace-1.13 {lreplace command} {
  56.     lreplace {1 2 3 4 5} 3 end
  57. } {1 2 3}
  58. test lreplace-1.14 {lreplace command} {
  59.     lreplace {1 2 3 4 5} -1 4 a b c
  60. } {a b c}
  61. test lreplace-1.15 {lreplace command} {
  62.     lreplace {a b "c c" d e f} 3 3
  63. } {a b {c c} e f}
  64. test lreplace-1.16 {lreplace command} {
  65.     lreplace { 1 2 3 4 5} 0 0 a
  66. } {a 2 3 4 5}
  67. test lreplace-1.17 {lreplace command} {
  68.     lreplace {1 2 3 4 "5 6"} 4 4 a
  69. } {1 2 3 4 a}
  70. test lreplace-1.18 {lreplace command} {
  71.     lreplace {1 2 3 4 {5 6}} 4 4 a
  72. } {1 2 3 4 a}
  73. test lreplace-1.19 {lreplace command} {
  74.     lreplace {1 2 3 4} 2 end x y z
  75. } {1 2 x y z}
  76. test lreplace-1.20 {lreplace command} {
  77.     lreplace {1 2 3 4} end end a
  78. } {1 2 3 a}
  79. test lreplace-1.21 {lreplace command} {
  80.     lreplace {1 2 3 4} end 3 a
  81. } {1 2 3 a}
  82. test lreplace-1.22 {lreplace command} {
  83.     lreplace {1 2 3 4} end end
  84. } {1 2 3}
  85. test lreplace-1.23 {lreplace command} {
  86.     lreplace {1 2 3 4} 2 -1 xy
  87. } {1 2 xy 3 4}
  88. test lreplace-1.24 {lreplace command} {
  89.     lreplace {1 2 3 4} end -1 z
  90. } {1 2 3 z 4}
  91. test lreplace-1.25 {lreplace command} {
  92.     concat "[lreplace {}     hello} end end]"
  93. } {"} "}
  94. test lreplace-1.26 {lreplace command} {
  95.     catch {unset foo}
  96.     set foo {a b}
  97.     list [set foo [lreplace $foo end end]] 
  98.         [set foo [lreplace $foo end end]] 
  99.         [set foo [lreplace $foo end end]]
  100. } {a {} {}}
  101. test lreplace-2.1 {lreplace errors} {
  102.     list [catch lreplace msg] $msg
  103. } {1 {wrong # args: should be "lreplace list first last ?element element ...?"}}
  104. test lreplace-2.2 {lreplace errors} {
  105.     list [catch {lreplace a b} msg] $msg
  106. } {1 {wrong # args: should be "lreplace list first last ?element element ...?"}}
  107. test lreplace-2.3 {lreplace errors} {
  108.     list [catch {lreplace x a 10} msg] $msg
  109. } {1 {bad index "a": must be integer or end?-integer?}}
  110. test lreplace-2.4 {lreplace errors} {
  111.     list [catch {lreplace x 10 x} msg] $msg
  112. } {1 {bad index "x": must be integer or end?-integer?}}
  113. test lreplace-2.5 {lreplace errors} {
  114.     list [catch {lreplace x 10 1x} msg] $msg
  115. } {1 {bad index "1x": must be integer or end?-integer?}}
  116. test lreplace-2.6 {lreplace errors} {
  117.     list [catch {lreplace x 3 2} msg] $msg
  118. } {1 {list doesn't contain element 3}}
  119. test lreplace-2.7 {lreplace errors} {
  120.     list [catch {lreplace x 1 1} msg] $msg
  121. } {1 {list doesn't contain element 1}}
  122. test lreplace-3.1 {lreplace won't modify shared argument objects} {
  123.     proc p {} {
  124.         lreplace "a b c" 1 1 "x y"
  125.         return "a b c"
  126.     }
  127.     p
  128. } "a b c"
  129. # cleanup
  130. catch {unset foo}
  131. ::tcltest::cleanupTests
  132. return