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

通讯编程

开发平台:

Visual C++

  1. # -*- tcl -*-
  2. # Commands covered: open, close, gets, read, puts, seek, tell, eof, flush,
  3. #     fblocked, fconfigure, open, channel, fcopy
  4. #
  5. # This file contains a collection of tests for one or more of the Tcl
  6. # built-in commands.  Sourcing this file into Tcl runs the tests and
  7. # generates output for errors.  No output means no errors were found.
  8. #
  9. # Copyright (c) 1991-1994 The Regents of the University of California.
  10. # Copyright (c) 1994-1996 Sun Microsystems, Inc.
  11. # Copyright (c) 1998-1999 by Scriptics Corporation.
  12. #
  13. # See the file "license.terms" for information on usage and redistribution
  14. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  15. #
  16. # RCS: @(#) $Id: ioCmd.test,v 1.16.2.3 2006/03/16 18:23:24 andreas_kupries Exp $
  17. if {[lsearch [namespace children] ::tcltest] == -1} {
  18.     package require tcltest
  19.     namespace import -force ::tcltest::*
  20. }
  21. testConstraint fcopy [llength [info commands fcopy]]
  22. test iocmd-1.1 {puts command} {
  23.    list [catch {puts} msg] $msg
  24. } {1 {wrong # args: should be "puts ?-nonewline? ?channelId? string"}}
  25. test iocmd-1.2 {puts command} {
  26.    list [catch {puts a b c d e f g} msg] $msg
  27. } {1 {wrong # args: should be "puts ?-nonewline? ?channelId? string"}}
  28. test iocmd-1.3 {puts command} {
  29.    list [catch {puts froboz -nonewline kablooie} msg] $msg
  30. } {1 {bad argument "kablooie": should be "nonewline"}}
  31. test iocmd-1.4 {puts command} {
  32.    list [catch {puts froboz hello} msg] $msg
  33. } {1 {can not find channel named "froboz"}}
  34. test iocmd-1.5 {puts command} {
  35.    list [catch {puts stdin hello} msg] $msg
  36. } {1 {channel "stdin" wasn't opened for writing}}
  37. set path(test1) [makeFile {} test1]
  38. test iocmd-1.6 {puts command} {
  39.     set f [open $path(test1) w]
  40.     fconfigure $f -translation lf -eofchar {}
  41.     puts -nonewline $f foobar
  42.     close $f
  43.     file size $path(test1)
  44. } 6
  45. test iocmd-1.7 {puts command} {
  46.     set f [open $path(test1) w]
  47.     fconfigure $f -translation lf -eofchar {}
  48.     puts $f foobar
  49.     close $f
  50.     file size $path(test1)
  51. } 7
  52. test iocmd-1.8 {puts command} {
  53.     set f [open $path(test1) w]
  54.     fconfigure $f -translation lf -eofchar {} -encoding iso8859-1
  55.     puts -nonewline $f [binary format a4a5 foo bar]
  56.     close $f
  57.     file size $path(test1)
  58. } 9
  59. test iocmd-2.1 {flush command} {
  60.    list [catch {flush} msg] $msg
  61. } {1 {wrong # args: should be "flush channelId"}}
  62. test iocmd-2.2 {flush command} {
  63.    list [catch {flush a b c d e} msg] $msg
  64. } {1 {wrong # args: should be "flush channelId"}}
  65. test iocmd-2.3 {flush command} {
  66.    list [catch {flush foo} msg] $msg
  67. } {1 {can not find channel named "foo"}}
  68. test iocmd-2.4 {flush command} {
  69.    list [catch {flush stdin} msg] $msg
  70. } {1 {channel "stdin" wasn't opened for writing}}
  71. test iocmd-3.1 {gets command} {
  72.    list [catch {gets} msg] $msg
  73. } {1 {wrong # args: should be "gets channelId ?varName?"}}
  74. test iocmd-3.2 {gets command} {
  75.    list [catch {gets a b c d e f g} msg] $msg
  76. } {1 {wrong # args: should be "gets channelId ?varName?"}}
  77. test iocmd-3.3 {gets command} {
  78.    list [catch {gets aaa} msg] $msg
  79. } {1 {can not find channel named "aaa"}}
  80. test iocmd-3.4 {gets command} {
  81.    list [catch {gets stdout} msg] $msg
  82. } {1 {channel "stdout" wasn't opened for reading}}
  83. test iocmd-3.5 {gets command} {
  84.     set f [open $path(test1) w]
  85.     puts $f [binary format a4a5 foo bar]
  86.     close $f
  87.     set f [open $path(test1) r]
  88.     set result [gets $f]
  89.     close $f
  90.     set x foox00
  91.     set x "${x}barx00x00"
  92.     string compare $x $result
  93. } 0
  94. test iocmd-4.1 {read command} {
  95.    list [catch {read} msg] $msg
  96. } {1 {wrong # args: should be "read channelId ?numChars?" or "read ?-nonewline? channelId"}}
  97. test iocmd-4.2 {read command} {
  98.    list [catch {read a b c d e f g h} msg] $msg
  99. } {1 {wrong # args: should be "read channelId ?numChars?" or "read ?-nonewline? channelId"}}
  100. test iocmd-4.3 {read command} {
  101.    list [catch {read aaa} msg] $msg
  102. } {1 {can not find channel named "aaa"}}
  103. test iocmd-4.4 {read command} {
  104.    list [catch {read -nonewline} msg] $msg
  105. } {1 {wrong # args: should be "read channelId ?numChars?" or "read ?-nonewline? channelId"}}
  106. test iocmd-4.5 {read command} {
  107.    list [catch {read -nonew file4} msg] $msg $errorCode
  108. } {1 {can not find channel named "-nonew"} NONE}
  109. test iocmd-4.6 {read command} {
  110.    list [catch {read stdout} msg] $msg
  111. } {1 {channel "stdout" wasn't opened for reading}}
  112. test iocmd-4.7 {read command} {
  113.    list [catch {read -nonewline stdout} msg] $msg
  114. } {1 {channel "stdout" wasn't opened for reading}}
  115. test iocmd-4.8 {read command with incorrect combination of arguments} {
  116.     file delete $path(test1)
  117.     set f [open $path(test1) w]
  118.     puts $f "Two lines: this one"
  119.     puts $f "and this one"
  120.     close $f
  121.     set f [open $path(test1)]
  122.     set x [list [catch {read -nonewline $f 20 z} msg] $msg $errorCode]
  123.     close $f
  124.     set x
  125. } {1 {wrong # args: should be "read channelId ?numChars?" or "read ?-nonewline? channelId"} NONE}
  126. test iocmd-4.9 {read command} {
  127.     list [catch {read stdin foo} msg] $msg $errorCode
  128. } {1 {bad argument "foo": should be "nonewline"} NONE}
  129. test iocmd-4.10 {read command} {
  130.     list [catch {read file107} msg] $msg $errorCode
  131. } {1 {can not find channel named "file107"} NONE}
  132. set path(test3) [makeFile {} test3]
  133. test iocmd-4.11 {read command} {
  134.     set f [open $path(test3) w]
  135.     set x [list [catch {read $f} msg] $msg $errorCode]
  136.     close $f
  137.     string compare [string tolower $x] 
  138. [list 1 [format "channel "%s" wasn't opened for reading" $f] none]
  139. } 0
  140. test iocmd-4.12 {read command} {
  141.     set f [open $path(test1)]
  142.     set x [list [catch {read $f 12z} msg] $msg $errorCode]
  143.     close $f
  144.     set x
  145. } {1 {expected integer but got "12z"} NONE}
  146. test iocmd-5.1 {seek command} {
  147.     list [catch {seek} msg] $msg
  148. } {1 {wrong # args: should be "seek channelId offset ?origin?"}}
  149. test iocmd-5.2 {seek command} {
  150.     list [catch {seek a b c d e f g} msg] $msg
  151. } {1 {wrong # args: should be "seek channelId offset ?origin?"}}
  152. test iocmd-5.3 {seek command} {
  153.     list [catch {seek stdin gugu} msg] $msg
  154. } {1 {expected integer but got "gugu"}}
  155. test iocmd-5.4 {seek command} {
  156.     list [catch {seek stdin 100 gugu} msg] $msg
  157. } {1 {bad origin "gugu": must be start, current, or end}}
  158. test iocmd-6.1 {tell command} {
  159.     list [catch {tell} msg] $msg
  160. } {1 {wrong # args: should be "tell channelId"}}
  161. test iocmd-6.2 {tell command} {
  162.     list [catch {tell a b c d e} msg] $msg
  163. } {1 {wrong # args: should be "tell channelId"}}
  164. test iocmd-6.3 {tell command} {
  165.     list [catch {tell aaa} msg] $msg
  166. } {1 {can not find channel named "aaa"}}
  167. test iocmd-7.1 {close command} {
  168.     list [catch {close} msg] $msg
  169. } {1 {wrong # args: should be "close channelId"}}
  170. test iocmd-7.2 {close command} {
  171.     list [catch {close a b c d e} msg] $msg
  172. } {1 {wrong # args: should be "close channelId"}}
  173. test iocmd-7.3 {close command} {
  174.     list [catch {close aaa} msg] $msg
  175. } {1 {can not find channel named "aaa"}}
  176. test iocmd-8.1 {fconfigure command} {
  177.     list [catch {fconfigure} msg] $msg
  178. } {1 {wrong # args: should be "fconfigure channelId ?optionName? ?value? ?optionName value?..."}}
  179. test iocmd-8.2 {fconfigure command} {
  180.     list [catch {fconfigure a b c d e f} msg] $msg
  181. } {1 {wrong # args: should be "fconfigure channelId ?optionName? ?value? ?optionName value?..."}}
  182. test iocmd-8.3 {fconfigure command} {
  183.     list [catch {fconfigure a b} msg] $msg
  184. } {1 {can not find channel named "a"}}
  185. test iocmd-8.4 {fconfigure command} {
  186.     file delete $path(test1)
  187.     set f1 [open $path(test1) w]
  188.     set x [list [catch {fconfigure $f1 froboz} msg] $msg]
  189.     close $f1
  190.     set x
  191. } {1 {bad option "froboz": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}}
  192. test iocmd-8.5 {fconfigure command} {
  193.     list [catch {fconfigure stdin -buffering froboz} msg] $msg
  194. } {1 {bad value for -buffering: must be one of full, line, or none}}
  195. test iocmd-8.6 {fconfigure command} {
  196.     list [catch {fconfigure stdin -translation froboz} msg] $msg
  197. } {1 {bad value for -translation: must be one of auto, binary, cr, lf, crlf, or platform}}
  198. test iocmd-8.7 {fconfigure command} {
  199.     file delete $path(test1)
  200.     set f1 [open $path(test1) w]
  201.     fconfigure $f1 -translation lf -eofchar {} -encoding unicode
  202.     set x [fconfigure $f1]
  203.     close $f1
  204.     set x
  205. } {-blocking 1 -buffering full -buffersize 4096 -encoding unicode -eofchar {} -translation lf}
  206. test iocmd-8.8 {fconfigure command} {
  207.     file delete $path(test1)
  208.     set f1 [open $path(test1) w]
  209.     fconfigure $f1 -translation lf -buffering line -buffersize 3030 
  210. -eofchar {} -encoding unicode
  211.     set x ""
  212.     lappend x [fconfigure $f1 -buffering]
  213.     lappend x [fconfigure $f1]
  214.     close $f1
  215.     set x
  216. } {line {-blocking 1 -buffering line -buffersize 3030 -encoding unicode -eofchar {} -translation lf}}
  217. test iocmd-8.9 {fconfigure command} {
  218.     file delete $path(test1)
  219.     set f1 [open $path(test1) w]
  220.     fconfigure $f1 -translation binary -buffering none -buffersize 4040 
  221. -eofchar {} -encoding binary
  222.     set x [fconfigure $f1]
  223.     close $f1
  224.     set x
  225. } {-blocking 1 -buffering none -buffersize 4040 -encoding binary -eofchar {} -translation lf}
  226. test iocmd-8.10 {fconfigure command} {
  227.     list [catch {fconfigure a b} msg] $msg
  228. } {1 {can not find channel named "a"}}
  229. set path(fconfigure.dummy) [makeFile {} fconfigure.dummy]
  230. test iocmd-8.11 {fconfigure command} {
  231.     set chan [open $path(fconfigure.dummy) r]
  232.     set res [list [catch {fconfigure $chan -froboz blarfo} msg] $msg]
  233.     close $chan
  234.     set res
  235. } {1 {bad option "-froboz": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}}
  236. test iocmd-8.12 {fconfigure command} {
  237.     set chan [open $path(fconfigure.dummy) r]
  238.     set res [list [catch {fconfigure $chan -b blarfo} msg] $msg]
  239.     close $chan
  240.     set res
  241. } {1 {bad option "-b": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}}
  242. test iocmd-8.13 {fconfigure command} {
  243.     set chan [open $path(fconfigure.dummy) r]
  244.     set res [list [catch {fconfigure $chan -buffer blarfo} msg] $msg]
  245.     close $chan
  246.     set res
  247. } {1 {bad option "-buffer": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}}
  248. removeFile fconfigure.dummy
  249. test iocmd-8.14 {fconfigure command} {
  250.     fconfigure stdin -buffers
  251. } 4096
  252. proc iocmdSSETUP {} {
  253.     uplevel {
  254. set srv [socket -server iocmdSRV 0]
  255. set port [lindex [fconfigure $srv -sockname] 2]
  256. proc iocmdSRV {sock ip port} {close $sock}
  257. set cli [socket 127.0.0.1 $port]
  258.     }
  259. }
  260. proc iocmdSSHTDWN {} {
  261.     uplevel {
  262. close $cli
  263. close $srv
  264. unset cli srv port
  265. rename iocmdSRV {}
  266.     }
  267. }
  268. test iocmd-8.15.0 {fconfigure command / tcp channel} {socket macOnly} {
  269. iocmdSSETUP
  270. set r [list [catch {fconfigure $cli -blah} msg] $msg]
  271. iocmdSSHTDWN
  272. set r
  273. } {1 {bad option "-blah": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, -translation, -error, -peername, or -sockname}}
  274. test iocmd-8.15.1 {fconfigure command / tcp channel} {socket unixOrPc} {
  275. iocmdSSETUP
  276. set r [list [catch {fconfigure $cli -blah} msg] $msg]
  277. iocmdSSHTDWN
  278. set r
  279. } {1 {bad option "-blah": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, -translation, -peername, or -sockname}}
  280. test iocmd-8.16 {fconfigure command / tcp channel} {socket} {
  281. iocmdSSETUP
  282. set r [expr [lindex [fconfigure $cli -peername] 2]==$port]
  283. iocmdSSHTDWN
  284. set r
  285. } 1
  286. test iocmd-8.17 {fconfigure command / tcp channel} {nonPortable} {
  287. # It is possible that you don't get the connection reset by peer
  288.         # error but rather a valid answer. depends of the tcp implementation
  289. iocmdSSETUP
  290. update;
  291. puts $cli "blah"; flush $cli; # that flush could/should fail too
  292. update;
  293. set r [catch {fconfigure $cli -peername} msg]
  294. iocmdSSHTDWN
  295. regsub -all {can([^:])+: } $r {} r;
  296. set r
  297. } 1
  298. test iocmd-8.18 {fconfigure command / unix tty channel} {nonPortable unixOnly} {
  299. # might fail if /dev/ttya is unavailable
  300. set tty [open /dev/ttya]
  301. set r [list [catch {fconfigure $tty -blah blih} msg] $msg];
  302. close $tty;
  303. set r;
  304. } {1 {bad option "-blah": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, -translation, or -mode}}
  305. test iocmd-8.19 {fconfigure command / win tty channel} {nonPortable pcOnly} {
  306. # might fail if com1 is unavailable
  307. set tty [open com1]
  308. set r [list [catch {fconfigure $tty -blah blih} msg] $msg];
  309. close $tty;
  310. set r;
  311. } {1 {bad option "-blah": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, -translation, -mode, or -pollinterval}}
  312. test iocmd-9.1 {eof command} {
  313.     list [catch {eof} msg] $msg $errorCode
  314. } {1 {wrong # args: should be "eof channelId"} NONE}
  315. test iocmd-9.2 {eof command} {
  316.     list [catch {eof a b} msg] $msg $errorCode
  317. } {1 {wrong # args: should be "eof channelId"} NONE}
  318. test iocmd-9.3 {eof command} {
  319.     catch {close file100}
  320.     list [catch {eof file100} msg] $msg $errorCode
  321. } {1 {can not find channel named "file100"} NONE}
  322. # The tests for Tcl_ExecObjCmd are in exec.test
  323. test iocmd-10.1 {fblocked command} {
  324.     list [catch {fblocked} msg] $msg
  325. } {1 {wrong # args: should be "fblocked channelId"}}
  326. test iocmd-10.2 {fblocked command} {
  327.     list [catch {fblocked a b c d e f g} msg] $msg
  328. } {1 {wrong # args: should be "fblocked channelId"}}
  329. test iocmd-10.3 {fblocked command} {
  330.     list [catch {fblocked file1000} msg] $msg
  331. } {1 {can not find channel named "file1000"}}
  332. test iocmd-10.4 {fblocked command} {
  333.     list [catch {fblocked stdout} msg] $msg
  334. } {1 {channel "stdout" wasn't opened for reading}}
  335. test iocmd-10.5 {fblocked command} {
  336.     fblocked stdin
  337. } 0
  338. set path(test4) [makeFile {} test4]
  339. set path(test5) [makeFile {} test5]
  340. file delete $path(test5)
  341. test iocmd-11.1 {I/O to command pipelines} {unixOrPc unixExecs} {
  342.     set f [open $path(test4) w]
  343.     close $f
  344.     list [catch {open "| cat < $path(test4) > $path(test5)" w} msg] $msg $errorCode
  345. } {1 {can't write input to command: standard input was redirected} NONE}
  346. test iocmd-11.2 {I/O to command pipelines} {unixOrPc unixExecs} {
  347.     list [catch {open "| echo > $path(test5)" r} msg] $msg $errorCode
  348. } {1 {can't read output from command: standard output was redirected} NONE}
  349. test iocmd-11.3 {I/O to command pipelines} {unixOrPc unixExecs} {
  350.     list [catch {open "| echo > $path(test5)" r+} msg] $msg $errorCode
  351. } {1 {can't read output from command: standard output was redirected} NONE}
  352. test iocmd-12.1 {POSIX open access modes: RDONLY} {
  353.     file delete $path(test1)
  354.     set f [open $path(test1) w]
  355.     puts $f "Two lines: this one"
  356.     puts $f "and this one"
  357.     close $f
  358.     set f [open $path(test1) RDONLY]
  359.     set x [list [gets $f] [catch {puts $f Test} msg] $msg]
  360.     close $f
  361.     string compare $x 
  362. "{Two lines: this one} 1 [list [format "channel "%s" wasn't opened for writing" $f]]"
  363. } 0
  364. test iocmd-12.2 {POSIX open access modes: RDONLY} -match regexp -body {
  365.     file delete $path(test3)
  366.     open $path(test3) RDONLY
  367. } -returnCodes error -result {(?i)couldn't open ".*test3": no such file or directory}
  368. test iocmd-12.3 {POSIX open access modes: WRONLY} -match regexp -body {
  369.     file delete $path(test3)
  370.     open $path(test3) WRONLY
  371. } -returnCodes error -result {(?i)couldn't open ".*test3": no such file or directory}
  372. #
  373. # Test 13.4 relies on assigning the same channel name twice.
  374. #
  375. test iocmd-12.4 {POSIX open access modes: WRONLY} {unixOnly} {
  376.     file delete $path(test3)
  377.     set f [open $path(test3) w]
  378.     fconfigure $f -eofchar {}
  379.     puts $f xyzzy
  380.     close $f
  381.     set f [open $path(test3) WRONLY]
  382.     fconfigure $f -eofchar {}
  383.     puts -nonewline $f "ab"
  384.     seek $f 0 current
  385.     set x [list [catch {gets $f} msg] $msg]
  386.     close $f
  387.     set f [open $path(test3) r]
  388.     fconfigure $f -eofchar {}
  389.     lappend x [gets $f]
  390.     close $f
  391.     set y [list 1 [format "channel "%s" wasn't opened for reading" $f] abzzy]
  392.     string compare $x $y
  393. } 0
  394. test iocmd-12.5 {POSIX open access modes: RDWR} -match regexp -body {
  395.     file delete $path(test3)
  396.     open $path(test3) RDWR
  397. } -returnCodes error -result {(?i)couldn't open ".*test3": no such file or directory}
  398. test iocmd-12.6 {POSIX open access modes: errors} {
  399.     concat [catch {open $path(test3) "FOO {BAR BAZ"} msg] $msgn$errorInfo
  400. } "1 unmatched open brace in list
  401. unmatched open brace in list
  402.     while processing open access modes "FOO {BAR BAZ"
  403.     invoked from within
  404. "open $path(test3) "FOO \{BAR BAZ"""
  405. test iocmd-12.7 {POSIX open access modes: errors} {
  406.   list [catch {open $path(test3) {FOO BAR BAZ}} msg] $msg
  407. } {1 {invalid access mode "FOO": must be RDONLY, WRONLY, RDWR, APPEND, CREAT EXCL, NOCTTY, NONBLOCK, or TRUNC}}
  408. test iocmd-12.8 {POSIX open access modes: errors} {
  409.     list [catch {open $path(test3) {TRUNC CREAT}} msg] $msg
  410. } {1 {access mode must include either RDONLY, WRONLY, or RDWR}}
  411. close [open $path(test3) w]
  412. test iocmd-13.1 {errors in open command} {
  413.     list [catch {open} msg] $msg
  414. } {1 {wrong # args: should be "open fileName ?access? ?permissions?"}}
  415. test iocmd-13.2 {errors in open command} {
  416.     list [catch {open a b c d} msg] $msg
  417. } {1 {wrong # args: should be "open fileName ?access? ?permissions?"}}
  418. test iocmd-13.3 {errors in open command} {
  419.     list [catch {open $path(test1) x} msg] $msg
  420. } {1 {illegal access mode "x"}}
  421. test iocmd-13.4 {errors in open command} {
  422.     list [catch {open $path(test1) rw} msg] $msg
  423. } {1 {illegal access mode "rw"}}
  424. test iocmd-13.5 {errors in open command} {
  425.     list [catch {open $path(test1) r+1} msg] $msg
  426. } {1 {illegal access mode "r+1"}}
  427. test iocmd-13.6 {errors in open command} {
  428.     set msg [list [catch {open _non_existent_} msg] $msg $errorCode]
  429.     regsub [file join {} _non_existent_] $msg "_non_existent_" msg
  430. string tolower $msg
  431. } {1 {couldn't open "_non_existent_": no such file or directory} {posix enoent {no such file or directory}}}
  432. test iocmd-13.7.1 {open for append, a mode} -setup {
  433.     set log   [makeFile {} out]
  434.     set chans {}
  435. } -body {
  436.     foreach i { 0 1 2 3 4 5 6 7 8 9 } {
  437. puts [set ch [open $log a]] $i
  438. lappend chans $ch
  439.     }
  440.     foreach ch $chans {catch {close $ch}}
  441.     lsort [split [string trim [viewFile out]] n]
  442. } -cleanup {
  443.     removeFile out
  444.     # Ensure that channels are gone, even if body failed to do so
  445.     foreach ch $chans {catch {close $ch}}
  446. } -result {0 1 2 3 4 5 6 7 8 9}
  447. test iocmd-13.7.2 {open for append, O_APPEND} -setup {
  448.     set log   [makeFile {} out]
  449.     set chans {}
  450. } -body {
  451.     foreach i { 0 1 2 3 4 5 6 7 8 9 } {
  452. puts [set ch [open $log {WRONLY CREAT APPEND}]] $i
  453. lappend chans $ch
  454.     }
  455.     foreach ch $chans {catch {close $ch}}
  456.     lsort [split [string trim [viewFile out]] n]
  457. } -cleanup {
  458.     removeFile out
  459.     # Ensure that channels are gone, even if body failed to do so
  460.     foreach ch $chans {catch {close $ch}}
  461. } -result {0 1 2 3 4 5 6 7 8 9}
  462. test iocmd-14.1 {file id parsing errors} {
  463.     list [catch {eof gorp} msg] $msg $errorCode
  464. } {1 {can not find channel named "gorp"} NONE}
  465. test iocmd-14.2 {file id parsing errors} {
  466.     list [catch {eof filex} msg] $msg
  467. } {1 {can not find channel named "filex"}}
  468. test iocmd-14.3 {file id parsing errors} {
  469.     list [catch {eof file12a} msg] $msg
  470. } {1 {can not find channel named "file12a"}}
  471. test iocmd-14.4 {file id parsing errors} {
  472.     list [catch {eof file123} msg] $msg
  473. } {1 {can not find channel named "file123"}}
  474. test iocmd-14.5 {file id parsing errors} {
  475.     list [catch {eof stdout} msg] $msg
  476. } {0 0}
  477. test iocmd-14.6 {file id parsing errors} {
  478.     list [catch {eof stdin} msg] $msg
  479. } {0 0}
  480. test iocmd-14.7 {file id parsing errors} {
  481.     list [catch {eof stdout} msg] $msg
  482. } {0 0}
  483. test iocmd-14.8 {file id parsing errors} {
  484.     list [catch {eof stderr} msg] $msg
  485. } {0 0}
  486. test iocmd-14.9 {file id parsing errors} {
  487.     list [catch {eof stderr1} msg] $msg
  488. } {1 {can not find channel named "stderr1"}}
  489. set f [open $path(test1) w]
  490. close $f
  491. set expect "1 {can not find channel named "$f"}"
  492. test iocmd-14.10 {file id parsing errors} {
  493.     list [catch {eof $f} msg] $msg
  494. } $expect
  495. test iocmd-15.1 {Tcl_FcopyObjCmd} {fcopy} {
  496.     list [catch {fcopy} msg] $msg
  497. } {1 {wrong # args: should be "fcopy input output ?-size size? ?-command callback?"}}
  498. test iocmd-15.2 {Tcl_FcopyObjCmd} {fcopy} {
  499.     list [catch {fcopy 1} msg] $msg
  500. } {1 {wrong # args: should be "fcopy input output ?-size size? ?-command callback?"}}
  501. test iocmd-15.3 {Tcl_FcopyObjCmd} {fcopy} {
  502.     list [catch {fcopy 1 2 3 4 5 6 7} msg] $msg
  503. } {1 {wrong # args: should be "fcopy input output ?-size size? ?-command callback?"}}
  504. test iocmd-15.4 {Tcl_FcopyObjCmd} {fcopy} {
  505.     list [catch {fcopy 1 2 3} msg] $msg
  506. } {1 {wrong # args: should be "fcopy input output ?-size size? ?-command callback?"}}
  507. test iocmd-15.5 {Tcl_FcopyObjCmd} {fcopy} {
  508.     list [catch {fcopy 1 2 3 4 5} msg] $msg
  509. } {1 {wrong # args: should be "fcopy input output ?-size size? ?-command callback?"}}
  510. set path(test2) [makeFile {} test2]
  511. set f [open $path(test1) w]
  512. close $f
  513. set rfile [open $path(test1) r]
  514. set wfile [open $path(test2) w]
  515. test iocmd-15.6 {Tcl_FcopyObjCmd} {fcopy} {
  516.     list [catch {fcopy foo $wfile} msg] $msg
  517. } {1 {can not find channel named "foo"}}
  518. test iocmd-15.7 {Tcl_FcopyObjCmd} {fcopy} {
  519.     list [catch {fcopy $rfile foo} msg] $msg
  520. } {1 {can not find channel named "foo"}}
  521. test iocmd-15.8 {Tcl_FcopyObjCmd} {fcopy} {
  522.     list [catch {fcopy $wfile $wfile} msg] $msg
  523. } "1 {channel "$wfile" wasn't opened for reading}"
  524. test iocmd-15.9 {Tcl_FcopyObjCmd} {fcopy} {
  525.     list [catch {fcopy $rfile $rfile} msg] $msg
  526. } "1 {channel "$rfile" wasn't opened for writing}"
  527. test iocmd-15.10 {Tcl_FcopyObjCmd} {fcopy} {
  528.     list [catch {fcopy $rfile $wfile foo bar} msg] $msg
  529. } {1 {bad switch "foo": must be -size or -command}}
  530. test iocmd-15.11 {Tcl_FcopyObjCmd} {fcopy} {
  531.     list [catch {fcopy $rfile $wfile -size foo} msg] $msg
  532. } {1 {expected integer but got "foo"}}
  533. test iocmd-15.12 {Tcl_FcopyObjCmd} {fcopy} {
  534.     list [catch {fcopy $rfile $wfile -command bar -size foo} msg] $msg
  535. } {1 {expected integer but got "foo"}}
  536. close $rfile
  537. close $wfile
  538. # cleanup
  539. foreach file [list test1 test2 test3 test4] {
  540.     removeFile $file
  541. }
  542. # delay long enough for background processes to finish
  543. after 500
  544. foreach file [list test5] {
  545.     removeFile $file
  546. }
  547. cleanupTests
  548. return