2007-12-23 10:06:14 -05:00
|
|
|
require 'test/unit'
|
|
|
|
require 'tmpdir'
|
2007-12-23 18:57:14 -05:00
|
|
|
require 'timeout'
|
2008-08-18 11:35:21 -04:00
|
|
|
require_relative 'envutil'
|
2007-12-23 10:06:14 -05:00
|
|
|
|
2007-12-23 11:10:36 -05:00
|
|
|
class TestIO_M17N < Test::Unit::TestCase
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS = [
|
|
|
|
Encoding::ASCII_8BIT,
|
|
|
|
Encoding::EUC_JP,
|
|
|
|
Encoding::Shift_JIS,
|
|
|
|
Encoding::UTF_8
|
|
|
|
]
|
|
|
|
|
2007-12-23 10:06:14 -05:00
|
|
|
def with_tmpdir
|
|
|
|
Dir.mktmpdir {|dir|
|
2007-12-23 12:05:40 -05:00
|
|
|
Dir.chdir(dir) {
|
|
|
|
yield dir
|
|
|
|
}
|
2007-12-23 10:06:14 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 12:05:40 -05:00
|
|
|
def with_pipe(enc=nil)
|
|
|
|
r, w = IO.pipe(enc)
|
|
|
|
begin
|
|
|
|
yield r, w
|
|
|
|
ensure
|
|
|
|
r.close if !r.closed?
|
|
|
|
w.close if !w.closed?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-12-23 11:10:36 -05:00
|
|
|
def generate_file(path, content)
|
|
|
|
open(path, "wb") {|f| f.write content }
|
|
|
|
end
|
|
|
|
|
|
|
|
def encdump(str)
|
|
|
|
"#{str.dump}.force_encoding(#{str.encoding.name.dump})"
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_str_equal(expected, actual, message=nil)
|
|
|
|
full_message = build_message(message, <<EOT)
|
|
|
|
#{encdump expected} expected but not equal to
|
|
|
|
#{encdump actual}.
|
|
|
|
EOT
|
|
|
|
assert_block(full_message) { expected == actual }
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_open_r
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r") {|f|
|
2007-12-24 05:27:53 -05:00
|
|
|
assert_equal(Encoding.default_external, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_rb
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "rb") {|f|
|
2008-01-09 12:44:13 -05:00
|
|
|
assert_equal(Encoding.default_external, f.external_encoding)
|
2007-12-24 05:22:34 -05:00
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_r_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r:euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_open_r_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r", encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_r_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r", external_encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_open_r_enc_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r:euc-jp:utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_open_r_enc_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r", encoding: "euc-jp:utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_r_enc_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "")
|
|
|
|
open("tmp", "r", external_encoding: "euc-jp", internal_encoding: "utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_open_w
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w") {|f|
|
2007-12-25 02:01:35 -05:00
|
|
|
assert_equal(nil, f.external_encoding)
|
2007-12-24 05:22:34 -05:00
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:27:53 -05:00
|
|
|
def test_open_wb
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "wb") {|f|
|
2007-12-25 02:01:35 -05:00
|
|
|
assert_equal(nil, f.external_encoding)
|
2007-12-24 05:27:53 -05:00
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_open_w_enc
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w:euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_open_w_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w", encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_w_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w", external_encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_open_w_enc_enc
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w:euc-jp:utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_open_w_enc_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w", encoding: "euc-jp:utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_w_enc_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w", external_encoding: "euc-jp", internal_encoding: "utf-8") {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-18 12:33:46 -04:00
|
|
|
def test_open_w_enc_enc_perm
|
|
|
|
with_tmpdir {
|
|
|
|
open("tmp", "w:euc-jp:utf-8", 0600) {|f|
|
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-24 05:22:34 -05:00
|
|
|
def test_stdin
|
|
|
|
assert_equal(Encoding.default_external, STDIN.external_encoding)
|
|
|
|
assert_equal(nil, STDIN.internal_encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_stdout
|
2007-12-25 02:01:35 -05:00
|
|
|
assert_equal(nil, STDOUT.external_encoding)
|
2007-12-24 05:22:34 -05:00
|
|
|
assert_equal(nil, STDOUT.internal_encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_stderr
|
2007-12-25 02:01:35 -05:00
|
|
|
assert_equal(nil, STDERR.external_encoding)
|
2007-12-24 05:22:34 -05:00
|
|
|
assert_equal(nil, STDERR.internal_encoding)
|
|
|
|
end
|
|
|
|
|
2007-12-23 11:10:36 -05:00
|
|
|
def test_terminator_conversion
|
2007-12-23 10:06:14 -05:00
|
|
|
with_tmpdir {
|
2007-12-23 11:10:36 -05:00
|
|
|
generate_file('tmp', "before \u00FF after")
|
2007-12-23 12:12:57 -05:00
|
|
|
s = open("tmp", "r:utf-8:iso-8859-1") {|f|
|
2007-12-23 10:06:14 -05:00
|
|
|
f.gets("\xFF".force_encoding("iso-8859-1"))
|
|
|
|
}
|
2007-12-23 12:12:57 -05:00
|
|
|
assert_equal(Encoding.find("iso-8859-1"), s.encoding)
|
2007-12-23 11:10:36 -05:00
|
|
|
assert_str_equal("before \xFF".force_encoding("iso-8859-1"), s, '[ruby-core:14288]')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 13:22:59 -05:00
|
|
|
def test_terminator_conversion2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "before \xA1\xA2\xA2\xA3 after")
|
|
|
|
s = open("tmp", "r:euc-jp:utf-8") {|f|
|
|
|
|
f.gets("\xA2\xA2".force_encoding("euc-jp").encode("utf-8"))
|
|
|
|
}
|
2007-12-23 14:55:18 -05:00
|
|
|
assert_equal(Encoding.find("utf-8"), s.encoding)
|
|
|
|
assert_str_equal("before \xA1\xA2\xA2\xA3 after".force_encoding("euc-jp").encode("utf-8"), s, '[ruby-core:14319]')
|
2007-12-23 13:22:59 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-25 22:07:08 -05:00
|
|
|
def test_terminator_stateful_conversion
|
|
|
|
with_tmpdir {
|
|
|
|
src = "before \e$B\x23\x30\x23\x31\e(B after".force_encoding("iso-2022-jp")
|
|
|
|
generate_file('tmp', src)
|
2008-08-17 21:40:01 -04:00
|
|
|
s = open("tmp", "r:iso-2022-jp:euc-jp") {|f|
|
|
|
|
f.gets("0".force_encoding("euc-jp"))
|
|
|
|
}
|
|
|
|
assert_equal(Encoding.find("euc-jp"), s.encoding)
|
|
|
|
assert_str_equal(src.encode("euc-jp"), s)
|
2007-12-25 22:07:08 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 20:09:37 -05:00
|
|
|
def test_nonascii_terminator
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tmp', "before \xA2\xA2 after")
|
|
|
|
open("tmp", "r:euc-jp") {|f|
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
f.gets("\xA2\xA2".force_encoding("utf-8"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 18:57:14 -05:00
|
|
|
def test_pipe_terminator_conversion
|
|
|
|
with_pipe("euc-jp:utf-8") {|r, w|
|
|
|
|
w.write "before \xa2\xa2 after"
|
|
|
|
rs = "\xA2\xA2".encode("utf-8", "euc-jp")
|
2007-12-24 11:36:14 -05:00
|
|
|
w.close
|
2007-12-23 18:57:14 -05:00
|
|
|
timeout(1) {
|
|
|
|
assert_equal("before \xa2\xa2".encode("utf-8", "euc-jp"),
|
|
|
|
r.gets(rs))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_pipe_conversion
|
|
|
|
with_pipe("euc-jp:utf-8") {|r, w|
|
|
|
|
w.write "\xa1\xa1"
|
|
|
|
assert_equal("\xa1\xa1".encode("utf-8", "euc-jp"), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_pipe_convert_partial_read
|
|
|
|
with_pipe("euc-jp:utf-8") {|r, w|
|
|
|
|
begin
|
|
|
|
t = Thread.new {
|
|
|
|
w.write "\xa1"
|
|
|
|
sleep 0.1
|
|
|
|
w.write "\xa1"
|
|
|
|
}
|
|
|
|
assert_equal("\xa1\xa1".encode("utf-8", "euc-jp"), r.getc)
|
|
|
|
ensure
|
|
|
|
t.join if t
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-17 00:25:56 -04:00
|
|
|
def test_getc_invalid
|
|
|
|
with_pipe("euc-jp:utf-8") {|r, w|
|
|
|
|
w << "\xa1xyz"
|
|
|
|
w.close
|
|
|
|
err = assert_raise(Encoding::InvalidByteSequence) { r.getc }
|
|
|
|
assert_equal("\xA1".force_encoding("ascii-8bit"), err.error_bytes)
|
|
|
|
assert_equal("xyz", r.read(10))
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-01-03 09:49:38 -05:00
|
|
|
def test_getc_stateful_conversion
|
|
|
|
with_tmpdir {
|
|
|
|
src = "\e$B\x23\x30\x23\x31\e(B".force_encoding("iso-2022-jp")
|
|
|
|
generate_file('tmp', src)
|
2008-08-16 13:06:35 -04:00
|
|
|
open("tmp", "r:iso-2022-jp:euc-jp") {|f|
|
|
|
|
assert_equal("\xa3\xb0".force_encoding("euc-jp"), f.getc)
|
|
|
|
assert_equal("\xa3\xb1".force_encoding("euc-jp"), f.getc)
|
|
|
|
}
|
2008-07-29 10:38:44 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_ungetc_stateful_conversion
|
|
|
|
with_tmpdir {
|
|
|
|
src = "before \e$B\x23\x30\x23\x31\e(B after".force_encoding("iso-2022-jp")
|
|
|
|
generate_file('tmp', src)
|
2008-08-18 10:28:45 -04:00
|
|
|
s = open("tmp", "r:iso-2022-jp:euc-jp") {|f|
|
|
|
|
f.ungetc("0".force_encoding("euc-jp"))
|
|
|
|
f.read
|
|
|
|
}
|
|
|
|
assert_equal(Encoding.find("euc-jp"), s.encoding)
|
|
|
|
assert_str_equal("0" + src.encode("euc-jp"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_ungetc_stateful_conversion2
|
|
|
|
with_tmpdir {
|
|
|
|
src = "before \e$B\x23\x30\x23\x31\e(B after".force_encoding("iso-2022-jp")
|
|
|
|
former = "before \e$B\x23\x30\e(B".force_encoding("iso-2022-jp")
|
|
|
|
rs = "\e$B\x23\x30\e(B".force_encoding("iso-2022-jp")
|
|
|
|
latter = "\e$B\x23\x31\e(B after".force_encoding("iso-2022-jp")
|
|
|
|
generate_file('tmp', src)
|
|
|
|
s = open("tmp", "r:iso-2022-jp:euc-jp") {|f|
|
|
|
|
assert_equal(former.encode("euc-jp", "iso-2022-jp"),
|
|
|
|
f.gets(rs.encode("euc-jp", "iso-2022-jp")))
|
|
|
|
f.ungetc("0")
|
|
|
|
f.read
|
|
|
|
}
|
|
|
|
assert_equal(Encoding.find("euc-jp"), s.encoding)
|
|
|
|
assert_str_equal("0" + latter.encode("euc-jp"), s)
|
2008-01-03 09:49:38 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 11:10:36 -05:00
|
|
|
def test_open_ascii
|
|
|
|
with_tmpdir {
|
|
|
|
src = "abc\n"
|
|
|
|
generate_file('tmp', "abc\n")
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS.each {|enc|
|
2007-12-23 11:10:36 -05:00
|
|
|
s = open('tmp', "r:#{enc}") {|f| f.gets }
|
|
|
|
assert_equal(enc, s.encoding)
|
|
|
|
assert_str_equal(src, s)
|
|
|
|
}
|
2007-12-23 10:06:14 -05:00
|
|
|
}
|
|
|
|
end
|
2007-12-23 11:10:36 -05:00
|
|
|
|
|
|
|
def test_open_nonascii
|
|
|
|
with_tmpdir {
|
|
|
|
src = "\xc2\xa1\n"
|
|
|
|
generate_file('tmp', src)
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS.each {|enc|
|
2007-12-23 11:35:43 -05:00
|
|
|
content = src.dup.force_encoding(enc)
|
2007-12-23 11:10:36 -05:00
|
|
|
s = open('tmp', "r:#{enc}") {|f| f.gets }
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 11:35:43 -05:00
|
|
|
def test_read_encoding
|
2007-12-23 11:10:36 -05:00
|
|
|
with_tmpdir {
|
|
|
|
src = "\xc2\xa1\n".force_encoding("ASCII-8BIT")
|
|
|
|
generate_file('tmp', "\xc2\xa1\n")
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS.each {|enc|
|
2007-12-23 11:35:43 -05:00
|
|
|
content = src.dup.force_encoding(enc)
|
2007-12-23 11:10:36 -05:00
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.getc
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content[0], s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.readchar
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content[0], s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.gets
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.readline
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
lines = f.readlines
|
|
|
|
assert_equal(1, lines.length)
|
|
|
|
s = lines[0]
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
f.each_line {|s|
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.read
|
|
|
|
assert_equal(enc, s.encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_str_equal(content, s)
|
2007-12-23 11:10:36 -05:00
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.read(1)
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_str_equal(src[0], s)
|
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.readpartial(1)
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_str_equal(src[0], s)
|
|
|
|
}
|
|
|
|
open('tmp', "r:#{enc}") {|f|
|
|
|
|
s = f.sysread(1)
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_str_equal(src[0], s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 11:35:43 -05:00
|
|
|
def test_write_noenc
|
2007-12-24 23:24:21 -05:00
|
|
|
src = "\xc2\xa1\n".force_encoding("ascii-8bit")
|
2007-12-23 11:35:43 -05:00
|
|
|
with_tmpdir {
|
|
|
|
open('tmp', "w") {|f|
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS.each {|enc|
|
2007-12-23 11:35:43 -05:00
|
|
|
f.write src.dup.force_encoding(enc)
|
|
|
|
}
|
|
|
|
}
|
2007-12-24 23:24:21 -05:00
|
|
|
open('tmp', 'r:ascii-8bit') {|f|
|
2007-12-23 12:05:40 -05:00
|
|
|
assert_equal(src*ENCS.length, f.read)
|
2007-12-23 11:35:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 12:05:40 -05:00
|
|
|
def test_write_conversion
|
2007-12-23 11:35:43 -05:00
|
|
|
utf8 = "\u6666"
|
|
|
|
eucjp = "\xb3\xa2".force_encoding("EUC-JP")
|
|
|
|
with_tmpdir {
|
|
|
|
open('tmp', "w:EUC-JP") {|f|
|
2007-12-23 12:31:32 -05:00
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
2007-12-23 11:35:43 -05:00
|
|
|
f.print utf8
|
|
|
|
}
|
|
|
|
assert_equal(eucjp, File.read('tmp').force_encoding("EUC-JP"))
|
2007-12-23 12:12:57 -05:00
|
|
|
open('tmp', 'r:EUC-JP:UTF-8') {|f|
|
2007-12-23 11:35:43 -05:00
|
|
|
assert_equal(Encoding::EUC_JP, f.external_encoding)
|
|
|
|
assert_equal(Encoding::UTF_8, f.internal_encoding)
|
|
|
|
assert_equal(utf8, f.read)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 12:05:40 -05:00
|
|
|
def test_pipe
|
2007-12-23 13:22:59 -05:00
|
|
|
utf8 = "\u6666"
|
|
|
|
eucjp = "\xb3\xa2".force_encoding("EUC-JP")
|
|
|
|
|
|
|
|
with_pipe {|r,w|
|
|
|
|
assert_equal(Encoding.default_external, r.external_encoding)
|
|
|
|
assert_equal(nil, r.internal_encoding)
|
|
|
|
w << utf8
|
|
|
|
w.close
|
|
|
|
s = r.read
|
|
|
|
assert_equal(Encoding.default_external, s.encoding)
|
2007-12-24 23:54:49 -05:00
|
|
|
assert_str_equal(utf8.dup.force_encoding(Encoding.default_external), s)
|
2007-12-23 13:22:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
with_pipe("EUC-JP") {|r,w|
|
|
|
|
assert_equal(Encoding::EUC_JP, r.external_encoding)
|
|
|
|
assert_equal(nil, r.internal_encoding)
|
|
|
|
w << eucjp
|
|
|
|
w.close
|
|
|
|
assert_equal(eucjp, r.read)
|
|
|
|
}
|
|
|
|
|
|
|
|
with_pipe("UTF-8:EUC-JP") {|r,w|
|
|
|
|
assert_equal(Encoding::UTF_8, r.external_encoding)
|
|
|
|
assert_equal(Encoding::EUC_JP, r.internal_encoding)
|
|
|
|
w << utf8
|
|
|
|
w.close
|
|
|
|
assert_equal(eucjp, r.read)
|
|
|
|
}
|
|
|
|
|
2007-12-23 12:05:40 -05:00
|
|
|
ENCS.each {|enc|
|
|
|
|
with_pipe(enc) {|r, w|
|
|
|
|
w << "\xc2\xa1"
|
|
|
|
w.close
|
|
|
|
s = r.getc
|
|
|
|
assert_equal(enc, s.encoding)
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 14:15:48 -05:00
|
|
|
|
2007-12-23 14:55:18 -05:00
|
|
|
ENCS.each {|enc|
|
|
|
|
next if enc == Encoding::ASCII_8BIT
|
|
|
|
next if enc == Encoding::UTF_8
|
2007-12-23 14:15:48 -05:00
|
|
|
with_pipe("#{enc}:UTF-8") {|r, w|
|
|
|
|
w << "\xc2\xa1"
|
|
|
|
w.close
|
|
|
|
s = r.read
|
|
|
|
assert_equal(Encoding::UTF_8, s.encoding)
|
|
|
|
assert_equal(s.encode("UTF-8"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-23 12:05:40 -05:00
|
|
|
end
|
|
|
|
|
2008-01-24 01:38:57 -05:00
|
|
|
def test_marshal
|
|
|
|
with_pipe("EUC-JP") {|r, w|
|
|
|
|
data = 56225
|
|
|
|
Marshal.dump(data, w)
|
|
|
|
w.close
|
|
|
|
result = nil
|
2008-01-24 02:35:49 -05:00
|
|
|
assert_nothing_raised("[ruby-dev:33264]") { result = Marshal.load(r) }
|
2008-01-24 01:38:57 -05:00
|
|
|
assert_equal(data, result)
|
|
|
|
}
|
|
|
|
end
|
2008-01-25 10:22:52 -05:00
|
|
|
|
|
|
|
def test_gets_nil
|
|
|
|
with_pipe("UTF-8:EUC-JP") {|r, w|
|
|
|
|
w << "\u{3042}"
|
|
|
|
w.close
|
|
|
|
result = r.gets(nil)
|
|
|
|
assert_equal("\u{3042}".encode("euc-jp"), result)
|
|
|
|
}
|
|
|
|
end
|
2008-02-29 09:36:39 -05:00
|
|
|
|
2008-08-17 15:41:39 -04:00
|
|
|
def test_gets_limit
|
2008-08-17 20:41:54 -04:00
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
2008-08-17 15:41:39 -04:00
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.gets(1))
|
|
|
|
}
|
2008-08-17 20:41:54 -04:00
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
2008-08-17 15:41:39 -04:00
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.gets(2))
|
|
|
|
}
|
2008-08-17 20:41:54 -04:00
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
2008-08-17 15:41:39 -04:00
|
|
|
assert_equal("\xa4\xa2\xa4\xa4".force_encoding("euc-jp"), r.gets(3))
|
|
|
|
}
|
2008-08-17 20:41:54 -04:00
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
2008-08-17 15:41:39 -04:00
|
|
|
assert_equal("\xa4\xa2\xa4\xa4".force_encoding("euc-jp"), r.gets(4))
|
|
|
|
}
|
2008-08-17 20:41:54 -04:00
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4\xa4\xa6".force_encoding("euc-jp"), r.gets(5))
|
|
|
|
}
|
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4\xa4\xa6".force_encoding("euc-jp"), r.gets(6))
|
|
|
|
}
|
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4\xa4\xa6\n".force_encoding("euc-jp"), r.gets(7))
|
|
|
|
}
|
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4\xa4\xa6\n".force_encoding("euc-jp"), r.gets(8))
|
|
|
|
}
|
|
|
|
with_pipe("euc-jp") {|r, w| w << "\xa4\xa2\xa4\xa4\xa4\xa6\n\xa4\xa8\xa4\xaa"; w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4\xa4\xa6\n".force_encoding("euc-jp"), r.gets(9))
|
|
|
|
}
|
2008-08-17 15:41:39 -04:00
|
|
|
end
|
|
|
|
|
2008-08-17 23:13:53 -04:00
|
|
|
def test_gets_invalid
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
before = "\u{3042}\u{3044}"
|
|
|
|
invalid = "\x80".force_encoding("utf-8")
|
|
|
|
after = "\u{3046}\u{3048}"
|
|
|
|
w << before + invalid + after
|
|
|
|
w.close
|
|
|
|
err = assert_raise(Encoding::InvalidByteSequence) { r.gets }
|
|
|
|
assert_equal(invalid.force_encoding("ascii-8bit"), err.error_bytes)
|
|
|
|
assert_equal(after.encode("euc-jp"), r.gets)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_getc_invalid2
|
2008-08-17 23:13:53 -04:00
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
before1 = "\u{3042}"
|
|
|
|
before2 = "\u{3044}"
|
|
|
|
invalid = "\x80".force_encoding("utf-8")
|
|
|
|
after1 = "\u{3046}"
|
|
|
|
after2 = "\u{3048}"
|
|
|
|
w << before1 + before2 + invalid + after1 + after2
|
|
|
|
w.close
|
|
|
|
assert_equal(before1.encode("euc-jp"), r.getc)
|
|
|
|
assert_equal(before2.encode("euc-jp"), r.getc)
|
|
|
|
err = assert_raise(Encoding::InvalidByteSequence) { r.getc }
|
|
|
|
assert_equal(invalid.force_encoding("ascii-8bit"), err.error_bytes)
|
|
|
|
assert_equal(after1.encode("euc-jp"), r.getc)
|
|
|
|
assert_equal(after2.encode("euc-jp"), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_getc_invalid3
|
2008-08-17 23:13:53 -04:00
|
|
|
with_pipe("utf-16le:euc-jp") {|r, w|
|
|
|
|
before1 = "\x42\x30".force_encoding("utf-16le")
|
|
|
|
before2 = "\x44\x30".force_encoding("utf-16le")
|
|
|
|
invalid = "\x00\xd8".force_encoding("utf-16le")
|
|
|
|
after1 = "\x46\x30".force_encoding("utf-16le")
|
|
|
|
after2 = "\x48\x30".force_encoding("utf-16le")
|
|
|
|
w << before1 + before2 + invalid + after1 + after2
|
|
|
|
w.close
|
|
|
|
assert_equal(before1.encode("euc-jp"), r.getc)
|
|
|
|
assert_equal(before2.encode("euc-jp"), r.getc)
|
|
|
|
err = assert_raise(Encoding::InvalidByteSequence) { r.getc }
|
|
|
|
assert_equal(invalid.force_encoding("ascii-8bit"), err.error_bytes)
|
|
|
|
assert_equal(after1.encode("euc-jp"), r.getc)
|
|
|
|
assert_equal(after2.encode("euc-jp"), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_read_all
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
str = "\u3042\u3044"
|
|
|
|
w << str
|
|
|
|
w.close
|
|
|
|
assert_equal(str.encode("euc-jp"), r.read)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_read_all_invalid
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
before = "\u{3042}\u{3044}"
|
|
|
|
invalid = "\x80".force_encoding("utf-8")
|
|
|
|
after = "\u{3046}\u{3048}"
|
|
|
|
w << before + invalid + after
|
|
|
|
w.close
|
|
|
|
err = assert_raise(Encoding::InvalidByteSequence) { r.read }
|
|
|
|
assert_equal(invalid.force_encoding("ascii-8bit"), err.error_bytes)
|
|
|
|
assert_equal(after.encode("euc-jp"), r.read)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-02-29 09:36:39 -05:00
|
|
|
def test_file_foreach
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file('tst', 'a' * 8191 + "\xa1\xa1")
|
|
|
|
assert_nothing_raised {
|
|
|
|
File.foreach('tst', :encoding=>"euc-jp") {|line| line.inspect }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2008-08-18 04:24:49 -04:00
|
|
|
|
|
|
|
def test_set_encoding
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
s = "\u3042".force_encoding("ascii-8bit")
|
|
|
|
s << "\x82\xa0".force_encoding("ascii-8bit")
|
|
|
|
w << s
|
|
|
|
w.close
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
r.set_encoding("shift_jis:euc-jp")
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_set_encoding2
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
s = "\u3042".force_encoding("ascii-8bit")
|
|
|
|
s << "\x82\xa0".force_encoding("ascii-8bit")
|
|
|
|
w << s
|
|
|
|
w.close
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
r.set_encoding("shift_jis", "euc-jp")
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_set_encoding_nil
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
s = "\u3042".force_encoding("ascii-8bit")
|
|
|
|
s << "\x82\xa0".force_encoding("ascii-8bit")
|
|
|
|
w << s
|
|
|
|
w.close
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
r.set_encoding(nil)
|
|
|
|
assert_equal("\x82\xa0".force_encoding(Encoding.default_external), r.read)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_set_encoding_enc
|
|
|
|
with_pipe("utf-8:euc-jp") {|r, w|
|
|
|
|
s = "\u3042".force_encoding("ascii-8bit")
|
|
|
|
s << "\x82\xa0".force_encoding("ascii-8bit")
|
|
|
|
w << s
|
|
|
|
w.close
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), r.getc)
|
|
|
|
r.set_encoding(Encoding::Shift_JIS)
|
|
|
|
assert_equal("\x82\xa0".force_encoding(Encoding::Shift_JIS), r.getc)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-18 08:06:42 -04:00
|
|
|
def test_write_conversion_fixenc
|
|
|
|
with_pipe {|r, w|
|
|
|
|
w.set_encoding("iso-2022-jp:utf-8")
|
|
|
|
t = Thread.new { r.read.force_encoding("ascii-8bit") }
|
|
|
|
w << "\u3042"
|
|
|
|
w << "\u3044"
|
|
|
|
w.close
|
|
|
|
assert_equal("\e$B$\"$$\e(B".force_encoding("ascii-8bit"), t.value)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_write_conversion_anyenc_stateful
|
|
|
|
with_pipe {|r, w|
|
|
|
|
w.set_encoding("iso-2022-jp")
|
|
|
|
t = Thread.new { r.read.force_encoding("ascii-8bit") }
|
|
|
|
w << "\u3042"
|
|
|
|
w << "\x82\xa2".force_encoding("sjis")
|
|
|
|
w.close
|
|
|
|
assert_equal("\e$B$\"$$\e(B".force_encoding("ascii-8bit"), t.value)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_write_conversion_anyenc_stateless
|
|
|
|
with_pipe {|r, w|
|
|
|
|
w.set_encoding("euc-jp")
|
|
|
|
t = Thread.new { r.read.force_encoding("ascii-8bit") }
|
|
|
|
w << "\u3042"
|
|
|
|
w << "\x82\xa2".force_encoding("sjis")
|
|
|
|
w.close
|
|
|
|
assert_equal("\xa4\xa2\xa4\xa4".force_encoding("ascii-8bit"), t.value)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_write_conversion_anyenc_stateful_nosync
|
|
|
|
with_pipe {|r, w|
|
|
|
|
w.sync = false
|
|
|
|
w.set_encoding("iso-2022-jp")
|
|
|
|
t = Thread.new { r.read.force_encoding("ascii-8bit") }
|
|
|
|
w << "\u3042"
|
|
|
|
w << "\x82\xa2".force_encoding("sjis")
|
|
|
|
w.close
|
|
|
|
assert_equal("\e$B$\"$$\e(B".force_encoding("ascii-8bit"), t.value)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-18 11:35:21 -04:00
|
|
|
def test_stdin_external_encoding_with_reopen
|
|
|
|
with_tmpdir {
|
|
|
|
open("tst", "w+") {|f|
|
|
|
|
pid = spawn(EnvUtil.rubybin, '-e', <<-'End', 10=>f)
|
|
|
|
io = IO.new(10, "r+")
|
|
|
|
STDIN.reopen(io)
|
|
|
|
STDIN.external_encoding
|
|
|
|
STDIN.write "\u3042"
|
|
|
|
STDIN.flush
|
|
|
|
End
|
|
|
|
Process.wait pid
|
|
|
|
f.rewind
|
|
|
|
result = f.read.force_encoding("ascii-8bit")
|
|
|
|
assert_equal("\u3042".force_encoding("ascii-8bit"), result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-08-21 06:07:21 -04:00
|
|
|
def test_popen_r_enc
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 255'", "r:ascii-8bit") {|f|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_r_enc_in_opt
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 255'", "r", encoding: "ascii-8bit") {|f|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_r_enc_in_opt2
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 255'", "r", external_encoding: "ascii-8bit") {|f|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_r_enc_enc
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 0xa1'", "r:shift_jis:euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::Shift_JIS, f.external_encoding)
|
|
|
|
assert_equal(Encoding::EUC_JP, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\x8e\xa1".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_r_enc_enc_in_opt
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 0xa1'", "r", encoding: "shift_jis:euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::Shift_JIS, f.external_encoding)
|
|
|
|
assert_equal(Encoding::EUC_JP, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\x8e\xa1".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_r_enc_enc_in_opt2
|
|
|
|
IO.popen("#{EnvUtil.rubybin} -e 'putc 0xa1'", "r", external_encoding: "shift_jis", internal_encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::Shift_JIS, f.external_encoding)
|
|
|
|
assert_equal(Encoding::EUC_JP, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\x8e\xa1".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popenv_r_enc_enc_in_opt2
|
|
|
|
IO.popen([EnvUtil.rubybin, "-e", "putc 0xa1"], "r", external_encoding: "shift_jis", internal_encoding: "euc-jp") {|f|
|
|
|
|
assert_equal(Encoding::Shift_JIS, f.external_encoding)
|
|
|
|
assert_equal(Encoding::EUC_JP, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\x8e\xa1".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_open_pipe_r_enc
|
|
|
|
open("|#{EnvUtil.rubybin} -e 'putc 255'", "r:ascii-8bit") {|f|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, f.external_encoding)
|
|
|
|
assert_equal(nil, f.internal_encoding)
|
|
|
|
s = f.read
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :mode => "r:ascii-8bit") {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :encoding => "ascii-8bit") {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :external_encoding => "ascii-8bit") {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :mode => "r:utf-8:euc-jp") {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :mode => "r", :encoding => "utf-8:euc-jp") {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_enc_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :mode => "r", :external_encoding => "utf-8", :internal_encoding => "euc-jp") {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :open_args => ["r:ascii-8bit"]) {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :open_args => ["r", encoding: "ascii-8bit"]) {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\xff")
|
|
|
|
IO.foreach("t", :open_args => ["r", external_encoding: "ascii-8bit"]) {|s|
|
|
|
|
assert_equal(Encoding::ASCII_8BIT, s.encoding)
|
|
|
|
assert_equal("\xff".force_encoding("ascii-8bit"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc_enc
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :open_args => ["r:utf-8:euc-jp"]) {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc_enc_in_opt
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :open_args => ["r", encoding: "utf-8:euc-jp"]) {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_s_foreach_open_args_enc_enc_in_opt2
|
|
|
|
with_tmpdir {
|
|
|
|
generate_file("t", "\u3042")
|
|
|
|
IO.foreach("t", :open_args => ["r", external_encoding: "utf-8", internal_encoding: "euc-jp"]) {|s|
|
|
|
|
assert_equal(Encoding::EUC_JP, s.encoding)
|
|
|
|
assert_equal("\xa4\xa2".force_encoding("euc-jp"), s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-12-23 10:06:14 -05:00
|
|
|
end
|
|
|
|
|