Skip to content

Commit

Permalink
Merge pull request #10508 from mfo/US/fix-annotation-having-condition…
Browse files Browse the repository at this point in the history
…-on-public-tdc-with-smaller-position-than-the-annotation

ETQ admin, je veux que mes conditions d'annotations privées ne soient pas en erreur pour des raisons d'ordre
  • Loading branch information
mfo authored Jun 11, 2024
2 parents ed3630e + 06a870a commit 069cb04
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 12 deletions.
34 changes: 22 additions & 12 deletions app/validators/types_de_champ/condition_validator.rb
Original file line number Diff line number Diff line change
@@ -1,24 +1,34 @@
class TypesDeChamp::ConditionValidator < ActiveModel::EachValidator
def validate_each(procedure, attribute, types_de_champ)
return if types_de_champ.empty?
# condition are valid when
# tdc.condition.left is present in upper tdcs
# in case of types_de_champ_private, we should include types_de_champ_publics too
def validate_each(procedure, collection, tdcs)
return if tdcs.empty?

tdcs = if attribute == :draft_types_de_champ_private
procedure.draft_revision.types_de_champ_for
else
procedure.draft_revision.types_de_champ_for(scope: :public)
end

tdcs.each_with_index do |tdc, i|
tdcs = tdcs_with_children(procedure, tdcs)
tdcs.each_with_index do |tdc, tdc_index|
next unless tdc.condition?

errors = tdc.condition.errors(tdcs.take(i))
upper_tdcs = []
if collection == :draft_types_de_champ_private # in case of private tdc validation, we must include public tdcs
upper_tdcs += tdcs_with_children(procedure, procedure.draft_types_de_champ_public)
end
upper_tdcs += tdcs.take(tdc_index) # we take all upper_tdcs of current tdcs

errors = tdc.condition.errors(upper_tdcs)
next if errors.blank?

procedure.errors.add(
attribute,
procedure.errors.generate_message(attribute, :invalid_condition, { value: tdc.libelle }),
collection,
procedure.errors.generate_message(collection, :invalid_condition, { value: tdc.libelle }),
type_de_champ: tdc
)
end
end

# find children in repetitions
def tdcs_with_children(procedure, tdcs)
tdcs.to_a
.flat_map { _1.repetition? ? procedure.draft_revision.children_of(_1) : _1 }
end
end
27 changes: 27 additions & 0 deletions spec/models/procedure_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,33 @@
end
end

context 'when condition on champ private use public champ having a position higher than the champ private' do
include Logic

let(:types_de_champ_public) do
[
{ type: :decimal_number, stable_id: 1 },
{ type: :decimal_number, stable_id: 2 }
]
end

let(:types_de_champ_private) do
[
{ type: :text, condition: ds_eq(champ_value(2), constant(2)), stable_id: 3 }
]
end

it 'validate without context' do
procedure.validate
expect(procedure.errors.full_messages_for(:draft_types_de_champ_private)).to be_empty
end

it 'validate allows condition' do
procedure.validate(:types_de_champ_private_editor)
expect(procedure.errors.full_messages_for(:draft_types_de_champ_private)).to be_empty
end
end

context 'when condition on champ public use private champ' do
include Logic
let(:types_de_champ_public) { [{ type: :text, libelle: 'condition', condition: ds_eq(champ_value(1), constant(2)), stable_id: 2 }] }
Expand Down

0 comments on commit 069cb04

Please sign in to comment.