2023-03-06 15:51:08 +01:00
|
|
|
|
describe 'shared/_procedure_description', type: :view do
|
2023-01-31 18:52:47 +01:00
|
|
|
|
let(:estimated_duration_visible) { true }
|
|
|
|
|
let(:procedure) { create(:procedure, :published, :with_service, estimated_duration_visible:) }
|
2020-05-27 11:25:43 +02:00
|
|
|
|
|
|
|
|
|
subject { render partial: 'shared/procedure_description', locals: { procedure: procedure } }
|
|
|
|
|
|
|
|
|
|
it 'renders the view' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_selector('.procedure-logos')
|
|
|
|
|
expect(rendered).to have_text(procedure.libelle)
|
|
|
|
|
expect(rendered).to have_text(procedure.description)
|
2022-05-31 16:58:03 +02:00
|
|
|
|
expect(rendered).to have_text('Temps de remplissage estimé')
|
2023-06-01 14:54:58 +02:00
|
|
|
|
expect(rendered).not_to have_text('Quelles sont les pièces justificatives à fournir')
|
2023-06-06 10:38:46 +02:00
|
|
|
|
expect(rendered).not_to have_text('Qu’est-ce que le cadre législatif « silence vaut accord » ?')
|
2020-05-27 11:25:43 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-01-31 18:52:47 +01:00
|
|
|
|
context 'procedure with estimated duration not visible' do
|
|
|
|
|
let(:estimated_duration_visible) { false }
|
|
|
|
|
it 'hides the estimated duration' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).not_to have_text('Temps de remplissage estimé')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-05-27 11:25:43 +02:00
|
|
|
|
it 'does not show empty date limite' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).not_to have_text('Date limite')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the procedure has an auto_archive date' do
|
|
|
|
|
let(:procedure) { create(:procedure, :published, :with_service, :with_auto_archive) }
|
|
|
|
|
it 'shows the auto_archive_on' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('Date limite')
|
|
|
|
|
end
|
|
|
|
|
end
|
2023-06-01 14:54:58 +02:00
|
|
|
|
|
2023-07-06 13:23:32 +02:00
|
|
|
|
context 'when procedure has notice' do
|
|
|
|
|
let(:procedure) { create(:procedure, :published, :with_notice) }
|
|
|
|
|
before do
|
|
|
|
|
allow(view).to receive(:administrateur_signed_in?).and_return(false)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'shows a link to the notice' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_link("Télécharger le guide de la démarche")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-06-01 14:54:58 +02:00
|
|
|
|
context 'when the procedure has pieces jointes' do
|
|
|
|
|
let(:procedure) { create(:procedure, :draft, :with_titre_identite, :with_piece_justificative, :with_siret) }
|
|
|
|
|
it 'shows the pieces jointes list for draft procedure' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('Quelles sont les pièces justificatives à fournir')
|
|
|
|
|
expect(rendered).to have_text('Libelle du champ')
|
|
|
|
|
expect(rendered).to have_selector('.pieces_jointes ul li', count: 2)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'shows the pieces jointes list for published procedure' do
|
|
|
|
|
procedure.publish!
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('Quelles sont les pièces justificatives à fournir')
|
|
|
|
|
expect(rendered).to have_text('Libelle du champ')
|
|
|
|
|
expect(rendered).to have_selector('.pieces_jointes ul li', count: 2)
|
|
|
|
|
end
|
2023-06-22 09:50:38 +02:00
|
|
|
|
|
|
|
|
|
it 'shows the manual description pieces jointes list if admin filled one' do
|
|
|
|
|
procedure.update!(description_pj: 'une description des pj manuelle')
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('Quelles sont les pièces justificatives à fournir')
|
|
|
|
|
expect(rendered).to have_text('une description des pj manuelle')
|
|
|
|
|
end
|
2023-06-01 14:54:58 +02:00
|
|
|
|
end
|
2023-06-06 10:38:46 +02:00
|
|
|
|
|
|
|
|
|
context 'when the procedure is sva' do
|
2023-06-28 16:34:50 +02:00
|
|
|
|
before { travel_to DateTime.new(2023, 1, 1) }
|
2023-06-06 10:38:46 +02:00
|
|
|
|
let(:procedure) { create(:procedure, :published, :sva) }
|
2023-06-28 16:34:50 +02:00
|
|
|
|
|
2023-06-06 10:38:46 +02:00
|
|
|
|
it 'shows an explanation text' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('Cette démarche applique le « Silence Vaut Accord »')
|
2023-06-28 16:34:50 +02:00
|
|
|
|
expect(rendered).to have_text('dans les 2 mois')
|
|
|
|
|
expect(rendered).to have_text("2 mars 2023")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when unit is weeks' do
|
|
|
|
|
before {
|
|
|
|
|
procedure.sva_svr["unit"] = "weeks"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it 'shows an human period' do
|
|
|
|
|
subject
|
|
|
|
|
expect(rendered).to have_text('dans les 2 semaines')
|
|
|
|
|
expect(rendered).to have_text("16 janvier 2023")
|
|
|
|
|
end
|
2023-06-06 10:38:46 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2020-05-27 11:25:43 +02:00
|
|
|
|
end
|