2018-04-13 16:56:00 +02:00
|
|
|
|
describe NewAdministrateur::ProceduresController, type: :controller do
|
|
|
|
|
let(:admin) { create(:administrateur) }
|
2019-09-24 16:38:58 +02:00
|
|
|
|
let(:bad_procedure_id) { 100000 }
|
|
|
|
|
|
|
|
|
|
let(:path) { 'ma-jolie-demarche' }
|
|
|
|
|
let(:libelle) { 'Démarche de test' }
|
|
|
|
|
let(:description) { 'Description de test' }
|
|
|
|
|
let(:organisation) { 'Organisation de test' }
|
|
|
|
|
let(:direction) { 'Direction de test' }
|
|
|
|
|
let(:cadre_juridique) { 'cadre juridique' }
|
|
|
|
|
let(:duree_conservation_dossiers_dans_ds) { 3 }
|
|
|
|
|
let(:duree_conservation_dossiers_hors_ds) { 6 }
|
|
|
|
|
let(:monavis_embed) { nil }
|
|
|
|
|
let(:lien_site_web) { 'http://mon-site.gouv.fr' }
|
2018-04-13 16:56:00 +02:00
|
|
|
|
|
|
|
|
|
describe '#apercu' do
|
|
|
|
|
let(:procedure) { create(:procedure) }
|
|
|
|
|
|
|
|
|
|
before do
|
2019-08-09 10:46:39 +02:00
|
|
|
|
sign_in(admin.user)
|
2018-04-13 16:56:00 +02:00
|
|
|
|
get :apercu, params: { id: procedure.id }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(response).to have_http_status(:ok) }
|
|
|
|
|
end
|
2019-09-24 16:38:58 +02:00
|
|
|
|
|
|
|
|
|
let(:procedure_params) {
|
|
|
|
|
{
|
|
|
|
|
path: path,
|
|
|
|
|
libelle: libelle,
|
|
|
|
|
description: description,
|
|
|
|
|
organisation: organisation,
|
|
|
|
|
direction: direction,
|
|
|
|
|
cadre_juridique: cadre_juridique,
|
|
|
|
|
duree_conservation_dossiers_dans_ds: duree_conservation_dossiers_dans_ds,
|
|
|
|
|
duree_conservation_dossiers_hors_ds: duree_conservation_dossiers_hors_ds,
|
|
|
|
|
monavis_embed: monavis_embed,
|
|
|
|
|
lien_site_web: lien_site_web
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
sign_in(admin.user)
|
|
|
|
|
end
|
|
|
|
|
|
2020-07-28 15:15:56 +02:00
|
|
|
|
describe 'GET #index' do
|
|
|
|
|
subject { get :index }
|
|
|
|
|
|
|
|
|
|
it { expect(response.status).to eq(200) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'GET #index with sorting and pagination' do
|
|
|
|
|
before do
|
|
|
|
|
create(:procedure, administrateur: admin)
|
|
|
|
|
admin.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject {
|
|
|
|
|
get :index, params: {
|
|
|
|
|
'statut': 'publiees'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it { expect(subject.status).to eq(200) }
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-24 16:38:58 +02:00
|
|
|
|
describe 'GET #edit' do
|
|
|
|
|
let(:published_at) { nil }
|
|
|
|
|
let(:procedure) { create(:procedure, administrateur: admin, published_at: published_at) }
|
|
|
|
|
let(:procedure_id) { procedure.id }
|
|
|
|
|
|
|
|
|
|
subject { get :edit, params: { id: procedure_id } }
|
|
|
|
|
|
|
|
|
|
context 'when user is not connected' do
|
|
|
|
|
before do
|
|
|
|
|
sign_out(admin.user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when user is connected' do
|
|
|
|
|
context 'when procedure exist' do
|
|
|
|
|
let(:procedure_id) { procedure.id }
|
|
|
|
|
it { is_expected.to have_http_status(:success) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is published' do
|
|
|
|
|
let(:published_at) { Time.zone.now }
|
|
|
|
|
it { is_expected.to have_http_status(:success) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure doesn’t exist' do
|
|
|
|
|
let(:procedure_id) { bad_procedure_id }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(404) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
|
context 'when all attributs are filled' do
|
|
|
|
|
describe 'new procedure in database' do
|
|
|
|
|
subject { post :create, params: { procedure: procedure_params } }
|
|
|
|
|
|
|
|
|
|
it { expect { subject }.to change { Procedure.count }.by(1) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is correctly save' do
|
|
|
|
|
before do
|
|
|
|
|
post :create, params: { procedure: procedure_params }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'procedure attributs in database' do
|
|
|
|
|
subject { Procedure.last }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.libelle).to eq(libelle) }
|
|
|
|
|
it { expect(subject.description).to eq(description) }
|
|
|
|
|
it { expect(subject.organisation).to eq(organisation) }
|
|
|
|
|
it { expect(subject.direction).to eq(direction) }
|
|
|
|
|
it { expect(subject.administrateurs).to eq([admin]) }
|
|
|
|
|
it { expect(subject.duree_conservation_dossiers_dans_ds).to eq(duree_conservation_dossiers_dans_ds) }
|
|
|
|
|
it { expect(subject.duree_conservation_dossiers_hors_ds).to eq(duree_conservation_dossiers_hors_ds) }
|
|
|
|
|
end
|
|
|
|
|
|
2020-07-07 12:03:32 +02:00
|
|
|
|
it { is_expected.to redirect_to(champs_admin_procedure_path(Procedure.last)) }
|
2019-09-24 16:38:58 +02:00
|
|
|
|
it { expect(flash[:notice]).to be_present }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is correctly saved' do
|
|
|
|
|
let(:instructeur) { admin.instructeur }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
post :create, params: { procedure: procedure_params }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "admin can also instruct the procedure as a instructeur" do
|
|
|
|
|
subject { Procedure.last }
|
|
|
|
|
it { expect(subject.defaut_groupe_instructeur.instructeurs).to include(instructeur) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when many attributs are not valid' do
|
|
|
|
|
let(:libelle) { '' }
|
|
|
|
|
let(:description) { '' }
|
|
|
|
|
|
|
|
|
|
describe 'no new procedure in database' do
|
|
|
|
|
subject { post :create, params: { procedure: procedure_params } }
|
|
|
|
|
|
|
|
|
|
it { expect { subject }.to change { Procedure.count }.by(0) }
|
|
|
|
|
|
|
|
|
|
describe 'no new module api carto in database' do
|
|
|
|
|
it { expect { subject }.to change { ModuleAPICarto.count }.by(0) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'flash message is present' do
|
|
|
|
|
before do
|
|
|
|
|
post :create, params: { procedure: procedure_params }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'PUT #update' do
|
|
|
|
|
let!(:procedure) { create(:procedure, :with_type_de_champ, administrateur: admin) }
|
|
|
|
|
|
|
|
|
|
context 'when administrateur is not connected' do
|
|
|
|
|
before do
|
|
|
|
|
sign_out(admin.user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject { put :update, params: { id: procedure.id } }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when administrateur is connected' do
|
|
|
|
|
def update_procedure
|
|
|
|
|
put :update, params: { id: procedure.id, procedure: procedure_params }
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when all attributs are present' do
|
|
|
|
|
let(:libelle) { 'Blable' }
|
|
|
|
|
let(:description) { 'blabla' }
|
|
|
|
|
let(:organisation) { 'plop' }
|
|
|
|
|
let(:direction) { 'plap' }
|
|
|
|
|
let(:duree_conservation_dossiers_dans_ds) { 7 }
|
|
|
|
|
let(:duree_conservation_dossiers_hors_ds) { 5 }
|
|
|
|
|
|
|
|
|
|
before { update_procedure }
|
|
|
|
|
|
|
|
|
|
describe 'procedure attributs in database' do
|
|
|
|
|
subject { procedure }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.libelle).to eq(libelle) }
|
|
|
|
|
it { expect(subject.description).to eq(description) }
|
|
|
|
|
it { expect(subject.organisation).to eq(organisation) }
|
|
|
|
|
it { expect(subject.direction).to eq(direction) }
|
|
|
|
|
it { expect(subject.duree_conservation_dossiers_dans_ds).to eq(duree_conservation_dossiers_dans_ds) }
|
|
|
|
|
it { expect(subject.duree_conservation_dossiers_hors_ds).to eq(duree_conservation_dossiers_hors_ds) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to(edit_admin_procedure_path id: procedure.id) }
|
|
|
|
|
it { expect(flash[:notice]).to be_present }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when many attributs are not valid' do
|
|
|
|
|
before { update_procedure }
|
|
|
|
|
let(:libelle) { '' }
|
|
|
|
|
let(:description) { '' }
|
|
|
|
|
|
|
|
|
|
describe 'flash message is present' do
|
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is brouillon' do
|
|
|
|
|
let(:procedure) { create(:procedure_with_dossiers, :with_path, :with_type_de_champ, administrateur: admin) }
|
|
|
|
|
let!(:dossiers_count) { procedure.dossiers.count }
|
|
|
|
|
|
|
|
|
|
describe 'dossiers are dropped' do
|
|
|
|
|
subject { update_procedure }
|
|
|
|
|
|
|
|
|
|
it {
|
|
|
|
|
expect(dossiers_count).to eq(1)
|
|
|
|
|
expect(subject.dossiers.count).to eq(0)
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is published' do
|
|
|
|
|
let(:procedure) { create(:procedure, :with_type_de_champ, :published, administrateur: admin) }
|
|
|
|
|
|
|
|
|
|
subject { update_procedure }
|
|
|
|
|
|
|
|
|
|
describe 'only some properties can be updated' do
|
|
|
|
|
it { expect(subject.libelle).to eq procedure_params[:libelle] }
|
|
|
|
|
it { expect(subject.description).to eq procedure_params[:description] }
|
|
|
|
|
it { expect(subject.organisation).to eq procedure_params[:organisation] }
|
|
|
|
|
it { expect(subject.direction).to eq procedure_params[:direction] }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.for_individual).not_to eq procedure_params[:for_individual] }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'PATCH #monavis' do
|
|
|
|
|
let!(:procedure) { create(:procedure, administrateur: admin) }
|
|
|
|
|
let(:procedure_params) {
|
|
|
|
|
{
|
|
|
|
|
monavis_embed: monavis_embed
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context 'when administrateur is not connected' do
|
|
|
|
|
before do
|
|
|
|
|
sign_out(admin.user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject { patch :update_monavis, params: { id: procedure.id } }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to redirect_to new_user_session_path }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when administrateur is connected' do
|
|
|
|
|
def update_monavis
|
|
|
|
|
patch :update_monavis, params: { id: procedure.id, procedure: procedure_params }
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
let(:monavis_embed) {
|
|
|
|
|
<<-MSG
|
|
|
|
|
<a href="https://monavis.numerique.gouv.fr/Demarches/123?&view-mode=formulaire-avis&nd_mode=en-ligne-enti%C3%A8rement&nd_source=button&key=cd4a872d475e4045666057f">
|
|
|
|
|
<img src="https://monavis.numerique.gouv.fr/monavis-static/bouton-blanc.png" alt="Je donne mon avis" title="Je donne mon avis sur cette démarche" />
|
|
|
|
|
</a>
|
|
|
|
|
MSG
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context 'when all attributes are present' do
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
|
|
before { update_monavis }
|
|
|
|
|
|
|
|
|
|
context 'when the embed code is valid' do
|
|
|
|
|
describe 'the monavis field is updated' do
|
|
|
|
|
subject { procedure }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.monavis_embed).to eq(monavis_embed) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(flash[:notice]).to be_present }
|
|
|
|
|
it { expect(response.body).to include "MonAvis" }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the embed code is not valid' do
|
|
|
|
|
let(:monavis_embed) { 'invalid embed code' }
|
|
|
|
|
|
|
|
|
|
describe 'the monavis field is not updated' do
|
|
|
|
|
subject { procedure }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.monavis_embed).to eq(nil) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
|
it { expect(response.body).to include "MonAvis" }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when procedure is published' do
|
|
|
|
|
let(:procedure) { create(:procedure, :published, administrateur: admin) }
|
|
|
|
|
|
|
|
|
|
subject { update_monavis }
|
|
|
|
|
|
|
|
|
|
describe 'the monavis field is not updated' do
|
|
|
|
|
it { expect(subject.monavis_embed).to eq monavis_embed }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-04-27 14:58:12 +02:00
|
|
|
|
|
|
|
|
|
describe 'GET #jeton' do
|
|
|
|
|
let(:procedure) { create(:procedure, administrateur: admin) }
|
|
|
|
|
|
|
|
|
|
subject { get :jeton, params: { id: procedure.id } }
|
|
|
|
|
|
|
|
|
|
it { is_expected.to have_http_status(:success) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'PATCH #jeton' do
|
|
|
|
|
let(:procedure) { create(:procedure, administrateur: admin) }
|
2020-10-19 11:33:36 +02:00
|
|
|
|
let(:token) { "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" }
|
2020-04-27 14:58:12 +02:00
|
|
|
|
|
2020-10-19 11:33:36 +02:00
|
|
|
|
subject { patch :update_jeton, params: { id: procedure.id, procedure: { api_entreprise_token: token } } }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
allow_any_instance_of(ApiEntreprise::PrivilegesAdapter).to receive(:valid?).and_return(token_is_valid)
|
|
|
|
|
subject
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when jeton is valid' do
|
|
|
|
|
let(:token_is_valid) { true }
|
|
|
|
|
|
|
|
|
|
it { expect(flash.alert).to be_nil }
|
|
|
|
|
it { expect(flash.notice).to eq('Le jeton a bien été mis à jour') }
|
|
|
|
|
it { expect(procedure.reload.api_entreprise_token).to eq(token) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when jeton is invalid' do
|
|
|
|
|
let(:token_is_valid) { false }
|
|
|
|
|
|
|
|
|
|
it { expect(flash.alert).to eq("Mise à jour impossible : le jeton n'est pas valide") }
|
|
|
|
|
it { expect(flash.notice).to be_nil }
|
|
|
|
|
it { expect(procedure.reload.api_entreprise_token).not_to eq(token) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when jeton is not a jwt' do
|
|
|
|
|
let(:token) { "invalid" }
|
|
|
|
|
let(:token_is_valid) { true } # just to check jwt format by procedure model
|
|
|
|
|
|
|
|
|
|
it { expect(flash.alert).to eq("Mise à jour impossible : le jeton n'est pas valide") }
|
|
|
|
|
it { expect(flash.notice).to be_nil }
|
|
|
|
|
it { expect(procedure.reload.api_entreprise_token).not_to eq(token) }
|
2020-04-27 14:58:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2020-09-08 12:35:44 +02:00
|
|
|
|
|
|
|
|
|
describe 'PUT #publish' do
|
|
|
|
|
let(:procedure) { create(:procedure, administrateur: admin, lien_site_web: lien_site_web) }
|
|
|
|
|
let(:procedure2) { create(:procedure, :published, administrateur: admin, lien_site_web: lien_site_web) }
|
|
|
|
|
let(:procedure3) { create(:procedure, :published, lien_site_web: lien_site_web) }
|
|
|
|
|
let(:lien_site_web) { 'http://some.administration/' }
|
|
|
|
|
|
|
|
|
|
context 'when admin is the owner of the procedure' do
|
|
|
|
|
context 'procedure path does not exist' do
|
|
|
|
|
let(:path) { 'new_path' }
|
|
|
|
|
let(:lien_site_web) { 'http://mon-site.gouv.fr' }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
put :publish, params: { procedure_id: procedure.id, path: path, lien_site_web: lien_site_web }
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'publish the given procedure' do
|
|
|
|
|
expect(procedure.publiee?).to be_truthy
|
|
|
|
|
expect(procedure.path).to eq(path)
|
|
|
|
|
expect(procedure.lien_site_web).to eq(lien_site_web)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'redirects to the procedure page' do
|
|
|
|
|
expect(response.status).to eq 302
|
|
|
|
|
expect(response.body).to include(admin_procedure_path(procedure.id))
|
|
|
|
|
expect(flash[:notice]).to have_content 'Démarche publiée'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'procedure path exists and is owned by current administrator' do
|
|
|
|
|
before do
|
|
|
|
|
put :publish, params: { procedure_id: procedure.id, path: path, lien_site_web: lien_site_web }
|
|
|
|
|
procedure.reload
|
|
|
|
|
procedure2.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:path) { procedure2.path }
|
|
|
|
|
let(:lien_site_web) { 'http://mon-site.gouv.fr' }
|
|
|
|
|
|
|
|
|
|
it 'publish the given procedure' do
|
|
|
|
|
expect(procedure.publiee?).to be_truthy
|
|
|
|
|
expect(procedure.path).to eq(path)
|
|
|
|
|
expect(procedure.lien_site_web).to eq(lien_site_web)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'depubliee previous procedure' do
|
|
|
|
|
expect(procedure2.depubliee?).to be_truthy
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'redirects to the procedures page' do
|
|
|
|
|
expect(response.status).to eq 302
|
|
|
|
|
expect(response.body).to include(admin_procedure_path(procedure.id))
|
|
|
|
|
expect(flash[:notice]).to have_content 'Démarche publiée'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'procedure path exists and is not owned by current administrator' do
|
|
|
|
|
let(:path) { procedure3.path }
|
|
|
|
|
let(:lien_site_web) { 'http://mon-site.gouv.fr' }
|
|
|
|
|
it { expect { put :publish, params: { procedure_id: procedure.id, path: path, lien_site_web: lien_site_web } }.to raise_error(ActiveRecord::RecordInvalid) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'procedure path is invalid' do
|
|
|
|
|
let(:lien_site_web) { 'http://mon-site.gouv.fr' }
|
|
|
|
|
let(:path) { 'Invalid Procedure Path' }
|
|
|
|
|
it { expect { put :publish, params: { procedure_id: procedure.id, path: path, lien_site_web: lien_site_web } }.to raise_error(ActiveRecord::RecordInvalid) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when admin is not the owner of the procedure' do
|
|
|
|
|
let(:admin_2) { create(:administrateur) }
|
|
|
|
|
before do
|
|
|
|
|
sign_out(admin.user)
|
|
|
|
|
sign_in(admin_2.user)
|
|
|
|
|
|
|
|
|
|
put :publish, params: { procedure_id: procedure.id, path: 'fake_path' }
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'fails' do
|
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the admin does not provide a lien_site_web' do
|
|
|
|
|
context 'procedure path is valid but lien_site_web is missing' do
|
|
|
|
|
let(:path) { 'new_path2' }
|
|
|
|
|
let(:lien_site_web) { nil }
|
|
|
|
|
it { expect { put :publish, params: { procedure_id: procedure.id, path: path, lien_site_web: lien_site_web } }.to raise_error(ActiveRecord::RecordInvalid) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'POST #transfer' do
|
|
|
|
|
let!(:procedure) { create :procedure, :with_service, administrateur: admin }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
post :transfer, params: { email_admin: email_admin, procedure_id: procedure.id }
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
subject do
|
|
|
|
|
post :transfer, params: { email_admin: email_admin, procedure_id: procedure.id }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when admin is unknow' do
|
|
|
|
|
let(:email_admin) { 'plop' }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.status).to eq 302 }
|
2020-09-29 10:52:13 +02:00
|
|
|
|
it { expect(response.body).to include(admin_procedure_transfert_path(procedure.id)) }
|
2020-09-08 12:35:44 +02:00
|
|
|
|
it { expect(flash[:alert]).to be_present }
|
|
|
|
|
it { expect(flash[:alert]).to eq("Envoi vers #{email_admin} impossible : cet administrateur n'existe pas") }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when admin is known' do
|
|
|
|
|
let!(:new_admin) { create :administrateur, email: 'new_admin@admin.com' }
|
|
|
|
|
|
|
|
|
|
context "and its email address is correct" do
|
|
|
|
|
let(:email_admin) { 'new_admin@admin.com' }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.status).to eq 302 }
|
|
|
|
|
it { expect { subject }.to change(new_admin.procedures, :count).by(1) }
|
|
|
|
|
|
|
|
|
|
it "should create a new service" do
|
|
|
|
|
subject
|
|
|
|
|
expect(new_admin.procedures.last.service_id).not_to eq(procedure.service_id)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when admin is know but its email was not downcased' do
|
|
|
|
|
let(:email_admin) { "NEW_admin@adMIN.com" }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.status).to eq 302 }
|
|
|
|
|
it { expect { subject }.to change(Procedure, :count).by(1) }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "correctly assigns the new admin" do
|
|
|
|
|
let(:email_admin) { 'new_admin@admin.com' }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
subject
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(Procedure.last.administrateurs).to eq [new_admin] }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-09-30 18:22:06 +02:00
|
|
|
|
|
|
|
|
|
describe 'PUT #allow_expert_review' do
|
|
|
|
|
let!(:procedure) { create :procedure, :with_service, administrateur: admin }
|
|
|
|
|
|
|
|
|
|
context 'when admin refuse to invite experts on this procedure' do
|
|
|
|
|
before do
|
|
|
|
|
procedure.update!(allow_expert_review: false)
|
|
|
|
|
procedure.reload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it { expect(procedure.allow_expert_review).to be_falsy }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when admin accept to invite experts on this procedure (true by default)' do
|
|
|
|
|
it { expect(procedure.allow_expert_review).to be_truthy }
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-04-13 16:56:00 +02:00
|
|
|
|
end
|