diff options
author | dgp <dgp@users.sourceforge.net> | 2014-06-05 15:20:59 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-06-05 15:20:59 (GMT) |
commit | 54eb626870a445ace6d45d1a897ebbe0860297e1 (patch) | |
tree | ccbe4772914cfca321c5dc9f2bfff37cdf777d18 /tests/io.test | |
parent | 852f44abf1e24dce23b456d6cfa857bb5649300e (diff) | |
parent | 457182886821a26e8470e57319fa58d9b3f0deeb (diff) | |
download | tcl-54eb626870a445ace6d45d1a897ebbe0860297e1.zip tcl-54eb626870a445ace6d45d1a897ebbe0860297e1.tar.gz tcl-54eb626870a445ace6d45d1a897ebbe0860297e1.tar.bz2 |
When too many chars are read by ReadChars() and we trim the limits to get it right on the next pass, don't forget the TCL_UTF_MAX padding demanded by Tcl_ExternalToUtf(). (Thanks for finding that, aku!) Fix the factorPtr management. It was just totaly wrong. The factor should be a ratio of the record of bytes read to the record of chars read. With those fixes, new test io-12.6 covers the "too many chars" code.
Diffstat (limited to 'tests/io.test')
-rw-r--r-- | tests/io.test | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/io.test b/tests/io.test index 96ea14b..cf38a1b 100644 --- a/tests/io.test +++ b/tests/io.test @@ -1449,6 +1449,39 @@ test io-12.5 {ReadChars: fileevents on partial characters} {stdio openpipe filee lappend x [catch {close $f} msg] $msg set x } "{} timeout {} timeout \u7266 {} eof 0 {}" +test io-12.6 {ReadChars: too many chars read} { + 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 \uBEEF 20][string repeat . 20]] + return {initialize finalize watch read} + } + finalize { + unset index($chan) buffer($chan) + return + } + watch {} + 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 + } + } + } + set c [chan create read [namespace which driver]] + chan configure $c -encoding utf-8 + while {![eof $c]} { + read $c 15 + } + close $c +} {} test io-13.1 {TranslateInputEOL: cr mode} {} { set f [open $path(test1) w] |