86 lines
3.3 KiB
Ruby
86 lines
3.3 KiB
Ruby
require "rails_helper"
|
||
|
||
RSpec.describe DossierMailer, type: :mailer do
|
||
let(:to_email) { 'instructeur@exemple.gouv.fr' }
|
||
|
||
shared_examples 'a dossier notification' do
|
||
it 'is sent from a no-reply address' do
|
||
expect(subject.from.first).to eq(Mail::Address.new(NO_REPLY_EMAIL).address)
|
||
end
|
||
|
||
it 'includes the contact informations in the footer' do
|
||
expect(subject.body).to include('ne pas répondre')
|
||
end
|
||
end
|
||
|
||
describe '.notify_new_draft' do
|
||
let(:dossier) { create(:dossier, procedure: build(:simple_procedure)) }
|
||
|
||
subject { described_class.notify_new_draft(dossier) }
|
||
|
||
it { expect(subject.subject).to include("brouillon") }
|
||
it { expect(subject.subject).to include(dossier.procedure.libelle) }
|
||
it { expect(subject.body).to include(dossier.procedure.libelle) }
|
||
it { expect(subject.body).to include(dossier_url(dossier)) }
|
||
|
||
it_behaves_like 'a dossier notification'
|
||
end
|
||
|
||
describe '.notify_new_answer' do
|
||
let(:dossier) { create(:dossier, procedure: build(:simple_procedure)) }
|
||
|
||
subject { described_class.notify_new_answer(dossier) }
|
||
|
||
it { expect(subject.subject).to include("Nouveau message") }
|
||
it { expect(subject.subject).to include(dossier.id.to_s) }
|
||
it { expect(subject.body).to include(messagerie_dossier_url(dossier)) }
|
||
|
||
it_behaves_like 'a dossier notification'
|
||
end
|
||
|
||
describe '.notify_deletion_to_user' do
|
||
let(:deleted_dossier) { build(:deleted_dossier) }
|
||
|
||
subject { described_class.notify_deletion_to_user(deleted_dossier, to_email) }
|
||
|
||
it { expect(subject.subject).to eq("Votre dossier nº #{deleted_dossier.dossier_id} a bien été supprimé") }
|
||
it { expect(subject.body).to include("Votre dossier") }
|
||
it { expect(subject.body).to include(deleted_dossier.dossier_id) }
|
||
it { expect(subject.body).to include("a bien été supprimé") }
|
||
it { expect(subject.body).to include(deleted_dossier.procedure.libelle) }
|
||
end
|
||
|
||
describe '.notify_deletion_to_administration' do
|
||
let(:deleted_dossier) { build(:deleted_dossier) }
|
||
|
||
subject { described_class.notify_deletion_to_administration(deleted_dossier, to_email) }
|
||
|
||
it { expect(subject.subject).to eq("Le dossier nº #{deleted_dossier.dossier_id} a été supprimé à la demande de l'usager") }
|
||
it { expect(subject.body).to include("À la demande de l'usager") }
|
||
it { expect(subject.body).to include(deleted_dossier.dossier_id) }
|
||
it { expect(subject.body).to include(deleted_dossier.procedure.libelle) }
|
||
end
|
||
|
||
describe '.notify_unhide_to_user' do
|
||
let(:dossier) { create(:dossier) }
|
||
|
||
subject { described_class.notify_unhide_to_user(dossier) }
|
||
|
||
it { expect(subject.subject).to eq("Votre dossier nº #{dossier.id} n'a pas pu être supprimé") }
|
||
it { expect(subject.body).to include(dossier.id) }
|
||
it { expect(subject.body).to include("n'a pas pu être supprimé") }
|
||
it { expect(subject.body).to include(dossier.procedure.libelle) }
|
||
end
|
||
|
||
describe '.notify_revert_to_instruction' do
|
||
let(:dossier) { create(:dossier, procedure: build(:simple_procedure)) }
|
||
|
||
subject { described_class.notify_revert_to_instruction(dossier) }
|
||
|
||
it { expect(subject.subject).to include('réexaminé') }
|
||
it { expect(subject.body).to include(dossier.procedure.libelle) }
|
||
it { expect(subject.body).to include(dossier_url(dossier)) }
|
||
|
||
it_behaves_like 'a dossier notification'
|
||
end
|
||
end
|