Skip to content

Commit 01e2c40

Browse files
committed
Make sure configurations work as sets
When they share the same name and the same values, they must be the same.
1 parent 27b49fc commit 01e2c40

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

lib/alchemy/configuration.rb

+17
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ def defined_configurations = []
7070

7171
def defined_options = []
7272

73+
def defined_values
74+
defined_options + defined_configurations
75+
end
76+
7377
def configuration(name, configuration_class)
7478
# The defined configurations on a class are all those defined directly on
7579
# that class as well as those defined on ancestors.
@@ -123,5 +127,18 @@ def option(name, type, default: nil, **args)
123127
end
124128
end
125129
end
130+
131+
def hash
132+
self.class.defined_values.map do |ivar|
133+
[ivar, send(ivar).hash]
134+
end.hash
135+
end
136+
137+
def ==(other)
138+
self.class == other.class && self.class.defined_values.all? do |var|
139+
send(var) == other.send(var)
140+
end
141+
end
142+
alias_method :eql?, :==
126143
end
127144
end

lib/alchemy/configuration/base_option.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ def allowed_classes
2222
[self.class.value_class]
2323
end
2424

25-
def eql?(other)
25+
def ==(other)
2626
self.class == other.class && value == other.value
2727
end
28+
alias_method :eql?, :==
2829

2930
def hash
3031
[self.class, value].hash

spec/libraries/alchemy/configuration/configuration_option_spec.rb

+15
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,19 @@
4040
end
4141
end
4242
end
43+
44+
describe "Using within a set" do
45+
let(:value) { {show_root: true, show_flag: false} }
46+
let(:option_2) { described_class.new(value: value, name: :my_config, config_class: Alchemy::Configurations::Sitemap) }
47+
48+
it "should have the same hash value" do
49+
expect(option.hash).to eq(option_2.hash)
50+
end
51+
52+
it "should be able to add the option to a set" do
53+
expect(option).to eql(option_2)
54+
expect(Set.new([option, option_2])).to include(option)
55+
expect(Set.new([option, option_2]).length).to eq(1)
56+
end
57+
end
4358
end

0 commit comments

Comments
 (0)