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
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "Array#hash" do
it "returns the same fixnum for arrays with the same content" do
[].respond_to?(:hash).should == true
[[], [1, 2, 3]].each do |ary|
ary.hash.should == ary.dup.hash
ary.hash.should be_an_instance_of(Fixnum)
end
end
ruby_bug "#", "1.8.6.277" do
it "properly handles recursive arrays" do
empty = ArraySpecs.empty_recursive_array
empty.hash.should be_kind_of(Integer)
array = ArraySpecs.recursive_array
array.hash.should be_kind_of(Integer)
end
end
ruby_bug "redmine #1852", "1.9.1" do
it "returns the same hash for equal recursive arrays" do
rec = []; rec << rec
rec.hash.should == [rec].hash
rec.hash.should == [[rec]].hash
# This is because rec.eql?([[rec]])
# Remember that if two objects are eql?
# then the need to have the same hash
# Check the Array#eql? specs!
end
it "returns the same hash for equal recursive arrays through hashes" do
h = {} ; rec = [h] ; h[:x] = rec
rec.hash.should == [h].hash
rec.hash.should == [{:x => rec}].hash
# Like above, this is because rec.eql?([{:x => rec}])
end
end
# Too much of an implementation detail? -rue
not_compliant_on :rubinius do
it "calls to_int on result of calling hash on each element" do
ary = Array.new(5) do
# Can't use should_receive here because it calls hash()
obj = mock('0')
def obj.hash()
def self.to_int() freeze; 0 end
return self
end
obj
end
ary.hash
ary.each { |obj| obj.frozen?.should == true }
hash = mock('1')
hash.should_receive(:to_int).and_return(1.hash)
obj = mock('@hash')
obj.instance_variable_set(:@hash, hash)
def obj.hash() @hash end
[obj].hash.should == [1].hash
end
end
it "ignores array class differences" do
ArraySpecs::MyArray[].hash.should == [].hash
ArraySpecs::MyArray[1, 2].hash.should == [1, 2].hash
end
it "returns same hash code for arrays with the same content" do
a = [1, 2, 3, 4]
a.fill 'a', 0..3
b = %w|a a a a|
a.hash.should == b.hash
end
it "returns the same value if arrays are #eql?" do
a = [1, 2, 3, 4]
a.fill 'a', 0..3
b = %w|a a a a|
a.hash.should == b.hash
a.should eql(b)
end
end
|