Fixes #2560 - Setting used objects (overviews, triggers, scheduler) to inactive works

This commit is contained in:
Mantas Masalskis 2020-11-24 10:32:07 +01:00 committed by Thorsten Eckel
parent 5f2bc303c7
commit 4088d6e74c
2 changed files with 50 additions and 0 deletions

View file

@ -26,6 +26,7 @@ class ObjectManager::Attribute < ApplicationModel
validates :name, presence: true validates :name, presence: true
validates :data_type, inclusion: { in: DATA_TYPES, msg: '%{value} is not a valid data type' } # rubocop:disable Style/FormatStringToken validates :data_type, inclusion: { in: DATA_TYPES, msg: '%{value} is not a valid data type' } # rubocop:disable Style/FormatStringToken
validate :inactive_must_be_unused_by_references, unless: :active?
validate :data_option_must_have_appropriate_values validate :data_option_must_have_appropriate_values
validate :data_type_must_not_change, on: :update validate :data_type_must_not_change, on: :update
@ -844,6 +845,16 @@ is certain attribute used by triggers, overviews or schedulers
.each { |validation| errors.add(local_data_attr, validation[:message]) } .each { |validation| errors.add(local_data_attr, validation[:message]) }
end end
def inactive_must_be_unused_by_references
return if !ObjectManager::Attribute.attribute_used_by_references?(object_lookup.name, name)
human_reference = ObjectManager::Attribute.attribute_used_by_references_humaniced(object_lookup.name, name)
text = "#{object_lookup.name}.#{name} is referenced by #{human_reference} and thus cannot be set to inactive!"
# Adding as `base` to prevent `Active` prefix which does not look good on error message shown at the top of the form.
errors.add(:base, text)
end
def data_type_must_not_change def data_type_must_not_change
allowable_changes = %w[tree_select select input checkbox] allowable_changes = %w[tree_select select input checkbox]

View file

@ -107,4 +107,43 @@ RSpec.describe ObjectManager::Attribute, type: :model do
end.not_to raise_error end.not_to raise_error
end end
end end
describe 'validate that referenced attributes are not set as inactive' do
subject(:attr) { create(:object_manager_attribute_text) }
before do
allow(described_class)
.to receive(:attribute_used_by_references?)
.with(attr.object_lookup.name, attr.name)
.and_return(is_referenced)
attr.active = active
end
context 'when is used and changing to inactive' do
let(:active) { false }
let(:is_referenced) { true }
it { is_expected.not_to be_valid }
it do
attr.valid?
expect(attr.errors).not_to be_blank
end
end
context 'when is not used and changing to inactive' do
let(:active) { false }
let(:is_referenced) { false }
it { is_expected.to be_valid }
end
context 'when is used and staying active and chan' do
let(:active) { true }
let(:is_referenced) { true }
it { is_expected.to be_valid }
end
end
end end