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

use Dir.mktmpdir.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-10-24 05:55:26 +00:00
parent 124bdf8815
commit 5d2671d2bc
3 changed files with 23 additions and 27 deletions

View file

@ -287,16 +287,12 @@ class TestPathname < Test::Unit::TestCase
return
rescue TypeError
end
dir = "#{Dir.tmpdir}/tst-pathname-#$$"
Dir.mkdir(dir)
begin
Dir.mktmpdir {|dir|
File.symlink("not-exist-target", "#{dir}/not-exist")
assert_raise(Errno::ENOENT) { realpath("#{dir}/not-exist") }
File.symlink("loop", "#{dir}/loop")
assert_raise(Errno::ELOOP) { realpath("#{dir}/loop") }
ensure
FileUtils.rmtree(dir)
end
}
end
def descend(path)

View file

@ -5,25 +5,23 @@ require 'fileutils'
class TestDir < Test::Unit::TestCase
ROOT = File.join(Dir.tmpdir, "__test_dir__#{$$}")
def setup
Dir.mkdir(ROOT)
@root = Dir.mktmpdir
for i in ?a..?z
if i.ord % 2 == 0
FileUtils.touch(File.join(ROOT, i))
FileUtils.touch(File.join(@root, i))
else
FileUtils.mkdir(File.join(ROOT, i))
FileUtils.mkdir(File.join(@root, i))
end
end
end
def teardown
FileUtils.rm_rf ROOT if File.directory?(ROOT)
FileUtils.remove_entry_secure @root if File.directory?(@root)
end
def test_seek
dir = Dir.open(ROOT)
dir = Dir.open(@root)
begin
cache = []
loop do

View file

@ -7,21 +7,23 @@ class TestFile < Test::Unit::TestCase
# I don't know Ruby's spec about "unlink-before-close" exactly.
# This test asserts current behaviour.
def test_unlink_before_close
filename = Dir.tmpdir + '/' + File.basename(__FILE__) + ".#{$$}"
w = File.open(filename, "w")
w << "foo"
w.close
r = File.open(filename, "r")
begin
if /(mswin|bccwin|mingw|emx)/ =~ RUBY_PLATFORM
assert_raise(Errno::EACCES) {File.unlink(filename)}
else
assert_nothing_raised {File.unlink(filename)}
Dir.mktmpdir {|tmpdir|
filename = tmpdir + '/' + File.basename(__FILE__) + ".#{$$}"
w = File.open(filename, "w")
w << "foo"
w.close
r = File.open(filename, "r")
begin
if /(mswin|bccwin|mingw|emx)/ =~ RUBY_PLATFORM
assert_raise(Errno::EACCES) {File.unlink(filename)}
else
assert_nothing_raised {File.unlink(filename)}
end
ensure
r.close
File.unlink(filename) if File.exist?(filename)
end
ensure
r.close
File.unlink(filename) if File.exist?(filename)
end
}
end
include TestEOF