2009-11-15 11:24:45 -05:00
|
|
|
require 'test/unit'
|
|
|
|
require 'tmpdir'
|
|
|
|
require_relative 'envutil'
|
|
|
|
|
|
|
|
class TestDir_M17N < Test::Unit::TestCase
|
|
|
|
def with_tmpdir
|
|
|
|
Dir.mktmpdir {|dir|
|
|
|
|
Dir.chdir(dir) {
|
|
|
|
yield dir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2009-11-16 08:45:59 -05:00
|
|
|
## UTF-8 default_external, no default_internal
|
|
|
|
|
|
|
|
def test_filename_extutf8
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\u3042"
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-16 08:45:59 -05:00
|
|
|
exit ents.include?(filename)
|
|
|
|
EOS
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_filename_extutf8_invalid
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EASCII-8BIT], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xff".force_encoding("ASCII-8BIT") # invalid byte sequence as UTF-8
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%FF"))
|
2009-11-16 08:45:59 -05:00
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xff".force_encoding("UTF-8") # invalid byte sequence as UTF-8
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%FF"))
|
2009-11-16 08:45:59 -05:00
|
|
|
EOS
|
|
|
|
}
|
2011-03-24 22:50:17 -04:00
|
|
|
end unless /mswin|mingw/ =~ RUBY_PLATFORM
|
2009-11-16 08:45:59 -05:00
|
|
|
|
2009-11-18 08:02:28 -05:00
|
|
|
def test_filename_as_bytes_extutf8
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xc2\xa1".force_encoding("utf-8")
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-18 08:02:28 -05:00
|
|
|
exit ents.include?(filename)
|
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
2010-05-16 22:07:00 -04:00
|
|
|
if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
filename = "\x8f\xa2\xc2".force_encoding("euc-jp")
|
|
|
|
else
|
|
|
|
filename = "\xc2\xa1".force_encoding("euc-jp")
|
|
|
|
end
|
2009-11-18 08:02:28 -05:00
|
|
|
begin
|
|
|
|
open(filename) {}
|
|
|
|
exit true
|
|
|
|
rescue Errno::ENOENT
|
|
|
|
exit false
|
|
|
|
end
|
|
|
|
EOS
|
2011-03-24 22:50:17 -04:00
|
|
|
# no meaning test on windows
|
|
|
|
unless /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename1 = "\xc2\xa1".force_encoding("utf-8")
|
|
|
|
filename2 = "\xc2\xa1".force_encoding("euc-jp")
|
|
|
|
filename3 = filename1.encode("euc-jp")
|
|
|
|
filename4 = filename2.encode("utf-8")
|
|
|
|
s1 = File.stat(filename1) rescue nil
|
|
|
|
s2 = File.stat(filename2) rescue nil
|
|
|
|
s3 = File.stat(filename3) rescue nil
|
|
|
|
s4 = File.stat(filename4) rescue nil
|
|
|
|
exit((s1 && s2 && !s3 && !s4) ? true : false)
|
|
|
|
EOS
|
|
|
|
end
|
2009-11-18 08:02:28 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2009-11-16 08:45:59 -05:00
|
|
|
## UTF-8 default_external, EUC-JP default_internal
|
|
|
|
|
|
|
|
def test_filename_extutf8_inteucjp_representable
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\u3042"
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-16 08:45:59 -05:00
|
|
|
exit ents.include?(filename)
|
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8:EUC-JP], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xA4\xA2".force_encoding("euc-jp")
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-16 08:45:59 -05:00
|
|
|
exit ents.include?(filename)
|
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8:EUC-JP], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xA4\xA2".force_encoding("euc-jp")
|
|
|
|
begin
|
|
|
|
open(filename) {}
|
|
|
|
exit true
|
|
|
|
rescue Errno::ENOENT
|
|
|
|
exit false
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_filename_extutf8_inteucjp_unrepresentable
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename1 = "\u2661" # WHITE HEART SUIT which is not representable in EUC-JP
|
|
|
|
filename2 = "\u3042" # HIRAGANA LETTER A which is representable in EUC-JP
|
|
|
|
File.open(filename1, "w") {}
|
|
|
|
File.open(filename2, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-16 08:45:59 -05:00
|
|
|
exit ents.include?(filename1) && ents.include?(filename2)
|
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8:EUC-JP], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename1 = "\u2661" # WHITE HEART SUIT which is not representable in EUC-JP
|
|
|
|
filename2 = "\xA4\xA2".force_encoding("euc-jp") # HIRAGANA LETTER A in EUC-JP
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-16 08:45:59 -05:00
|
|
|
exit ents.include?(filename1) && ents.include?(filename2)
|
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EUTF-8:EUC-JP], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename1 = "\u2661" # WHITE HEART SUIT which is not representable in EUC-JP
|
|
|
|
filename2 = "\u3042" # HIRAGANA LETTER A which is representable in EUC-JP
|
|
|
|
filename3 = "\xA4\xA2".force_encoding("euc-jp") # HIRAGANA LETTER A in EUC-JP
|
|
|
|
s1 = File.stat(filename1) rescue nil
|
|
|
|
s2 = File.stat(filename2) rescue nil
|
|
|
|
s3 = File.stat(filename3) rescue nil
|
2010-01-26 07:34:51 -05:00
|
|
|
exit((s1 && s2 && s3) ? true : false)
|
2009-11-16 08:45:59 -05:00
|
|
|
EOS
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
## others
|
|
|
|
|
2009-11-15 11:24:45 -05:00
|
|
|
def test_filename_bytes_euc_jp
|
|
|
|
with_tmpdir {|d|
|
2009-11-15 12:11:54 -05:00
|
|
|
assert_ruby_status(%w[-EEUC-JP], <<-'EOS', nil, :chdir=>d)
|
2009-11-15 11:24:45 -05:00
|
|
|
filename = "\xA4\xA2".force_encoding("euc-jp")
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-15 11:24:45 -05:00
|
|
|
ents.each {|e| e.force_encoding("ASCII-8BIT") }
|
2010-03-24 22:37:22 -04:00
|
|
|
exit ents.include?(filename.force_encoding("ASCII-8BIT")) ||
|
2010-05-16 22:07:00 -04:00
|
|
|
((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%A4%A2".force_encoding("ASCII-8BIT")))
|
2009-11-15 11:24:45 -05:00
|
|
|
EOS
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_filename_euc_jp
|
|
|
|
with_tmpdir {|d|
|
2009-11-15 12:11:54 -05:00
|
|
|
assert_ruby_status(%w[-EEUC-JP], <<-'EOS', nil, :chdir=>d)
|
2009-11-15 11:24:45 -05:00
|
|
|
filename = "\xA4\xA2".force_encoding("euc-jp")
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%A4%A2".force_encoding("euc-jp")))
|
2009-11-15 11:24:45 -05:00
|
|
|
EOS
|
2009-11-15 12:14:43 -05:00
|
|
|
assert_ruby_status(%w[-EASCII-8BIT], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xA4\xA2"
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2010-03-24 22:37:22 -04:00
|
|
|
exit ents.include?(filename) ||
|
2010-05-16 22:07:00 -04:00
|
|
|
((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%A4%A2".force_encoding("ASCII-8BIT"))) ||
|
|
|
|
((RUBY_PLATFORM =~ /mswin|mingw/) != nil && ents.include?("\x82\xA0".force_encoding("ASCII-8BIT")))
|
2009-11-15 12:14:43 -05:00
|
|
|
EOS
|
2009-11-15 11:24:45 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2009-11-16 08:45:59 -05:00
|
|
|
def test_filename_utf8_raw_name
|
2009-11-15 11:24:45 -05:00
|
|
|
with_tmpdir {|d|
|
2009-11-15 12:11:54 -05:00
|
|
|
assert_ruby_status(%w[-EUTF-8], <<-'EOS', nil, :chdir=>d)
|
2009-11-15 11:24:45 -05:00
|
|
|
filename = "\u3042".force_encoding("utf-8")
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
2009-11-15 12:11:54 -05:00
|
|
|
exit ents.include?(filename)
|
|
|
|
EOS
|
2009-11-15 12:14:43 -05:00
|
|
|
assert_ruby_status(%w[-EASCII-8BIT], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\u3042".force_encoding("ASCII-8BIT")
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /mswin|mingw/) != nil && ents.include?("\x82\xA0".force_encoding("ASCII-8BIT")))
|
2009-11-15 12:14:43 -05:00
|
|
|
EOS
|
2009-11-15 12:11:54 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_filename_ext_euc_jp_and_int_utf_8
|
|
|
|
with_tmpdir {|d|
|
|
|
|
assert_ruby_status(%w[-EEUC-JP], <<-'EOS', nil, :chdir=>d)
|
|
|
|
filename = "\xA4\xA2".force_encoding("euc-jp")
|
|
|
|
File.open(filename, "w") {}
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%A4%A2".force_encoding("euc-jp")))
|
2009-11-15 12:11:54 -05:00
|
|
|
EOS
|
|
|
|
assert_ruby_status(%w[-EEUC-JP:UTF-8], <<-'EOS', nil, :chdir=>d)
|
2009-11-15 12:58:14 -05:00
|
|
|
filename = "\u3042"
|
2010-05-16 22:07:00 -04:00
|
|
|
opts = {:encoding => Encoding.default_external} if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
ents = Dir.entries(".", opts)
|
|
|
|
exit ents.include?(filename) || ((RUBY_PLATFORM =~ /darwin/) != nil && ents.include?("%A4%A2"))
|
2009-11-15 12:58:14 -05:00
|
|
|
EOS
|
|
|
|
}
|
|
|
|
end
|
2012-02-24 17:53:42 -05:00
|
|
|
|
|
|
|
def test_error_nonascii
|
|
|
|
bug6071 = '[ruby-dev:45279]'
|
|
|
|
paths = ["\u{3042}".encode("sjis"), "\u{ff}".encode("iso-8859-1")]
|
|
|
|
encs = with_tmpdir {
|
|
|
|
paths.map {|path|
|
|
|
|
Dir.open(path) rescue $!.message.encoding
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_equal(paths.map(&:encoding), encs, bug6071)
|
|
|
|
end
|
2009-11-15 11:24:45 -05:00
|
|
|
|
2012-02-24 17:53:51 -05:00
|
|
|
def test_inspect_nonascii
|
|
|
|
bug6072 = '[ruby-dev:45280]'
|
|
|
|
paths = ["\u{3042}".encode("sjis"), "\u{ff}".encode("iso-8859-1")]
|
|
|
|
encs = with_tmpdir {
|
|
|
|
paths.map {|path|
|
|
|
|
Dir.mkdir(path)
|
|
|
|
Dir.open(path) {|d| d.inspect.encoding}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_equal(paths.map(&:encoding), encs, bug6072)
|
|
|
|
end
|
|
|
|
end
|