summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-08-13 19:28:26 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-08-13 19:28:26 (GMT)
commit65644eeb87cb55253126bba237afb569d3fe6f4a (patch)
tree363bf969cd551b1b6e0a8ac841d2ad4bce2a6ed7 /tests/io.test
parentbf4a5c995fc82d4d7841bdf0970e027623904529 (diff)
downloadtcl-65644eeb87cb55253126bba237afb569d3fe6f4a.zip
tcl-65644eeb87cb55253126bba237afb569d3fe6f4a.tar.gz
tcl-65644eeb87cb55253126bba237afb569d3fe6f4a.tar.bz2
New test attempting to demo Bug [e0a7b3e5f8]. Doesn't work yet.
Diffstat (limited to 'tests/io.test')
-rw-r--r--tests/io.test68
1 files changed, 65 insertions, 3 deletions
diff --git a/tests/io.test b/tests/io.test
index 840274d..914cbca 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -7886,7 +7886,7 @@ test io-53.15 {[ed29c4da21] DoRead: fblocked seen as error} -setup {
removeFile out
} -result 100
-test io-53.18 {[32ae34e63a] recursize CopyData} -setup {
+test io-53.18 {[32ae34e63a] recursive CopyData} -setup {
proc driver {cmd args} {
variable buffer
variable index
@@ -7948,7 +7948,7 @@ test io-53.18 {[32ae34e63a] recursize CopyData} -setup {
unset ::done
} -result eof
-test io-53.19 {[e0a7b3e5f8] DoRead calls to UpdateInterest} -setup {
+test io-53.19 {[32ae34e63a] stop ReflectWatch filtering} -setup {
proc driver {cmd args} {
variable buffer
variable index
@@ -7995,7 +7995,7 @@ test io-53.19 {[e0a7b3e5f8] DoRead calls to UpdateInterest} -setup {
chan configure $c -encoding utf-8 -buffersize 20
set out [makeFile {} out]
set outChan [open $out w]
- # Different encoding to force use of DoReadChar()
+ # Different encoding to force use of DoReadChars()
chan configure $outChan -encoding iso8859-1
} -body {
after 100 {set ::done timeout}
@@ -8010,6 +8010,68 @@ test io-53.19 {[e0a7b3e5f8] DoRead calls to UpdateInterest} -setup {
unset ::done
} -result eof
+test io-53.20 {[e0a7b3e5f8] DoRead calls to UpdateInterest} -setup {
+ proc driver {cmd args} {
+ variable buffer
+ variable index
+ set chan [lindex $args 0]
+ switch -- $cmd {
+ initialize {
+ set index($chan) 0
+ set buffer($chan) [encoding convertto utf-8 \
+ [string repeat a 100]]
+ return {initialize finalize watch read}
+ }
+ finalize {
+ unset index($chan) buffer($chan)
+ return
+ }
+ watch {
+ if {"read" in [lindex $args 1]} {
+ chan postevent $chan read
+ }
+ return
+ }
+ read {
+ set n [lindex $args 1]
+ set new [expr {$index($chan) + $n}]
+ set result [string range $buffer($chan) $index($chan) $new-1]
+ set index($chan) $new
+ return $result
+ }
+ }
+ }
+ proc more {c outChan bytes args} {
+ if {[eof $c]} {
+ set ::done eof
+ catch {close $c}
+ return
+ }
+ if {[llength $args]} {
+ set ::done error
+ } else {
+ chan copy $c $outChan -size 10 -command [list [namespace which more] $c $outChan]
+ }
+ }
+ set c [chan create read [namespace which driver]]
+ chan configure $c -encoding utf-8 -buffersize 20
+ set out [makeFile {} out]
+ set outChan [open $out w]
+ # Same encoding to force use of DoRead()
+ chan configure $outChan -encoding utf-8
+} -body {
+ after 100 {set ::done timeout}
+ chan copy $c $outChan -size 10 -command [list [namespace which more] $c $outChan]
+ vwait ::done
+ set ::done
+} -cleanup {
+ catch {close $outChan}
+ removeFile out
+ rename driver {}
+ rename more {}
+ unset ::done
+} -result eof
+
test io-54.1 {Recursive channel events} {socket fileevent} {
# This test checks to see if file events are delivered during recursive
# event loops when there is buffered data on the channel.