2004-10-09 07:53:16 -04:00
|
|
|
require 'test/unit'
|
|
|
|
|
|
|
|
class TestIO < Test::Unit::TestCase
|
|
|
|
def test_gets_rs
|
2004-11-20 12:29:18 -05:00
|
|
|
# default_rs
|
|
|
|
r, w = IO.pipe
|
|
|
|
w.print "aaa\nbbb\n"
|
|
|
|
w.close
|
|
|
|
assert_equal "aaa\n", r.gets
|
|
|
|
assert_equal "bbb\n", r.gets
|
|
|
|
assert_nil r.gets
|
|
|
|
r.close
|
|
|
|
|
|
|
|
# nil
|
|
|
|
r, w = IO.pipe
|
|
|
|
w.print "a\n\nb\n\n"
|
|
|
|
w.close
|
|
|
|
assert_equal "a\n\nb\n\n", r.gets(nil)
|
|
|
|
assert_nil r.gets("")
|
|
|
|
r.close
|
|
|
|
|
2007-11-18 02:18:56 -05:00
|
|
|
# "\377"
|
2004-10-09 07:53:16 -04:00
|
|
|
r, w = IO.pipe
|
|
|
|
w.print "\377xyz"
|
|
|
|
w.close
|
2007-12-23 21:40:55 -05:00
|
|
|
r.binmode
|
2004-10-09 07:53:16 -04:00
|
|
|
assert_equal("\377", r.gets("\377"), "[ruby-dev:24460]")
|
|
|
|
r.close
|
2004-11-20 12:29:18 -05:00
|
|
|
|
2007-11-18 02:18:56 -05:00
|
|
|
# ""
|
2004-11-20 12:29:18 -05:00
|
|
|
r, w = IO.pipe
|
|
|
|
w.print "a\n\nb\n\n"
|
|
|
|
w.close
|
2007-11-18 02:18:56 -05:00
|
|
|
assert_equal "a\n\n", r.gets(""), "[ruby-core:03771]"
|
2004-11-20 12:29:18 -05:00
|
|
|
assert_equal "b\n\n", r.gets("")
|
|
|
|
assert_nil r.gets("")
|
|
|
|
r.close
|
2004-10-09 07:53:16 -04:00
|
|
|
end
|
2007-09-08 11:59:05 -04:00
|
|
|
|
2007-09-14 04:31:24 -04:00
|
|
|
# This test cause SEGV.
|
2007-09-26 07:01:18 -04:00
|
|
|
def test_ungetc
|
2007-09-08 11:59:05 -04:00
|
|
|
r, w = IO.pipe
|
|
|
|
w.close
|
|
|
|
assert_raise(IOError, "[ruby-dev:31650]") { 20000.times { r.ungetc "a" } }
|
|
|
|
ensure
|
|
|
|
r.close
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_each_byte
|
|
|
|
r, w = IO.pipe
|
|
|
|
w << "abc def"
|
|
|
|
w.close
|
|
|
|
r.each_byte {|byte| break if byte == 32 }
|
|
|
|
assert_equal("def", r.read, "[ruby-dev:31659]")
|
|
|
|
ensure
|
|
|
|
r.close
|
|
|
|
end
|
2004-10-09 07:53:16 -04:00
|
|
|
end
|