fix(routing): routing engine works even with unconfigured groups
This commit is contained in:
parent
54fe10ff76
commit
e8d687f5e7
3 changed files with 39 additions and 14 deletions
|
@ -2,7 +2,7 @@ module RoutingEngine
|
||||||
def self.compute(dossier)
|
def self.compute(dossier)
|
||||||
return if !dossier.procedure.feature_enabled?(:routing_rules)
|
return if !dossier.procedure.feature_enabled?(:routing_rules)
|
||||||
|
|
||||||
matching_groupe = dossier.procedure.groupe_instructeurs.active.find do |gi|
|
matching_groupe = dossier.procedure.groupe_instructeurs.active.reject(&:routing_to_configure?).find do |gi|
|
||||||
gi.routing_rule&.compute(dossier.champs)
|
gi.routing_rule&.compute(dossier.champs)
|
||||||
end
|
end
|
||||||
matching_groupe ||= dossier.procedure.defaut_groupe_instructeur
|
matching_groupe ||= dossier.procedure.defaut_groupe_instructeur
|
||||||
|
|
|
@ -5,12 +5,15 @@ describe RoutingEngine, type: :model do
|
||||||
|
|
||||||
describe '.compute' do
|
describe '.compute' do
|
||||||
let(:procedure) do
|
let(:procedure) do
|
||||||
create(:procedure).tap do |p|
|
create(:procedure,
|
||||||
p.groupe_instructeurs.create(label: 'a second group')
|
types_de_champ_public: [{ type: :drop_down_list, libelle: 'Votre ville', options: ['Paris', 'Lyon', 'Marseille'] }]).tap do |p|
|
||||||
p.groupe_instructeurs.create(label: 'a third group')
|
p.groupe_instructeurs.create(label: 'a second group')
|
||||||
end
|
p.groupe_instructeurs.create(label: 'a third group')
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
let(:drop_down_tdc) { procedure.draft_revision.types_de_champ.first }
|
||||||
|
|
||||||
let(:dossier) { create(:dossier, procedure:) }
|
let(:dossier) { create(:dossier, procedure:) }
|
||||||
let(:defaut_groupe) { procedure.defaut_groupe_instructeur }
|
let(:defaut_groupe) { procedure.defaut_groupe_instructeur }
|
||||||
let(:gi_2) { procedure.groupe_instructeurs.find_by(label: 'a second group') }
|
let(:gi_2) { procedure.groupe_instructeurs.find_by(label: 'a second group') }
|
||||||
|
@ -34,13 +37,26 @@ describe RoutingEngine, type: :model do
|
||||||
it { is_expected.to eq(defaut_groupe) }
|
it { is_expected.to eq(defaut_groupe) }
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a matching rules' do
|
context 'with rules not configured yet' do
|
||||||
before { gi_2.update(routing_rule: constant(true)) }
|
before do
|
||||||
|
procedure.groupe_instructeurs.each do |gi|
|
||||||
|
gi.update(routing_rule: ds_eq(empty, empty))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
it { is_expected.to eq(defaut_groupe) }
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with a matching rule' do
|
||||||
|
before do
|
||||||
|
gi_2.update(routing_rule: ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')))
|
||||||
|
dossier.champs.first.update(value: 'Lyon')
|
||||||
|
end
|
||||||
|
|
||||||
it { is_expected.to eq(gi_2) }
|
it { is_expected.to eq(gi_2) }
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a closed gi with a matching rules' do
|
context 'with a closed gi with a matching rule' do
|
||||||
before { gi_2.update(routing_rule: constant(true), closed: true) }
|
before { gi_2.update(routing_rule: constant(true), closed: true) }
|
||||||
|
|
||||||
it { is_expected.to eq(defaut_groupe) }
|
it { is_expected.to eq(defaut_groupe) }
|
||||||
|
|
|
@ -10,13 +10,14 @@ describe 'The routing with rules', js: true do
|
||||||
p.draft_revision.add_type_de_champ(
|
p.draft_revision.add_type_de_champ(
|
||||||
type_champ: :drop_down_list,
|
type_champ: :drop_down_list,
|
||||||
libelle: 'Spécialité',
|
libelle: 'Spécialité',
|
||||||
options: { "drop_down_other" => "0", "drop_down_options" => ["", "littéraire", "scientifique"] }
|
options: { "drop_down_other" => "0", "drop_down_options" => ["", "littéraire", "scientifique", "artistique"] }
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
let(:administrateur) { create(:administrateur, procedures: [procedure]) }
|
let(:administrateur) { create(:administrateur, procedures: [procedure]) }
|
||||||
let(:scientifique_user) { create(:user, password: password) }
|
let(:scientifique_user) { create(:user, password: password) }
|
||||||
let(:litteraire_user) { create(:user, password: password) }
|
let(:litteraire_user) { create(:user, password: password) }
|
||||||
|
let(:artistique_user) { create(:user, password: password) }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
Flipper.enable(:routing_rules, procedure)
|
Flipper.enable(:routing_rules, procedure)
|
||||||
|
@ -35,14 +36,14 @@ describe 'The routing with rules', js: true do
|
||||||
click_on 'Créer les groupes'
|
click_on 'Créer les groupes'
|
||||||
|
|
||||||
expect(page).to have_text('Gestion des groupes')
|
expect(page).to have_text('Gestion des groupes')
|
||||||
expect(page).to have_text('2 groupes')
|
expect(page).to have_text('3 groupes')
|
||||||
expect(page).not_to have_text('À configurer')
|
expect(page).not_to have_text('À configurer')
|
||||||
|
|
||||||
click_on 'littéraire'
|
click_on 'littéraire'
|
||||||
expect(page).to have_select("targeted_champ", selected: "Spécialité")
|
expect(page).to have_select("targeted_champ", selected: "Spécialité")
|
||||||
expect(page).to have_select("value", selected: "littéraire")
|
expect(page).to have_select("value", selected: "littéraire")
|
||||||
|
|
||||||
click_on '2 groupes'
|
click_on '3 groupes'
|
||||||
click_on 'scientifique'
|
click_on 'scientifique'
|
||||||
|
|
||||||
expect(page).to have_select("targeted_champ", selected: "Spécialité")
|
expect(page).to have_select("targeted_champ", selected: "Spécialité")
|
||||||
|
@ -91,7 +92,7 @@ describe 'The routing with rules', js: true do
|
||||||
fill_in 'Nom du groupe', with: 'scientifique'
|
fill_in 'Nom du groupe', with: 'scientifique'
|
||||||
click_on 'Renommer'
|
click_on 'Renommer'
|
||||||
expect(page).to have_text('Le nom est à présent « scientifique ». ')
|
expect(page).to have_text('Le nom est à présent « scientifique ». ')
|
||||||
#
|
|
||||||
# add marie to scientifique groupe
|
# add marie to scientifique groupe
|
||||||
fill_in 'Emails', with: 'marie@inst.com'
|
fill_in 'Emails', with: 'marie@inst.com'
|
||||||
perform_enqueued_jobs { click_on 'Affecter' }
|
perform_enqueued_jobs { click_on 'Affecter' }
|
||||||
|
@ -103,7 +104,7 @@ describe 'The routing with rules', js: true do
|
||||||
fill_in 'Emails', with: 'superwoman@inst.com'
|
fill_in 'Emails', with: 'superwoman@inst.com'
|
||||||
perform_enqueued_jobs { click_on 'Affecter' }
|
perform_enqueued_jobs { click_on 'Affecter' }
|
||||||
expect(page).to have_text("L’instructeur superwoman@inst.com a été affecté")
|
expect(page).to have_text("L’instructeur superwoman@inst.com a été affecté")
|
||||||
#
|
|
||||||
# add routing rules
|
# add routing rules
|
||||||
within('.target') { select('Spécialité') }
|
within('.target') { select('Spécialité') }
|
||||||
within('.value') { select('scientifique') }
|
within('.value') { select('scientifique') }
|
||||||
|
@ -117,13 +118,21 @@ describe 'The routing with rules', js: true do
|
||||||
|
|
||||||
procedure.groupe_instructeurs.where(closed: false).each { |gi| wait_until { gi.reload.routing_rule.present? } }
|
procedure.groupe_instructeurs.where(closed: false).each { |gi| wait_until { gi.reload.routing_rule.present? } }
|
||||||
|
|
||||||
|
# add a group without routing rules
|
||||||
|
click_on 'Ajout de groupes'
|
||||||
|
fill_in 'Nouveau groupe', with: 'artistique'
|
||||||
|
click_on 'Ajouter'
|
||||||
|
expect(page).to have_text('Le groupe d’instructeurs « artistique » a été créé. ')
|
||||||
|
expect(procedure.groupe_instructeurs.count).to eq(4)
|
||||||
|
|
||||||
# publish
|
# publish
|
||||||
publish_procedure(procedure)
|
publish_procedure(procedure)
|
||||||
log_out
|
log_out
|
||||||
|
|
||||||
# 2 users fill a dossier in each group
|
# 3 users fill a dossier in each group
|
||||||
user_send_dossier(scientifique_user, 'scientifique')
|
user_send_dossier(scientifique_user, 'scientifique')
|
||||||
user_send_dossier(litteraire_user, 'littéraire')
|
user_send_dossier(litteraire_user, 'littéraire')
|
||||||
|
user_send_dossier(artistique_user, 'artistique')
|
||||||
|
|
||||||
# the litteraires instructeurs only manage the litteraires dossiers
|
# the litteraires instructeurs only manage the litteraires dossiers
|
||||||
register_instructeur_and_log_in(victor.email)
|
register_instructeur_and_log_in(victor.email)
|
||||||
|
|
Loading…
Reference in a new issue