2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe Jobs::InviteEmail do
|
|
|
|
|
|
|
|
context '.execute' do
|
|
|
|
|
|
|
|
it 'raises an error when the invite_id is missing' do
|
2014-12-31 09:55:03 -05:00
|
|
|
expect { Jobs::InviteEmail.new.execute({}) }.to raise_error(Discourse::InvalidParameters)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with an invite id' do
|
|
|
|
|
|
|
|
let (:mailer) { Mail::Message.new(to: 'eviltrout@test.domain') }
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:invite) { Fabricate(:invite) }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'delegates to the test mailer' do
|
2013-06-10 15:33:37 -04:00
|
|
|
Email::Sender.any_instance.expects(:send)
|
2021-03-16 11:08:54 -04:00
|
|
|
InviteMailer.expects(:send_invite).with(invite, anything).returns(mailer)
|
2013-02-05 14:16:51 -05:00
|
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
|
|
end
|
|
|
|
|
2018-08-29 06:02:47 -04:00
|
|
|
it "aborts without error when the invite doesn't exist anymore" do
|
|
|
|
invite.destroy
|
|
|
|
InviteMailer.expects(:send_invite).never
|
|
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2019-07-19 01:59:12 -04:00
|
|
|
it "updates invite emailed_status" do
|
|
|
|
invite.emailed_status = Invite.emailed_status_types[:pending]
|
|
|
|
invite.save!
|
|
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2019-07-19 01:59:12 -04:00
|
|
|
invite.reload
|
|
|
|
expect(invite.emailed_status).to eq(Invite.emailed_status_types[:sent])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|