diff --git a/app/components/procedure/notice_component/notice_component.html.haml b/app/components/procedure/notice_component/notice_component.html.haml index 9733133c1..fae679267 100644 --- a/app/components/procedure/notice_component/notice_component.html.haml +++ b/app/components/procedure/notice_component/notice_component.html.haml @@ -1,4 +1,4 @@ - if link? = link_to url, t(".name"), class: "fr-download__link", title: new_tab_suffix(t(".name")), **external_link_attributes - elsif attachment? - = render Dsfr::DownloadComponent.new(attachment:, name: t(".name"), ephemeral_link: administrateur_signed_in?) + = render Dsfr::DownloadComponent.new(attachment:, name: t(".name"), ephemeral_link: helpers.administrateur_signed_in?) diff --git a/spec/views/shared/_procedure_description.html.haml_spec.rb b/spec/views/shared/_procedure_description.html.haml_spec.rb index 4973c8d58..6f063f889 100644 --- a/spec/views/shared/_procedure_description.html.haml_spec.rb +++ b/spec/views/shared/_procedure_description.html.haml_spec.rb @@ -34,6 +34,18 @@ describe 'shared/_procedure_description', type: :view do end end + 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 + 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