2019-10-18 09:38:50 +02:00
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
2019-11-14 15:12:25 +01:00
|
|
|
|
feature 'The routing', js: true do
|
2019-10-24 15:53:59 +02:00
|
|
|
|
let(:password) { 'a very complicated password' }
|
|
|
|
|
let(:procedure) { create(:procedure, :with_type_de_champ, :with_service, :for_individual) }
|
2019-10-18 09:38:50 +02:00
|
|
|
|
let(:administrateur) { create(:administrateur, procedures: [procedure]) }
|
2019-10-24 15:53:59 +02:00
|
|
|
|
let(:scientifique_user) { create(:user, password: password) }
|
|
|
|
|
let(:litteraire_user) { create(:user, password: password) }
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
2019-11-14 15:12:25 +01:00
|
|
|
|
before do
|
|
|
|
|
procedure.defaut_groupe_instructeur.instructeurs << administrateur.instructeur
|
|
|
|
|
Flipper.enable_actor(:administrateur_routage, administrateur.user)
|
|
|
|
|
end
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
scenario 'works' do
|
|
|
|
|
login_as administrateur.user, scope: :user
|
|
|
|
|
|
|
|
|
|
visit admin_procedure_path(procedure.id)
|
|
|
|
|
click_on "Groupe d'instructeurs"
|
|
|
|
|
|
|
|
|
|
# rename routing criteria to spécialité
|
2019-11-21 18:29:11 +01:00
|
|
|
|
fill_in 'Libellé du routage', with: 'spécialité'
|
2019-10-18 09:38:50 +02:00
|
|
|
|
click_on 'Renommer'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text('Le libellé est maintenant « spécialité ».')
|
|
|
|
|
expect(page).to have_field('Libellé du routage', with: 'spécialité')
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
# rename defaut groupe to littéraire
|
|
|
|
|
click_on 'voir'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
fill_in 'Nom du groupe', with: 'littéraire'
|
2019-10-18 09:38:50 +02:00
|
|
|
|
click_on 'Renommer'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text('Le nom est à présent « littéraire ».')
|
|
|
|
|
expect(page).to have_field('Nom du groupe', with: 'littéraire')
|
2019-11-14 15:12:25 +01:00
|
|
|
|
|
2019-10-18 09:38:50 +02:00
|
|
|
|
# add victor to littéraire groupe
|
2019-11-21 18:29:11 +01:00
|
|
|
|
find('input.select2-search__field').send_keys('victor@inst.com', :enter)
|
2019-10-18 09:38:50 +02:00
|
|
|
|
perform_enqueued_jobs { click_on 'Affecter' }
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text("L’instructeur victor@inst.com a été affecté")
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
2019-11-21 18:29:11 +01:00
|
|
|
|
victor = User.find_by(email: 'victor@inst.com').instructeur
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
# add scientifique groupe
|
2019-11-21 18:29:11 +01:00
|
|
|
|
click_on 'Groupes d’instructeurs'
|
|
|
|
|
fill_in 'Ajouter un groupe', with: 'scientifique'
|
2019-10-18 09:38:50 +02:00
|
|
|
|
click_on 'Ajouter le groupe'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text('Le groupe d’instructeurs « scientifique » a été créé.')
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
# add marie to scientifique groupe
|
2019-11-21 18:29:11 +01:00
|
|
|
|
find('input.select2-search__field').send_keys('marie@inst.com', :enter)
|
2019-10-18 09:38:50 +02:00
|
|
|
|
perform_enqueued_jobs { click_on 'Affecter' }
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text("L’instructeur marie@inst.com a été affecté")
|
|
|
|
|
|
2019-10-18 09:38:50 +02:00
|
|
|
|
marie = User.find_by(email: 'marie@inst.com').instructeur
|
|
|
|
|
|
|
|
|
|
# publish
|
|
|
|
|
publish_procedure(procedure)
|
2019-11-14 15:12:25 +01:00
|
|
|
|
log_out(old_layout: true)
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
# 2 users fill a dossier in each group
|
|
|
|
|
user_send_dossier(scientifique_user, 'scientifique')
|
|
|
|
|
user_send_dossier(litteraire_user, 'littéraire')
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
click_on 'Rechercher'
|
|
|
|
|
expect(page).to have_text('0 dossier trouvé')
|
|
|
|
|
|
|
|
|
|
fill_in 'q', with: litteraire_user.email
|
|
|
|
|
click_on 'Rechercher'
|
|
|
|
|
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))
|
|
|
|
|
|
2019-10-24 15:53:59 +02:00
|
|
|
|
# follow the dossier
|
|
|
|
|
click_on 'Suivre le dossier'
|
|
|
|
|
|
2019-10-18 09:38:50 +02:00
|
|
|
|
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)
|
2019-10-24 15:53:59 +02:00
|
|
|
|
|
|
|
|
|
# follow the dossier
|
|
|
|
|
click_on scientifique_user.email
|
|
|
|
|
click_on 'Suivre le dossier'
|
|
|
|
|
|
|
|
|
|
log_out
|
|
|
|
|
|
|
|
|
|
# litteraire_user change its dossier
|
2019-11-21 18:29:11 +01:00
|
|
|
|
visit new_user_session_path
|
2019-10-24 15:53:59 +02:00
|
|
|
|
sign_in_with litteraire_user.email, password
|
|
|
|
|
|
2019-11-21 18:29:11 +01:00
|
|
|
|
click_on litteraire_user.dossiers.first.id.to_s
|
2019-10-24 15:53:59 +02:00
|
|
|
|
click_on 'Modifier mon dossier'
|
|
|
|
|
|
|
|
|
|
fill_in 'dossier_champs_attributes_0_value', with: 'some value'
|
|
|
|
|
click_on 'Enregistrer les modifications du dossier'
|
|
|
|
|
log_out
|
|
|
|
|
|
|
|
|
|
# the litteraires instructeurs should have a notification
|
2019-11-21 18:29:11 +01:00
|
|
|
|
visit new_user_session_path
|
2019-10-24 15:53:59 +02:00
|
|
|
|
sign_in_with victor.user.email, password
|
|
|
|
|
|
|
|
|
|
## on the procedures list
|
2019-11-21 18:29:39 +01:00
|
|
|
|
expect(page).to have_current_path(instructeur_procedures_path)
|
|
|
|
|
expect(find('.procedure-stats')).to have_css('span.notifications')
|
2019-10-24 15:53:59 +02:00
|
|
|
|
|
|
|
|
|
## on the dossiers list
|
|
|
|
|
click_on procedure.libelle
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_current_path(instructeur_procedure_path(procedure))
|
2019-11-21 18:29:39 +01:00
|
|
|
|
expect(find('.tabs')).to have_css('span.notifications')
|
2019-10-24 15:53:59 +02:00
|
|
|
|
|
2019-11-21 18:29:11 +01:00
|
|
|
|
## on the dossier itself
|
2019-10-24 15:53:59 +02:00
|
|
|
|
click_on 'suivi'
|
|
|
|
|
click_on litteraire_user.email
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_current_path(instructeur_dossier_path(procedure, litteraire_user.dossiers.first))
|
2019-11-21 18:29:39 +01:00
|
|
|
|
expect(page).to have_text('Annotations privées') # ensure Turbolinks DID load the DOM content
|
|
|
|
|
expect(find('.tabs')).to have_css('span.notifications')
|
2019-10-18 09:38:50 +02:00
|
|
|
|
log_out
|
|
|
|
|
|
2019-10-24 15:53:59 +02:00
|
|
|
|
# the scientifiques instructeurs should not have a notification
|
2019-11-21 18:29:11 +01:00
|
|
|
|
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')
|
2019-10-24 15:53:59 +02:00
|
|
|
|
log_out
|
2019-10-18 09:38:50 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def publish_procedure(procedure)
|
|
|
|
|
click_on procedure.libelle
|
|
|
|
|
find('#publish-procedure').click
|
|
|
|
|
within '#publish-modal' do
|
|
|
|
|
fill_in 'lien_site_web', with: 'http://some.website'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
click_on 'Publier'
|
2019-10-18 09:38:50 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
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'
|
|
|
|
|
|
|
|
|
|
fill_in 'individual_nom', with: 'Nom'
|
|
|
|
|
fill_in 'individual_prenom', with: 'Prenom'
|
|
|
|
|
click_button('Continuer')
|
|
|
|
|
|
|
|
|
|
select(groupe, from: 'dossier_groupe_instructeur_id')
|
|
|
|
|
|
|
|
|
|
click_on 'Déposer le dossier'
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text('Merci')
|
2019-10-18 09:38:50 +02:00
|
|
|
|
|
|
|
|
|
log_out
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def register_instructeur_and_log_in(email)
|
|
|
|
|
confirmation_email = emails_sent_to(email)
|
|
|
|
|
.filter { |m| m.subject == 'Activez votre compte instructeur' }
|
|
|
|
|
.first
|
|
|
|
|
token_params = confirmation_email.body.match(/token=[^"]+/)
|
|
|
|
|
|
|
|
|
|
visit "users/activate?#{token_params}"
|
2019-10-24 15:53:59 +02:00
|
|
|
|
fill_in :user_password, with: password
|
2019-10-18 09:38:50 +02:00
|
|
|
|
click_button 'Définir le mot de passe'
|
|
|
|
|
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_text('Mot de passe enregistré')
|
2019-10-18 09:38:50 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-11-14 15:12:25 +01:00
|
|
|
|
def log_out(old_layout: false)
|
|
|
|
|
if old_layout
|
|
|
|
|
click_on 'Se déconnecter'
|
|
|
|
|
else
|
2019-11-21 18:29:11 +01:00
|
|
|
|
click_button(title: 'Mon compte')
|
|
|
|
|
click_on 'Se déconnecter'
|
2019-11-14 15:12:25 +01:00
|
|
|
|
end
|
2019-11-21 18:29:11 +01:00
|
|
|
|
expect(page).to have_current_path(root_path)
|
2019-10-18 09:38:50 +02:00
|
|
|
|
end
|
|
|
|
|
end
|