mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ead4095935
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
109 lines
2.9 KiB
Ruby
109 lines
2.9 KiB
Ruby
require File.expand_path('../../../spec_helper', __FILE__)
|
|
require File.expand_path('../fixtures/classes', __FILE__)
|
|
|
|
describe "Kernel#test" do
|
|
before :all do
|
|
@file = File.dirname(__FILE__) + '/fixtures/classes.rb'
|
|
@dir = File.dirname(__FILE__) + '/fixtures'
|
|
end
|
|
|
|
it "is a private method" do
|
|
Kernel.should have_private_instance_method(:test)
|
|
end
|
|
|
|
it "returns true when passed ?f if the argument is a regular file" do
|
|
Kernel.test(?f, @file).should == true
|
|
end
|
|
|
|
it "returns true when passed ?e if the argument is a file" do
|
|
Kernel.test(?e, @file).should == true
|
|
end
|
|
|
|
it "returns true when passed ?d if the argument is a directory" do
|
|
Kernel.test(?d, @dir).should == true
|
|
end
|
|
|
|
platform_is_not :windows do
|
|
it "returns true when passed ?l if the argument is a symlink" do
|
|
link = tmp("file_symlink.lnk")
|
|
File.symlink(@file, link)
|
|
begin
|
|
Kernel.test(?l, link).should be_true
|
|
ensure
|
|
rm_r link
|
|
end
|
|
end
|
|
end
|
|
|
|
it "returns true when passed ?r if the argument is readable by the effective uid" do
|
|
Kernel.test(?r, @file).should be_true
|
|
end
|
|
|
|
it "returns true when passed ?R if the argument is readable by the real uid" do
|
|
Kernel.test(?R, @file).should be_true
|
|
end
|
|
|
|
context "writable test" do
|
|
before do
|
|
@tmp_file = tmp("file.kernel.test")
|
|
touch(@tmp_file)
|
|
end
|
|
|
|
after do
|
|
rm_r @tmp_file
|
|
end
|
|
|
|
it "returns true when passed ?w if the argument is readable by the effective uid" do
|
|
Kernel.test(?w, @tmp_file).should be_true
|
|
end
|
|
|
|
it "returns true when passed ?W if the argument is readable by the real uid" do
|
|
Kernel.test(?W, @tmp_file).should be_true
|
|
end
|
|
end
|
|
|
|
context "time commands" do
|
|
before :each do
|
|
@tmp_file = File.new(tmp("file.kernel.test"), "w")
|
|
end
|
|
|
|
after :each do
|
|
@tmp_file.close
|
|
rm_r @tmp_file
|
|
end
|
|
|
|
it "returns the last access time for the provided file when passed ?A" do
|
|
Kernel.test(?A, @tmp_file).should == @tmp_file.atime
|
|
end
|
|
|
|
it "returns the time at which the file was created when passed ?C" do
|
|
Kernel.test(?C, @tmp_file).should == @tmp_file.ctime
|
|
end
|
|
|
|
it "returns the time at which the file was modified when passed ?M" do
|
|
Kernel.test(?M, @tmp_file).should == @tmp_file.mtime
|
|
end
|
|
end
|
|
|
|
it "calls #to_path on second argument when passed ?f and a filename" do
|
|
p = mock('path')
|
|
p.should_receive(:to_path).and_return @file
|
|
Kernel.test(?f, p)
|
|
end
|
|
|
|
it "calls #to_path on second argument when passed ?e and a filename" do
|
|
p = mock('path')
|
|
p.should_receive(:to_path).and_return @file
|
|
Kernel.test(?e, p)
|
|
end
|
|
|
|
it "calls #to_path on second argument when passed ?d and a directory" do
|
|
p = mock('path')
|
|
p.should_receive(:to_path).and_return @dir
|
|
Kernel.test(?d, p)
|
|
end
|
|
end
|
|
|
|
describe "Kernel.test" do
|
|
it "needs to be reviewed for spec completeness"
|
|
end
|