2016-12-15 17:59:01 +01:00
|
|
|
|
require "spec_helper"
|
2015-12-15 11:02:07 +01:00
|
|
|
|
|
|
|
|
|
RSpec.describe NotificationMailer, type: :mailer do
|
2017-03-05 20:20:29 +01:00
|
|
|
|
describe '.send_notification' do
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
let(:dossier) { create(:dossier, user: user) }
|
|
|
|
|
let(:email) { instance_double('email', object_for_dossier: 'object', body_for_dossier: 'body') }
|
2017-05-11 18:07:37 +02:00
|
|
|
|
let (:notifications_count_before) { Notification.count }
|
2017-03-05 20:20:29 +01:00
|
|
|
|
subject { described_class.send_notification(dossier, email) }
|
|
|
|
|
|
|
|
|
|
it { expect(subject.subject).to eq(email.object_for_dossier) }
|
|
|
|
|
it { expect(subject.body).to eq(email.body_for_dossier) }
|
2017-05-11 18:07:37 +02:00
|
|
|
|
|
|
|
|
|
it "creates a commentaire, which is not notified" do
|
|
|
|
|
described_class.send_notification(dossier, email).deliver_now
|
|
|
|
|
|
|
|
|
|
commentaire = Commentaire.last
|
|
|
|
|
notifications_count_after = Notification.count
|
|
|
|
|
|
|
|
|
|
expect(commentaire.dossier).to eq(dossier)
|
|
|
|
|
expect(commentaire.email).to eq("contact@tps.apientreprise.fr")
|
|
|
|
|
expect(commentaire.body).to eq("[object]<br><br>body")
|
|
|
|
|
expect(notifications_count_before).to eq(notifications_count_after)
|
|
|
|
|
end
|
2017-03-05 20:20:29 +01:00
|
|
|
|
end
|
|
|
|
|
|
2015-12-15 11:02:07 +01:00
|
|
|
|
describe ".new_answer" do
|
|
|
|
|
let(:user) { create(:user) }
|
2016-02-04 14:08:35 +01:00
|
|
|
|
let(:dossier) { create(:dossier, user: user) }
|
2015-12-15 11:02:07 +01:00
|
|
|
|
|
|
|
|
|
subject(:subject) { described_class.new_answer(dossier) }
|
|
|
|
|
|
2017-01-03 11:36:08 +01:00
|
|
|
|
it { expect(subject.body).to match('Un nouveau message est disponible dans votre espace TPS.') }
|
2015-12-15 15:33:21 +01:00
|
|
|
|
it { expect(subject.body).to include("Pour le consulter, merci de vous rendre sur #{users_dossier_recapitulatif_url(dossier_id: dossier.id)}") }
|
2017-04-06 18:16:11 +02:00
|
|
|
|
it { expect(subject.subject).to eq("Nouveau message pour votre dossier TPS nº #{dossier.id}") }
|
2015-12-15 11:02:07 +01:00
|
|
|
|
end
|
|
|
|
|
end
|