-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
74 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
FactoryGirl.define do | ||
factory :pxe_image_type do | ||
sequence(:name) { |n| "pxe_image_type_#{seq_padded_for_sorting(n)}" } | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,92 @@ | ||
describe UniqueWithinRegionValidator do | ||
describe "#unique_within_region" do | ||
let(:case_sensitive_class) do | ||
Class.new(User).tap do |c| | ||
c.class_eval do | ||
validates :name, :unique_within_region => true | ||
context "class without STI" do | ||
let(:case_sensitive_class) do | ||
Class.new(User).tap do |c| | ||
c.class_eval do | ||
validates :name, :unique_within_region => true | ||
end | ||
end | ||
end | ||
end | ||
|
||
let(:case_insensitive_class) do | ||
Class.new(User).tap do |c| | ||
c.class_eval do | ||
validates :name, :unique_within_region => {:match_case => false} | ||
let(:case_insensitive_class) do | ||
Class.new(User).tap do |c| | ||
c.class_eval do | ||
validates :name, :unique_within_region => {:match_case => false} | ||
end | ||
end | ||
end | ||
end | ||
|
||
let(:test_name) { "thename" } | ||
let(:test_name) { "thename" } | ||
|
||
let(:in_first_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(1, 0), | ||
:name => test_name | ||
).id | ||
end | ||
let(:in_first_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(1, 0), | ||
:name => test_name | ||
).id | ||
end | ||
|
||
let(:also_in_first_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(2, 0), | ||
:name => test_name.upcase | ||
).id | ||
end | ||
let(:also_in_first_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(2, 0), | ||
:name => test_name.upcase | ||
).id | ||
end | ||
|
||
let(:in_second_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(2, 1), | ||
:name => test_name | ||
).id | ||
end | ||
let(:in_second_region_id) do | ||
FactoryGirl.create( | ||
:user, | ||
:id => case_sensitive_class.id_in_region(2, 1), | ||
:name => test_name | ||
).id | ||
end | ||
|
||
it "returns true if the field is unique for the records in the region" do | ||
expect(case_sensitive_class.find(in_first_region_id).valid?).to be true | ||
expect(case_sensitive_class.find(also_in_first_region_id).valid?).to be true | ||
expect(case_sensitive_class.find(in_second_region_id).valid?).to be true | ||
end | ||
it "returns true if the field is unique for the records in the region" do | ||
expect(case_sensitive_class.find(in_first_region_id).valid?).to be true | ||
expect(case_sensitive_class.find(also_in_first_region_id).valid?).to be true | ||
expect(case_sensitive_class.find(in_second_region_id).valid?).to be true | ||
end | ||
|
||
it "returns false if the field is not unique for the records in the region" do | ||
in_first_region_rec = case_sensitive_class.find(in_first_region_id) | ||
also_in_first_region_rec = case_sensitive_class.find(also_in_first_region_id) | ||
in_second_region_rec = case_sensitive_class.find(in_second_region_id) | ||
it "returns false if the field is not unique for the records in the region" do | ||
in_first_region_rec = case_sensitive_class.find(in_first_region_id) | ||
also_in_first_region_rec = case_sensitive_class.find(also_in_first_region_id) | ||
in_second_region_rec = case_sensitive_class.find(in_second_region_id) | ||
|
||
also_in_first_region_rec.name = in_first_region_rec.name | ||
also_in_first_region_rec.name = in_first_region_rec.name | ||
|
||
expect(in_first_region_rec.valid?).to be true | ||
expect(also_in_first_region_rec.valid?).to be false | ||
expect(in_second_region_rec.valid?).to be true | ||
expect(in_first_region_rec.valid?).to be true | ||
expect(also_in_first_region_rec.valid?).to be false | ||
expect(in_second_region_rec.valid?).to be true | ||
end | ||
|
||
it "is case insensitive if match_case is set to false" do | ||
in_first_region_rec = case_insensitive_class.find(in_first_region_id) | ||
also_in_first_region_rec = case_insensitive_class.find(also_in_first_region_id) | ||
in_second_region_rec = case_insensitive_class.find(in_second_region_id) | ||
|
||
expect(in_first_region_rec.valid?).to be false | ||
expect(also_in_first_region_rec.valid?).to be false | ||
expect(in_second_region_rec.valid?).to be true | ||
end | ||
end | ||
|
||
it "is case insensitive if match_case is set to false" do | ||
in_first_region_rec = case_insensitive_class.find(in_first_region_id) | ||
also_in_first_region_rec = case_insensitive_class.find(also_in_first_region_id) | ||
in_second_region_rec = case_insensitive_class.find(in_second_region_id) | ||
context "class with STI" do | ||
context "two subclasses" do | ||
it "raises error with non-unique names in same region" do | ||
FactoryGirl.create(:customization_template_cloud_init, :name => "foo") | ||
|
||
expect(in_first_region_rec.valid?).to be false | ||
expect(also_in_first_region_rec.valid?).to be false | ||
expect(in_second_region_rec.valid?).to be true | ||
expect { FactoryGirl.create(:customization_template_sysprep, :name => "foo") } | ||
.to raise_error(ActiveRecord::RecordInvalid, / Name is not unique within region/) | ||
end | ||
|
||
it "doesn't raise error with unique names" do | ||
FactoryGirl.create(:customization_template_cloud_init) | ||
|
||
expect { FactoryGirl.create(:customization_template_sysprep) }.to_not raise_error | ||
end | ||
end | ||
end | ||
end | ||
end |