2019-10-24 21:52:05 +02:00
|
|
|
describe Instructeurs::GroupeInstructeursController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:instructeur) { create(:instructeur) }
|
|
|
|
let(:procedure) { create(:procedure, :published) }
|
|
|
|
let!(:gi_1_1) { procedure.defaut_groupe_instructeur }
|
|
|
|
let!(:gi_1_2) { procedure.groupe_instructeurs.create(label: 'groupe instructeur 2') }
|
|
|
|
|
|
|
|
let(:procedure2) { create(:procedure, :published) }
|
|
|
|
let!(:gi_2_2) { procedure2.groupe_instructeurs.create(label: 'groupe instructeur 2 2') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
gi_1_2.instructeurs << instructeur
|
|
|
|
sign_in(instructeur.user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#index' do
|
|
|
|
context 'of a procedure I own' do
|
|
|
|
before do
|
|
|
|
get :index, params: { procedure_id: procedure.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a procedure has multiple groups' do
|
|
|
|
it { expect(response).to have_http_status(:ok) }
|
|
|
|
it { expect(response.body).to include(gi_1_2.label) }
|
|
|
|
it { expect(response.body).not_to include(gi_1_1.label) }
|
|
|
|
it { expect(response.body).not_to include(gi_2_2.label) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-10-24 22:17:55 +02:00
|
|
|
|
|
|
|
describe '#show' do
|
|
|
|
context 'of a group I belong to' do
|
|
|
|
before { get :show, params: { procedure_id: procedure.id, id: gi_1_2.id } }
|
|
|
|
|
|
|
|
it { expect(response).to have_http_status(:ok) }
|
|
|
|
end
|
|
|
|
end
|
2019-10-25 09:26:31 +02:00
|
|
|
|
|
|
|
describe '#add_instructeur' do
|
|
|
|
before do
|
|
|
|
post :add_instructeur,
|
|
|
|
params: {
|
|
|
|
procedure_id: procedure.id,
|
|
|
|
id: gi_1_2.id,
|
|
|
|
instructeur: { email: new_instructeur_email }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'of a new instructeur' do
|
|
|
|
let(:new_instructeur_email) { 'new_instructeur@mail.com' }
|
|
|
|
|
2019-10-15 18:32:18 +02:00
|
|
|
it { expect(gi_1_2.instructeurs.map(&:email)).to include(new_instructeur_email) }
|
2019-10-25 09:26:31 +02:00
|
|
|
it { expect(flash.notice).to be_present }
|
|
|
|
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_2)) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'of an instructeur already in the group' do
|
|
|
|
let(:new_instructeur_email) { instructeur.email }
|
|
|
|
|
|
|
|
it { expect(flash.alert).to be_present }
|
|
|
|
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_2)) }
|
|
|
|
end
|
|
|
|
end
|
2019-10-25 10:17:39 +02:00
|
|
|
|
|
|
|
describe '#remove_instructeur' do
|
2021-10-26 22:40:48 +02:00
|
|
|
let(:new_instructeur) { create(:instructeur) }
|
|
|
|
let(:dossier) { create(:dossier) }
|
2019-10-25 10:17:39 +02:00
|
|
|
|
2021-10-26 22:40:48 +02:00
|
|
|
before do
|
|
|
|
gi_1_1.instructeurs << instructeur << new_instructeur
|
|
|
|
gi_1_1.dossiers << dossier
|
|
|
|
new_instructeur.followed_dossiers << dossier
|
|
|
|
end
|
2019-10-25 10:17:39 +02:00
|
|
|
|
|
|
|
def remove_instructeur(instructeur)
|
|
|
|
delete :remove_instructeur,
|
|
|
|
params: {
|
|
|
|
procedure_id: procedure.id,
|
|
|
|
id: gi_1_1.id,
|
|
|
|
instructeur: { id: instructeur.id }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there are many instructeurs' do
|
|
|
|
before { remove_instructeur(new_instructeur) }
|
|
|
|
|
|
|
|
it { expect(gi_1_1.instructeurs).to include(instructeur) }
|
|
|
|
it { expect(gi_1_1.reload.instructeurs.count).to eq(1) }
|
2021-10-26 22:40:48 +02:00
|
|
|
it { expect(new_instructeur.reload.follows.count).to eq(0) }
|
2019-10-25 10:17:39 +02:00
|
|
|
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_1)) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is only one instructeur' do
|
|
|
|
before do
|
|
|
|
remove_instructeur(new_instructeur)
|
|
|
|
remove_instructeur(instructeur)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(gi_1_1.instructeurs).to include(instructeur) }
|
|
|
|
it { expect(gi_1_1.instructeurs.count).to eq(1) }
|
|
|
|
it { expect(flash.alert).to eq('Suppression impossible : il doit y avoir au moins un instructeur dans le groupe') }
|
|
|
|
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_1)) }
|
|
|
|
end
|
|
|
|
end
|
2019-10-24 21:52:05 +02:00
|
|
|
end
|