1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_dir_m17n.rb: fix tests

* test/ruby/test_dir_m17n.rb (with_enc_path): test with UTF-8
  default external encoding for non-locale environments.

* test/ruby/test_dir_m17n.rb (test_glob_warning_opendir): valid
  only if file permissions work.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-02-06 13:24:09 +00:00
parent ecbf835180
commit 6548425ee0

View file

@ -307,11 +307,13 @@ class TestDir_M17N < Test::Unit::TestCase
with_tmpdir do |d|
names = %W"\u{391 392 393 394 395} \u{3042 3044 3046 3048 304a}"
names.each do |dir|
Dir.mkdir(dir) rescue next
begin
yield(dir)
ensure
File.chmod(0700, dir)
EnvUtil.with_default_external(Encoding::UTF_8) do
Dir.mkdir(dir) rescue next
begin
yield(dir)
ensure
File.chmod(0700, dir)
end
end
end
end
@ -321,6 +323,7 @@ class TestDir_M17N < Test::Unit::TestCase
with_enc_path do |dir|
open("#{dir}/x", "w") {}
File.chmod(0300, dir)
next if File.readable?(dir)
assert_warning(/#{dir}/) do
Dir.glob("#{dir}/*")
end
@ -331,6 +334,7 @@ class TestDir_M17N < Test::Unit::TestCase
with_enc_path do |dir|
open("#{dir}/x", "w") {}
File.chmod(0000, dir)
next if File.readable?(dir)
assert_warning(/#{dir}/) do
Dir.glob("#{dir}/x")
end
@ -341,6 +345,7 @@ class TestDir_M17N < Test::Unit::TestCase
with_enc_path do |dir|
Dir.mkdir("#{dir}/x")
File.chmod(0000, dir)
next if File.readable?(dir)
assert_warning(/#{dir}/) do
Dir.glob("#{dir}/x/")
end