demarches-normaliennes/spec/components/conditions/routing_rules_component_spec.rb
2023-11-06 15:25:45 +01:00

52 lines
2.4 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

describe Conditions::RoutingRulesComponent, type: :component do
include Logic
describe 'render' do
let(:procedure) { create(:procedure, types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }, { type: :integer_number, libelle: 'Un champ nombre entier' }]) }
let(:groupe_instructeur) { procedure.groupe_instructeurs.first }
let(:drop_down_tdc) { procedure.draft_revision.types_de_champ.first }
let(:integer_number_tdc) { procedure.draft_revision.types_de_champ.last }
let(:routing_rule) { ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')) }
before do
groupe_instructeur.update(routing_rule: routing_rule)
render_inline(described_class.new(groupe_instructeur: groupe_instructeur))
end
context 'with one row' do
context 'when routing rule is valid' do
it do
expect(page).to have_text('Champ Cible')
expect(page).not_to have_text('règle invalide')
expect(page).to have_select('groupe_instructeur[condition_form][rows][][operator_name]', options: ["Est", "Nest pas"])
end
end
context 'when routing rule is invalid' do
let(:routing_rule) { ds_eq(champ_value(drop_down_tdc.stable_id), empty) }
it { expect(page).to have_text('règle invalide') }
end
end
context 'with two rows' do
context 'when routing rule is valid' do
let(:routing_rule) { ds_and([ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')), ds_not_eq(champ_value(integer_number_tdc.stable_id), constant(33))]) }
it do
expect(page).not_to have_text('règle invalide')
expect(page).to have_selector('tbody > tr', count: 2)
expect(page).to have_select("groupe_instructeur_condition_form_top_operator_name", selected: "Et", options: ['Et', 'Ou'])
end
end
context 'when routing rule is invalid' do
let(:routing_rule) { ds_or([ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')), ds_not_eq(champ_value(integer_number_tdc.stable_id), empty)]) }
it do
expect(page).to have_text('règle invalide')
expect(page).to have_selector('tbody > tr', count: 2)
expect(page).to have_select("groupe_instructeur_condition_form_top_operator_name", selected: "Ou", options: ['Et', 'Ou'])
end
end
end
end
end