ruby/spec/rubyspec/core/file/umask_spec.rb
eregon 95e8c48dd3 Add in-tree mspec and ruby/spec
* For easier modifications of ruby/spec by MRI developers.
* .gitignore: track changes under spec.
* spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec.
  These files can therefore be updated like any other file in MRI.
  Instructions are provided in spec/README.
  [Feature #13156] [ruby-core:79246]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:04:49 +00:00

60 lines
1.5 KiB
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
describe "File.umask" do
before :each do
@orig_umask = File.umask
@file = tmp('test.txt')
touch @file
end
after :each do
rm_r @file
File.umask(@orig_umask)
end
it "returns a Fixnum" do
File.umask.should be_kind_of(Fixnum)
end
platform_is_not :windows do
it "returns the current umask value for the process" do
File.umask(022)
File.umask(006).should == 022
File.umask.should == 006
end
it "invokes to_int on non-integer argument" do
(obj = mock(022)).should_receive(:to_int).any_number_of_times.and_return(022)
File.umask(obj)
File.umask(obj).should == 022
end
end
it "always succeeds with any integer values" do
vals = [-2**30, -2**16, -2**8, -2,
-1.5, -1, 0.5, 0, 1, 2, 7.77777, 16, 32, 64, 2**8, 2**16, 2**30]
vals.each { |v|
lambda { File.umask(v) }.should_not raise_error
}
end
it "raises ArgumentError when more than one argument is provided" do
lambda { File.umask(022, 022) }.should raise_error(ArgumentError)
end
platform_is :windows do
it "returns the current umask value for this process (basic)" do
File.umask.should == 0
File.umask(022).should == 0
File.umask(044).should == 0
end
# The value used here is the value of _S_IWRITE.
it "returns the current umask value for this process" do
File.umask(0000200)
File.umask.should == 0000200
File.umask(0006)
File.umask.should == 0
end
end
end