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

通讯编程

开发平台:

Visual C++

  1. # The tests in this file cover the procedures in tclCmdMZ.c.
  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: cmdMZ.test,v 1.13.2.3 2004/02/25 23:38:16 dgp Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest 2.1
  17.     namespace import -force ::tcltest::*
  18. }
  19. # Tcl_PwdObjCmd
  20. test cmdMZ-1.1 {Tcl_PwdObjCmd} {
  21.     list [catch {pwd a} msg] $msg
  22. } {1 {wrong # args: should be "pwd"}}
  23. test cmdMZ-1.2 {Tcl_PwdObjCmd: simple pwd} {
  24.     catch pwd
  25. } 0
  26. test cmdMZ-1.3 {Tcl_PwdObjCmd: simple pwd} {
  27.     expr [string length pwd]>0
  28. } 1
  29. test cmdMZ-1.4 {Tcl_PwdObjCmd: failure} {unixOnly nonPortable} {
  30.     # This test fails on various unix platforms (eg Linux) where
  31.     # permissions caching causes this to fail.  The caching is strictly
  32.     # incorrect, but we have no control over that.
  33.     set foodir [file join [temporaryDirectory] foo]
  34.     file delete -force $foodir
  35.     file mkdir $foodir
  36.     set cwd [pwd]
  37.     cd $foodir
  38.     file attr . -permissions 000
  39.     set result [list [catch {pwd} msg] $msg]
  40.     cd $cwd
  41.     file delete -force $foodir
  42.     set result
  43. } {1 {error getting working directory name: permission denied}}
  44. # The tests for Tcl_RegexpObjCmd, Tcl_RegsubObjCmd are in regexp.test
  45. # Tcl_RenameObjCmd
  46. test cmdMZ-2.1 {Tcl_RenameObjCmd: error conditions} {
  47.     list [catch {rename r1} msg] $msg $errorCode
  48. } {1 {wrong # args: should be "rename oldName newName"} NONE}
  49. test cmdMZ-2.2 {Tcl_RenameObjCmd: error conditions} {
  50.     list [catch {rename r1 r2 r3} msg] $msg $errorCode
  51. } {1 {wrong # args: should be "rename oldName newName"} NONE}
  52. test cmdMZ-2.3 {Tcl_RenameObjCmd: success} {
  53.     catch {rename r2 {}}
  54.     proc r1 {} {return "r1"}
  55.     rename r1 r2
  56.     r2
  57. } {r1}
  58. test cmdMZ-2.4 {Tcl_RenameObjCmd: success} {
  59.     proc r1 {} {return "r1"}
  60.     rename r1 {}
  61.     list [catch {r1} msg] $msg
  62. } {1 {invalid command name "r1"}}
  63. # The tests for Tcl_ReturnObjCmd are in proc-old.test
  64. # The tests for Tcl_ScanObjCmd are in scan.test
  65. # Tcl_SourceObjCmd
  66. test cmdMZ-3.1 {Tcl_SourceObjCmd: error conditions} {macOnly} {
  67.     list [catch {source} msg] $msg
  68. } {1 {wrong # args: should be "source fileName" or "source -rsrc name ?fileName?" or "source -rsrcid id ?fileName?"}}
  69. test cmdMZ-3.2 {Tcl_SourceObjCmd: error conditions} {macOnly} {
  70.     list [catch {source a b} msg] $msg
  71. } {1 {bad argument: should be "source fileName" or "source -rsrc name ?fileName?" or "source -rsrcid id ?fileName?"}}
  72. test cmdMZ-3.3 {Tcl_SourceObjCmd: error conditions} {unixOrPc} {
  73.     list [catch {source} msg] $msg
  74. } {1 {wrong # args: should be "source fileName"}}
  75. test cmdMZ-3.4 {Tcl_SourceObjCmd: error conditions} {unixOrPc} {
  76.     list [catch {source a b} msg] $msg
  77. } {1 {wrong # args: should be "source fileName"}}
  78. proc ListGlobMatch {expected actual} {
  79.     if {[llength $expected] != [llength $actual]} {
  80. return 0
  81.     }
  82.     foreach e $expected a $actual {
  83. if {![string match $e $a]} {
  84.     return 0
  85. }
  86.     }
  87.     return 1
  88. }
  89. customMatch listGlob ListGlobMatch
  90. test cmdMZ-3.5 {Tcl_SourceObjCmd: error in script} -setup {
  91.     set file [makeFile {
  92. set x 146
  93. error "error in sourced file"
  94. set y $x
  95.     } source.file]
  96. } -body {
  97.     list [catch {source $file} msg] $msg $errorInfo
  98. } -cleanup {
  99.     removeFile source.file
  100. } -match listGlob -result {1 {error in sourced file} {error in sourced file
  101.     while executing
  102. "error "error in sourced file""
  103.     (file "*" line 3)
  104.     invoked from within
  105. "source $file"}}
  106. test cmdMZ-3.6 {Tcl_SourceObjCmd: simple script} {
  107.     set file [makeFile {list result} source.file]
  108.     set result [source $file]
  109.     removeFile source.file
  110.     set result
  111. } result
  112. # Tcl_SplitObjCmd
  113. test cmdMZ-4.1 {Tcl_SplitObjCmd: split errors} {
  114.     list [catch split msg] $msg $errorCode
  115. } {1 {wrong # args: should be "split string ?splitChars?"} NONE}
  116. test cmdMZ-4.2 {Tcl_SplitObjCmd: split errors} {
  117.     list [catch {split a b c} msg] $msg $errorCode
  118. } {1 {wrong # args: should be "split string ?splitChars?"} NONE}
  119. test cmdMZ-4.3 {Tcl_SplitObjCmd: basic split commands} {
  120.     split "an btr cn "
  121. } {a {} b {} {} c {} {}}
  122. test cmdMZ-4.4 {Tcl_SplitObjCmd: basic split commands} {
  123.     split "word 1xyzword 2zword 3" xyz
  124. } {{word 1} {} {} {word 2} {word 3}}
  125. test cmdMZ-4.5 {Tcl_SplitObjCmd: basic split commands} {
  126.     split "12345" {}
  127. } {1 2 3 4 5}
  128. test cmdMZ-4.6 {Tcl_SplitObjCmd: basic split commands} {
  129.     split "a}b[c{]$"
  130. } "a\}b\[c\{\]\$"
  131. test cmdMZ-4.7 {Tcl_SplitObjCmd: basic split commands} {
  132.     split {} {}
  133. } {}
  134. test cmdMZ-4.8 {Tcl_SplitObjCmd: basic split commands} {
  135.     split {}
  136. } {}
  137. test cmdMZ-4.9 {Tcl_SplitObjCmd: basic split commands} {
  138.     split {   }
  139. } {{} {} {} {}}
  140. test cmdMZ-4.10 {Tcl_SplitObjCmd: basic split commands} {
  141.     proc foo {} {
  142.         set x {}
  143.         foreach f [split {]n} {}] {
  144.             append x $f
  145.         }
  146.         return $x
  147.     }
  148.     foo
  149. } {]n}
  150. test cmdMZ-4.11 {Tcl_SplitObjCmd: basic split commands} {
  151.     proc foo {} {
  152.         set x ab00c
  153.         set y [split $x {}]
  154.         return $y
  155.     }
  156.     foo
  157. } "a b 00 c"
  158. test cmdMZ-4.12 {Tcl_SplitObjCmd: basic split commands} {
  159.     split "a0ab1b2bbb300c4" ab00c
  160. } {{} 0 {} 1 2 {} {} 3 {} 4}
  161. test cmdMZ-4.13 {Tcl_SplitObjCmd: basic split commands} {
  162.     # if not UTF-8 aware, result is "a {} {} b qwxe5 {} N wq"
  163.     split "au4e4eb qwu5e4ex4e wq" " u4e4e"
  164. } "a b qwu5e4eN wq"
  165. # The tests for Tcl_StringObjCmd are in string.test
  166. # The tests for Tcl_SubstObjCmd are in subst.test
  167. # The tests for Tcl_SwitchObjCmd are in switch.test
  168. test cmdMZ-5.1 {Tcl_TimeObjCmd: basic format of command} {
  169.     list [catch {time} msg] $msg
  170. } {1 {wrong # args: should be "time command ?count?"}}
  171. test cmdMZ-5.2 {Tcl_TimeObjCmd: basic format of command} {
  172.     list [catch {time a b c} msg] $msg
  173. } {1 {wrong # args: should be "time command ?count?"}}
  174. test cmdMZ-5.3 {Tcl_TimeObjCmd: basic format of command} {
  175.     list [catch {time a b} msg] $msg
  176. } {1 {expected integer but got "b"}}
  177. test cmdMZ-5.4 {Tcl_TimeObjCmd: nothing happens with negative iteration counts} {
  178.     time bogusCmd -12456
  179. } {0 microseconds per iteration}
  180. test cmdMZ-5.5 {Tcl_TimeObjCmd: result format} {
  181.     regexp {^d+ microseconds per iteration} [time {format 1}]
  182. } 1
  183. test cmdMZ-5.6 {Tcl_TimeObjCmd: slower commands take longer} {
  184.     expr {[lindex [time {after 2}] 0] < [lindex [time {after 1000}] 0]}
  185. } 1
  186. test cmdMZ-5.7 {Tcl_TimeObjCmd: errors generate right trace} {
  187.     list [catch {time {error foo}} msg] $msg $::errorInfo
  188. } {1 foo {foo
  189.     while executing
  190. "error foo"
  191.     invoked from within
  192. "time {error foo}"}}
  193. # The tests for Tcl_TraceObjCmd and TraceVarProc are in trace.test
  194. # The tests for Tcl_WhileObjCmd are in while.test
  195. # cleanup
  196. ::tcltest::cleanupTests
  197. return