Skip to content

Commit

Permalink
Adds test for class with STI
Browse files Browse the repository at this point in the history
  • Loading branch information
d-m-u committed Jan 10, 2018
1 parent d15cf48 commit c0f4a9e
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 53 deletions.
2 changes: 1 addition & 1 deletion app/models/customization_template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class CustomizationTemplate < ApplicationRecord
has_many :pxe_images, :through => :pxe_image_type

validates :pxe_image_type, :presence => true, :unless => :system?
validates :name, :uniqueness => { :scope => :pxe_image_type }, :unique_within_region => true
validates :name, :unique_within_region => true

scope :with_pxe_image_type_id, ->(pxe_image_type_id) { where(:pxe_image_type_id => pxe_image_type_id) }
scope :with_system, ->(bool = true) { where(:system => bool) }
Expand Down
123 changes: 71 additions & 52 deletions spec/lib/unique_within_region_validator_spec.rb
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

0 comments on commit c0f4a9e

Please sign in to comment.