feat(routing): make routing engine work with departement champ
This commit is contained in:
parent
2827db5263
commit
7e3fc68c53
2 changed files with 61 additions and 37 deletions
|
@ -44,6 +44,8 @@ class Logic::ChampValue < Logic::Term
|
||||||
targeted_champ.selected
|
targeted_champ.selected
|
||||||
when "Champs::MultipleDropDownListChamp"
|
when "Champs::MultipleDropDownListChamp"
|
||||||
targeted_champ.selected_options
|
targeted_champ.selected_options
|
||||||
|
when "Champs::DepartementChamp"
|
||||||
|
targeted_champ.to_s
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,16 @@ describe RoutingEngine, type: :model do
|
||||||
include Logic
|
include Logic
|
||||||
|
|
||||||
describe '.compute' do
|
describe '.compute' do
|
||||||
|
let(:dossier) { create(:dossier, procedure:) }
|
||||||
|
let(:defaut_groupe) { procedure.defaut_groupe_instructeur }
|
||||||
|
let(:gi_2) { procedure.groupe_instructeurs.find_by(label: 'a second group') }
|
||||||
|
|
||||||
|
subject do
|
||||||
|
RoutingEngine.compute(dossier)
|
||||||
|
dossier.groupe_instructeur
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with a drop down list type de champ' do
|
||||||
let(:procedure) do
|
let(:procedure) do
|
||||||
create(:procedure,
|
create(:procedure,
|
||||||
types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }]).tap do |p|
|
types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }]).tap do |p|
|
||||||
|
@ -12,15 +22,6 @@ describe RoutingEngine, type: :model do
|
||||||
|
|
||||||
let(:drop_down_tdc) { procedure.draft_revision.types_de_champ.first }
|
let(:drop_down_tdc) { procedure.draft_revision.types_de_champ.first }
|
||||||
|
|
||||||
let(:dossier) { create(:dossier, procedure:) }
|
|
||||||
let(:defaut_groupe) { procedure.defaut_groupe_instructeur }
|
|
||||||
let(:gi_2) { procedure.groupe_instructeurs.find_by(label: 'a second group') }
|
|
||||||
|
|
||||||
subject do
|
|
||||||
RoutingEngine.compute(dossier)
|
|
||||||
dossier.groupe_instructeur
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'without any rules' do
|
context 'without any rules' do
|
||||||
it { is_expected.to eq(defaut_groupe) }
|
it { is_expected.to eq(defaut_groupe) }
|
||||||
end
|
end
|
||||||
|
@ -60,4 +61,25 @@ describe RoutingEngine, type: :model do
|
||||||
it { is_expected.to eq(defaut_groupe) }
|
it { is_expected.to eq(defaut_groupe) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'with a departements type de champ' do
|
||||||
|
let(:procedure) do
|
||||||
|
create(:procedure, types_de_champ_public: [{ type: :departements }]).tap do |p|
|
||||||
|
p.groupe_instructeurs.create(label: 'a second group')
|
||||||
|
p.groupe_instructeurs.create(label: 'a third group')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
let(:departements_tdc) { procedure.draft_revision.types_de_champ.first }
|
||||||
|
|
||||||
|
context 'with a matching rule' do
|
||||||
|
before do
|
||||||
|
gi_2.update(routing_rule: ds_eq(champ_value(departements_tdc.stable_id), constant('43 – Haute-Loire')))
|
||||||
|
dossier.champs.first.update(value: 'Haute-Loire')
|
||||||
|
end
|
||||||
|
|
||||||
|
it { is_expected.to eq(gi_2) }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue