1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../shared/file/size', __FILE__)
describe "File.size?" do
it_behaves_like :file_size, :size?, File
end
describe "File.size?" do
it_behaves_like :file_size_to_io, :size?, File
end
describe "File.size?" do
it_behaves_like :file_size_nil_when_missing, :size?, File
end
describe "File.size?" do
it_behaves_like :file_size_nil_when_empty, :size?, File
end
describe "File.size?" do
it_behaves_like :file_size_with_file_argument, :size?, File
end
describe "File.size" do
it_behaves_like :file_size, :size, File
end
describe "File.size" do
it_behaves_like :file_size_to_io, :size, File
end
describe "File.size" do
it_behaves_like :file_size_raise_when_missing, :size, File
end
describe "File.size" do
it_behaves_like :file_size_0_when_empty, :size, File
end
describe "File.size" do
it_behaves_like :file_size_with_file_argument, :size, File
end
ruby_version_is "1.9" do
describe "File#size" do
before :each do
@name = tmp('i_exist')
touch(@name) { |f| f.write 'rubinius' }
@file = File.new @name
@file_org = @file
end
after :each do
@file_org.close unless @file_org.closed?
rm_r @name
end
it "is an instance method" do
@file.respond_to?(:size).should be_true
end
it "returns the file's size as a Fixnum" do
@file.size.should be_an_instance_of(Fixnum)
end
it "returns the file's size in bytes" do
@file.size.should == 8
end
platform_is_not :windows do # impossible to remove opened file on Windows
it "returns the cached size of the file if subsequently deleted" do
rm_r @file.path
@file.size.should == 8
end
end
it "returns the file's current size even if modified" do
File.open(@file.path,'a') {|f| f.write '!'}
@file.size.should == 9
end
it "raises an IOError on a closed file" do
@file.close
lambda { @file.size }.should raise_error(IOError)
end
platform_is_not :windows do
it "follows symlinks if necessary" do
ln_file = tmp('i_exist_ln')
rm_r ln_file
begin
File.symlink(@file.path, ln_file).should == 0
file = File.new(ln_file)
file.size.should == 8
ensure
file.close if file && !file.closed?
rm_r ln_file
end
end
end
end
describe "File#size for an empty file" do
before :each do
@name = tmp('empty')
touch(@name)
@file = File.new @name
end
after :each do
@file.close unless @file.closed?
rm_r @name
end
it "returns 0" do
@file.size.should == 0
end
end
end
|