RSpec.describe NotificationMailer, type: :mailer do let(:administrateur) { create(:administrateur) } let(:user) { create(:user) } let(:procedure) { create(:simple_procedure, :with_service) } describe 'send_notification_for_tiers' do let(:dossier_for_tiers) { create(:dossier, :en_construction, :for_tiers_with_notification, procedure: create(:simple_procedure)) } subject { described_class.send_notification_for_tiers(dossier_for_tiers) } it 'verifies email subject, recipient, and body content for updated dossier by mandataire' do expect(subject.subject).to include("Votre dossier rempli par le mandataire #{dossier_for_tiers.mandataire_first_name} #{dossier_for_tiers.mandataire_last_name} a été mis à jour") expect(subject.to).to eq([dossier_for_tiers.individual.email]) expect(subject.body).to include("a été déposé le") expect(subject.body).to include("Pour en savoir plus, veuillez vous rapprocher de\r\n#{dossier_for_tiers.user.email}.") end end describe 'send_notification_for_tiers for repasser_en_instruction' do let(:dossier_for_tiers) { create(:dossier, :accepte, :for_tiers_with_notification, procedure: create(:simple_procedure)) } subject { described_class.send_notification_for_tiers(dossier_for_tiers, repasser_en_instruction: true) } it 'verifies email subject, recipient, and body content for dossier re-examination notification' do expect(subject.subject).to include("Votre dossier rempli par le mandataire #{dossier_for_tiers.mandataire_first_name} #{dossier_for_tiers.mandataire_last_name} a été mis à jour") expect(subject.to).to eq([dossier_for_tiers.individual.email]) expect(subject.body).to include("va être réexaminé, la précédente décision sur ce dossier est caduque.") expect(subject.body).to include("Pour en savoir plus, veuillez vous rapprocher de\r\n#{dossier_for_tiers.user.email}.") end end describe 'send_notification_for_tiers with accuse lecture procedure' do let(:dossier_for_tiers) { create(:dossier, :accepte, :for_tiers_with_notification, procedure: create(:procedure, :accuse_lecture, :for_individual)) } subject { described_class.send_notification_for_tiers(dossier_for_tiers) } it { expect(subject.subject).to include("Votre dossier rempli par le mandataire #{dossier_for_tiers.mandataire_first_name} #{dossier_for_tiers.mandataire_last_name} a été mis à jour") } it { expect(subject.to).to eq([dossier_for_tiers.individual.email]) } it { expect(subject.body).to include("a été traité le") } it { expect(subject.body).to include("Pour en savoir plus, veuillez vous rapprocher de\r\n#{dossier_for_tiers.user.email}.") } end describe 'send_accuse_lecture_notification' do let(:dossier) { create(:dossier, :accepte, procedure: create(:procedure, :accuse_lecture)) } subject { described_class.send_accuse_lecture_notification(dossier) } it { expect(subject.subject).to include("La décision a été rendue pour votre démarche #{dossier.procedure.libelle}") } it { expect(subject.body).to include("Pour en connaitre la nature, veuillez vous connecter à votre compte\r\ndemarches-simplifiees.fr") } end describe 'send_en_construction_notification' do let(:dossier) { create(:dossier, :en_construction, :with_individual, user: user, procedure:) } subject(:mail) { described_class.send_en_construction_notification(dossier) } let(:body) { (mail.html_part || mail).body } context "without custom template" do it 'renders default template' do expect(mail.subject).to eq("Votre dossier nº #{dossier.id} a bien été déposé (#{procedure.libelle})") expect(body).to include("Votre dossier nº #{dossier.id}") expect(body).to include(procedure.service.nom) expect(mail.attachments.first.filename).to eq("attestation-de-depot.pdf") end end context "with a custom template" do let(:email_template) { create(:initiated_mail, subject: 'Email subject', body: 'Your dossier was received. Thanks.', procedure:) } before do dossier.procedure.initiated_mail = email_template end it 'renders the template' do expect(mail.subject).to eq('Email subject') expect(body).to include('Your dossier was received') expect(mail.attachments.first.filename).to eq("attestation-de-depot.pdf") end end end describe 'send_en_instruction_notification' do let(:dossier) { create(:dossier, :en_instruction, :with_individual, :with_service, user: user, procedure:) } let(:email_template) { create(:received_mail, subject: 'Email subject', body: 'Your dossier was processed. Thanks.', procedure:) } before do dossier.procedure.received_mail = email_template end subject(:mail) { described_class.send_en_instruction_notification(dossier) } it 'renders the template with subject and body' do expect(mail.subject).to eq('Email subject') expect(mail.body).to include('Your dossier was processed') expect(mail.body).to have_link('messagerie') end it 'renders the actions with links to dossier and messagerie' do expect(mail.body).to have_link('Consulter mon dossier', href: dossier_url(dossier, host: ENV.fetch("APP_HOST_LEGACY"))) expect(mail.body).to have_link('J’ai une question', href: messagerie_dossier_url(dossier, host: ENV.fetch("APP_HOST_LEGACY"))) end context 'when the template body contains tags' do let(:email_template) { create(:received_mail, subject: 'Email subject', body: 'Hello --nom--, your dossier --lien dossier-- was processed.', procedure:) } it 'replaces value tags with the proper value and renders links correctly' do expect(mail.body).to include(dossier.individual.nom) expect(mail.body).to have_link(href: dossier_url(dossier, host: ENV.fetch("APP_HOST_LEGACY"))) end context "when user has preferred domain" do let(:user) { create(:user, preferred_domain: :demarches_gouv_fr) } it 'adjusts links and sender email for user preferred domain' do expect(mail.body).to have_link(href: dossier_url(dossier, host: ENV.fetch("APP_HOST"))) expect(header_value("From", mail)).to include("@demarches.gouv.fr") end end end context 'when the template body contains HTML' do let(:email_template) { create(:received_mail, body: 'Your dossier was processed. ', procedure:) } it 'allows basic formatting tags but sanitizes sensitive content' do expect(mail.body).to include('dossier') expect(mail.body).not_to include('iframe') end end it 'sends the mail from a no-reply address' do expect(subject.from.first).to eq(Mail::Address.new(NO_REPLY_EMAIL).address) end end describe 'subject length' do let(:procedure) { create(:simple_procedure, libelle: "My super long title " + ("xo " * 100)) } let(:dossier) { create(:dossier, :accepte, :with_individual, :with_service, user: user, procedure:) } let(:email_template) { create(:closed_mail, subject:, body: 'Your dossier was accepted. Thanks.', procedure:) } before do dossier.procedure.closed_mail = email_template end subject(:mail) { described_class.send_accepte_notification(dossier) } context "when the subject is too long" do let(:subject) { 'Un long libellé --libellé démarche--' } it { expect(mail.subject.length).to be <= 100 } end context "when the subject should fallback to default" do let(:subject) { "" } it 'provides a default subject within the length limit including procedure title beginning' do expect(mail.subject).to match(/^Votre dossier .+ a été accepté \(My super long title/) expect(mail.subject.length).to be <= 100 end end end describe 'subject with apostrophe' do let(:procedure) { create(:simple_procedure, libelle: "Mon titre avec l'apostrophe") } let(:dossier) { create(:dossier, :en_instruction, :with_individual, :with_service, user: user, procedure:) } let(:email_template) { create(:received_mail, subject:, body: 'Your dossier was accepted. Thanks.', procedure:) } before do dossier.procedure.received_mail = email_template end subject(:mail) { described_class.send_en_instruction_notification(dossier) } context "when the subject has a special character that should not be escaped" do let(:subject) { '--libellé démarche--' } it 'includes the apostrophe without escaping it' do expect(mail.subject).to eq("Mon titre avec l'apostrophe") end end end end