sl@0
|
1 |
# This file tests the tclWinConsole.c file.
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# This file contains a collection of tests for one or more of the Tcl
|
sl@0
|
4 |
# built-in commands. Sourcing this file into Tcl runs the tests and
|
sl@0
|
5 |
# generates output for errors. No output means no errors were found.
|
sl@0
|
6 |
#
|
sl@0
|
7 |
# Copyright (c) 1999 by Scriptics Corporation.
|
sl@0
|
8 |
#
|
sl@0
|
9 |
# See the file "license.terms" for information on usage and redistribution
|
sl@0
|
10 |
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# RCS: @(#) $Id: winConsole.test,v 1.5 2000/04/10 17:19:06 ericm Exp $
|
sl@0
|
13 |
|
sl@0
|
14 |
if {[lsearch [namespace children] ::tcltest] == -1} {
|
sl@0
|
15 |
package require tcltest
|
sl@0
|
16 |
namespace import -force ::tcltest::*
|
sl@0
|
17 |
}
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
test winConsole-1.1 {Console file channel: non-blocking gets} \
|
sl@0
|
21 |
{pcOnly interactive} {
|
sl@0
|
22 |
|
sl@0
|
23 |
set oldmode [fconfigure stdin]
|
sl@0
|
24 |
|
sl@0
|
25 |
puts stdout "Enter abcdef<return> now: " nonewline
|
sl@0
|
26 |
flush stdout
|
sl@0
|
27 |
fileevent stdin readable {
|
sl@0
|
28 |
if {[gets stdin line] >= 0} {
|
sl@0
|
29 |
set result $line
|
sl@0
|
30 |
} else {
|
sl@0
|
31 |
set result "gets failed"
|
sl@0
|
32 |
}
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
fconfigure stdin -blocking 0 -buffering line
|
sl@0
|
36 |
|
sl@0
|
37 |
set result {}
|
sl@0
|
38 |
vwait result
|
sl@0
|
39 |
|
sl@0
|
40 |
#cleanup the fileevent
|
sl@0
|
41 |
fileevent stdin readable {}
|
sl@0
|
42 |
eval fconfigure stdin $oldmode
|
sl@0
|
43 |
|
sl@0
|
44 |
set result
|
sl@0
|
45 |
|
sl@0
|
46 |
} "abcdef"
|
sl@0
|
47 |
|
sl@0
|
48 |
#cleanup
|
sl@0
|
49 |
|
sl@0
|
50 |
::tcltest::cleanupTests
|
sl@0
|
51 |
return
|
sl@0
|
52 |
|