feat(routing): reset value if target as changed
This commit is contained in:
parent
9fe8f98a17
commit
c02319aa56
2 changed files with 36 additions and 7 deletions
|
@ -6,13 +6,18 @@ module Administrateurs
|
|||
|
||||
def update
|
||||
left = targeted_champ
|
||||
right = value
|
||||
|
||||
right = targeted_champ_changed? ? empty : value
|
||||
|
||||
groupe_instructeur.update!(routing_rule: ds_eq(left, right))
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def targeted_champ_changed?
|
||||
targeted_champ != groupe_instructeur.routing_rule&.left
|
||||
end
|
||||
|
||||
def targeted_champ
|
||||
Logic.from_json(routing_params[:targeted_champ])
|
||||
end
|
||||
|
|
|
@ -3,26 +3,50 @@ describe Administrateurs::RoutingController, type: :controller do
|
|||
|
||||
before { sign_in(procedure.administrateurs.first.user) }
|
||||
|
||||
describe '#update' do
|
||||
let(:procedure) { create(:procedure, types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }]) }
|
||||
describe '#update targeted champ' do
|
||||
let(:procedure) { create(:procedure, types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }, { type: :text, libelle: 'Un champ texte' }]) }
|
||||
let(:gi_2) { procedure.groupe_instructeurs.create(label: 'groupe 2') }
|
||||
let(:drop_down_tdc) { procedure.draft_revision.types_de_champ.first }
|
||||
let(:params) do
|
||||
{
|
||||
procedure_id: procedure.id,
|
||||
targeted_champ: drop_down_tdc.stable_id,
|
||||
value: 'Lyon',
|
||||
targeted_champ: champ_value(drop_down_tdc.stable_id).to_json,
|
||||
value: empty.to_json,
|
||||
groupe_instructeur_id: gi_2.id
|
||||
}
|
||||
end
|
||||
|
||||
before do
|
||||
sign_in(procedure.administrateurs.first.user)
|
||||
post :update, params: params, format: :turbo_stream
|
||||
end
|
||||
|
||||
it do
|
||||
expect(gi_2.reload.routing_rule).to eq(ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')))
|
||||
expect(gi_2.reload.routing_rule).to eq(ds_eq(champ_value(drop_down_tdc.stable_id), empty))
|
||||
end
|
||||
|
||||
context '#update value' do
|
||||
let(:value_updated_params) { params.merge(value: constant('Lyon').to_json) }
|
||||
|
||||
before do
|
||||
post :update, params: value_updated_params, format: :turbo_stream
|
||||
end
|
||||
|
||||
it do
|
||||
expect(gi_2.reload.routing_rule).to eq(ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')))
|
||||
end
|
||||
|
||||
context 'targeted champ changed' do
|
||||
let(:last_tdc) { procedure.draft_revision.types_de_champ.last }
|
||||
|
||||
before do
|
||||
targeted_champ_updated_params = value_updated_params.merge(targeted_champ: champ_value(last_tdc.stable_id).to_json)
|
||||
post :update, params: targeted_champ_updated_params, format: :turbo_stream
|
||||
end
|
||||
|
||||
it do
|
||||
expect(gi_2.reload.routing_rule).to eq(ds_eq(champ_value(last_tdc.stable_id), empty))
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue