demarches-normaliennes/spec/system/routing/rules_full_scenario_spec.rb

313 lines
10 KiB
Ruby
Raw Normal View History

2023-03-30 12:31:48 +02:00
describe 'The routing with rules', js: true do
let(:password) { 'a very complicated password' }
let(:procedure) do
create(:procedure, :with_service, :for_individual, :with_zone).tap do |p|
p.draft_revision.add_type_de_champ(
type_champ: :text,
libelle: 'un premier champ text'
)
p.draft_revision.add_type_de_champ(
type_champ: :drop_down_list,
libelle: 'Spécialité',
options: { "drop_down_other" => "0", "drop_down_options" => ["", "littéraire", "scientifique", "artistique"] }
2023-03-30 12:31:48 +02:00
)
end
end
let(:administrateur) { create(:administrateur, procedures: [procedure]) }
let(:scientifique_user) { create(:user, password: password) }
let(:litteraire_user) { create(:user, password: password) }
let(:artistique_user) { create(:user, password: password) }
2023-03-30 12:31:48 +02:00
before do
procedure.defaut_groupe_instructeur.instructeurs << administrateur.instructeur
end
2023-04-26 17:29:47 +02:00
scenario 'Routage à partir dun champ' do
steps_to_routing_configuration
choose('À partir dun champ', allow_label_click: true)
click_on 'Continuer'
expect(page).to have_text('Routage à partir dun champ')
choose('Spécialité', allow_label_click: true)
click_on 'Créer les groupes'
expect(page).to have_text('Gestion des groupes')
expect(page).to have_text('3 groupes')
2023-04-26 17:29:47 +02:00
expect(page).not_to have_text('À configurer')
click_on 'littéraire'
expect(page).to have_select("targeted_champ", selected: "Spécialité")
expect(page).to have_select("value", selected: "littéraire")
click_on '3 groupes'
2023-04-26 17:29:47 +02:00
click_on 'scientifique'
expect(page).to have_select("targeted_champ", selected: "Spécialité")
expect(page).to have_select("value", selected: "scientifique")
end
scenario 'Routage personnalisé' do
steps_to_routing_configuration
2023-03-30 12:31:48 +02:00
2023-04-26 17:29:47 +02:00
choose('Avancé', allow_label_click: true)
click_on 'Continuer'
expect(page).to have_text('Gestion des groupes')
# update defaut groupe
click_on 'défaut'
expect(page).to have_text('Paramètres du groupe')
2023-04-26 17:29:47 +02:00
fill_in 'Nom du groupe', with: 'littéraire'
click_on 'Renommer'
expect(page).to have_text('Le nom est à présent « littéraire ». ')
2023-03-30 12:31:48 +02:00
# add victor to littéraire groupe
fill_in 'Emails', with: 'victor@inst.com'
perform_enqueued_jobs { click_on 'Affecter' }
expect(page).to have_text("Linstructeur victor@inst.com a été affecté")
victor = User.find_by(email: 'victor@inst.com').instructeur
# add superwoman to littéraire groupe
fill_in 'Emails', with: 'superwoman@inst.com'
perform_enqueued_jobs { click_on 'Affecter' }
expect(page).to have_text("Linstructeur superwoman@inst.com a été affecté")
superwoman = User.find_by(email: 'superwoman@inst.com').instructeur
# add inactive groupe
2023-04-26 17:29:47 +02:00
click_on 'Ajout de groupes'
fill_in 'Nouveau groupe', with: 'non visible car inactif'
click_on 'Ajouter'
expect(page).to have_text('Le groupe dinstructeurs « non visible car inactif » a été créé. ')
check("Groupe inactif", allow_label_click: true)
# # add scientifique groupe
click_on '3 groupes'
click_on 'défaut bis'
fill_in 'Nom du groupe', with: 'scientifique'
click_on 'Renommer'
expect(page).to have_text('Le nom est à présent « scientifique ». ')
2023-03-30 12:31:48 +02:00
# add marie to scientifique groupe
fill_in 'Emails', with: 'marie@inst.com'
perform_enqueued_jobs { click_on 'Affecter' }
expect(page).to have_text("Linstructeur marie@inst.com a été affecté")
marie = User.find_by(email: 'marie@inst.com').instructeur
# add superwoman to scientifique groupe
fill_in 'Emails', with: 'superwoman@inst.com'
perform_enqueued_jobs { click_on 'Affecter' }
expect(page).to have_text("Linstructeur superwoman@inst.com a été affecté")
2023-03-30 12:31:48 +02:00
# add routing rules
2023-04-26 17:29:47 +02:00
within('.target') { select('Spécialité') }
within('.value') { select('scientifique') }
2023-03-30 12:31:48 +02:00
2023-04-26 17:29:47 +02:00
click_on '3 groupes'
2023-03-30 12:31:48 +02:00
2023-04-26 17:29:47 +02:00
click_on 'littéraire'
2023-03-30 12:31:48 +02:00
2023-04-26 17:29:47 +02:00
within('.target') { select('Spécialité') }
within('.value') { select('littéraire') }
2023-03-30 12:31:48 +02:00
2023-04-26 17:29:47 +02:00
procedure.groupe_instructeurs.where(closed: false).each { |gi| wait_until { gi.reload.routing_rule.present? } }
2023-03-30 12:31:48 +02:00
# 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 dinstructeurs « artistique » a été créé. ')
expect(procedure.groupe_instructeurs.count).to eq(4)
2023-03-30 12:31:48 +02:00
# publish
publish_procedure(procedure)
log_out
# 3 users fill a dossier in each group
2023-03-30 12:31:48 +02:00
user_send_dossier(scientifique_user, 'scientifique')
user_send_dossier(litteraire_user, 'littéraire')
user_send_dossier(artistique_user, 'artistique')
2023-03-30 12:31:48 +02:00
# the litteraires instructeurs only manage the litteraires dossiers
register_instructeur_and_log_in(victor.email)
click_on procedure.libelle
expect(page).to have_text(litteraire_user.email)
expect(page).not_to have_text(scientifique_user.email)
# the search only show litteraires dossiers
fill_in 'q', with: scientifique_user.email
find('.fr-search-bar .fr-btn').click
expect(page).to have_text('0 dossier trouvé')
# weird bug, capabary appends text instead of replaces it
# see https://github.com/redux-form/redux-form/issues/686
fill_in('q', with: litteraire_user.email, fill_options: { clear: :backspace })
find('.fr-search-bar .fr-btn').click
expect(page).to have_text('1 dossier trouvé')
## and the result is clickable
click_on litteraire_user.email
expect(page).to have_current_path(instructeur_dossier_path(procedure, litteraire_user.dossiers.first))
# follow the dossier
click_on 'Suivre le dossier'
log_out
# the scientifiques instructeurs only manage the scientifiques dossiers
register_instructeur_and_log_in(marie.email)
click_on procedure.libelle
expect(page).not_to have_text(litteraire_user.email)
expect(page).to have_text(scientifique_user.email)
# follow the dossier
click_on scientifique_user.email
click_on 'Suivre le dossier'
log_out
# litteraire_user change its dossier
visit new_user_session_path
sign_in_with litteraire_user.email, password
click_on litteraire_user.dossiers.first.id.to_s
click_on 'Modifier mon dossier'
fill_in litteraire_user.dossiers.first.champs_public.first.libelle, with: 'some value'
wait_for_autosave(false)
click_on 'Déposer les modifications'
2023-03-30 12:31:48 +02:00
log_out
# the litteraires instructeurs should have a notification
visit new_user_session_path
sign_in_with victor.user.email, password
## on the procedures list
expect(page).to have_current_path(instructeur_procedures_path)
expect(find('.procedure-stats')).to have_css('span.notifications')
## on the dossiers list
click_on procedure.libelle
expect(page).to have_current_path(instructeur_procedure_path(procedure))
expect(find('.tabs')).to have_css('span.notifications')
## on the dossier itself
click_on 'suivi'
click_on litteraire_user.email
expect(page).to have_current_path(instructeur_dossier_path(procedure, litteraire_user.dossiers.first))
expect(page).to have_text('Annotations privées')
expect(find('.tabs')).to have_css('span.notifications')
log_out
# the scientifiques instructeurs should not have a notification
visit new_user_session_path
sign_in_with marie.user.email, password
expect(page).to have_current_path(instructeur_procedures_path)
expect(find('.procedure-stats')).not_to have_css('span.notifications')
log_out
2023-04-26 17:29:47 +02:00
# the instructeurs who belong to scientifique AND litteraire groups manage scientifique and litteraire dossiers
2023-03-30 12:31:48 +02:00
register_instructeur_and_log_in(superwoman.email)
visit instructeur_procedure_path(procedure, params: { statut: 'tous' })
expect(page).to have_text(litteraire_user.email)
expect(page).to have_text(scientifique_user.email)
# follow the dossier
click_on scientifique_user.email
click_on 'Suivre le dossier'
visit instructeur_procedure_path(procedure, params: { statut: 'tous' })
click_on litteraire_user.email
click_on 'Suivre le dossier'
log_out
# scientifique_user updates its group
user_update_group(scientifique_user, 'littéraire')
# the instructeurs who belong to scientifique AND litteraire groups should have a notification
visit new_user_session_path
sign_in_with superwoman.user.email, password
expect(page).to have_current_path(instructeur_procedures_path)
expect(find('.procedure-stats')).to have_css('span.notifications')
end
def publish_procedure(procedure)
click_on procedure.libelle
find('#publish-procedure-link').click
fill_in 'lien_site_web', with: 'http://some.website'
click_on 'Publier'
expect(page).to have_text('Démarche publiée')
end
def user_send_dossier(user, groupe)
login_as user, scope: :user
visit commencer_path(path: procedure.reload.path)
click_on 'Commencer la démarche'
choose 'Monsieur'
fill_in 'individual_nom', with: 'Nom'
fill_in 'individual_prenom', with: 'Prenom'
click_button('Continuer')
# the old system should not be present
expect(page).not_to have_selector("#dossier_groupe_instructeur_id")
choose(groupe)
wait_for_autosave
click_on 'Déposer le dossier'
expect(page).to have_text('Merci')
log_out
end
def user_update_group(user, new_group)
login_as user, scope: :user
visit dossiers_path
click_on user.dossiers.first.id.to_s
click_on "Modifier mon dossier"
choose(new_group)
wait_for_autosave(false)
expect(page).to have_text(new_group)
click_on 'Déposer les modifications'
2023-03-30 12:31:48 +02:00
log_out
end
def register_instructeur_and_log_in(email)
confirmation_email = emails_sent_to(email)
.find { |m| m.subject == 'Activez votre compte instructeur' }
token_params = confirmation_email.body.match(/token=[^"]+/)
visit "users/activate?#{token_params}"
fill_in :user_password, with: password
click_button 'Définir le mot de passe'
expect(page).to have_text('Mot de passe enregistré')
end
2023-04-26 17:29:47 +02:00
def steps_to_routing_configuration
login_as administrateur.user, scope: :user
visit admin_procedure_path(procedure.id)
find('#groupe-instructeurs').click
click_on 'Options'
expect(page).to have_text('Options concernant linstruction')
click_on 'Configurer le routage'
expect(page).to have_text('Choix du type de routage')
end
2023-03-30 12:31:48 +02:00
end