Merge pull request #8102 from demarches-simplifiees/7709-libelle-special-characters

fix: escape characters when showing page title
This commit is contained in:
LeSim 2022-11-25 09:37:05 +01:00 committed by GitHub
commit 537e8381d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -7,7 +7,7 @@
= csrf_meta_tags = csrf_meta_tags
%title %title
= content_for?(:title) ? "#{yield(:title)} · #{APPLICATION_NAME}" : APPLICATION_NAME = content_for?(:title) ? "#{sanitize(yield(:title))} · #{APPLICATION_NAME}" : APPLICATION_NAME
= favicon_link_tag(image_url("#{FAVICON_16PX_SRC}"), type: "image/png", sizes: "16x16") = favicon_link_tag(image_url("#{FAVICON_16PX_SRC}"), type: "image/png", sizes: "16x16")
= favicon_link_tag(image_url("#{FAVICON_32PX_SRC}"), type: "image/png", sizes: "32x32") = favicon_link_tag(image_url("#{FAVICON_32PX_SRC}"), type: "image/png", sizes: "32x32")

View file

@ -9,7 +9,8 @@ describe 'Creating a new dossier:' do
end end
context 'when the procedure has identification by individual' do context 'when the procedure has identification by individual' do
let(:procedure) { create(:procedure, :published, :for_individual, :with_service, ask_birthday: ask_birthday) } let(:libelle) { "[title] with characters to escape : '@*^$" }
let(:procedure) { create(:procedure, :published, :for_individual, :with_service, ask_birthday: ask_birthday, libelle: libelle) }
let(:ask_birthday) { false } let(:ask_birthday) { false }
let(:expected_birthday) { nil } let(:expected_birthday) { nil }
@ -19,6 +20,7 @@ describe 'Creating a new dossier:' do
expect(page).to have_current_path identite_dossier_path(user.reload.dossiers.last) expect(page).to have_current_path identite_dossier_path(user.reload.dossiers.last)
expect(page).to have_procedure_description(procedure) expect(page).to have_procedure_description(procedure)
expect(page).to have_title(libelle)
choose 'Monsieur' choose 'Monsieur'
fill_in 'individual_nom', with: 'Nom' fill_in 'individual_nom', with: 'Nom'