mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe Jobs::InviteEmail do
|
|
|
|
context '.execute' do
|
|
|
|
it 'raises an error when the invite_id is missing' do
|
|
expect { Jobs::InviteEmail.new.execute({}) }.to raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
context 'with an invite id' do
|
|
|
|
let (:mailer) { Mail::Message.new(to: 'eviltrout@test.domain') }
|
|
fab!(:invite) { Fabricate(:invite) }
|
|
|
|
it 'delegates to the test mailer' do
|
|
Email::Sender.any_instance.expects(:send)
|
|
InviteMailer.expects(:send_invite).with(invite, anything).returns(mailer)
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
end
|
|
|
|
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
|
|
|
|
it "updates invite emailed_status" do
|
|
invite.emailed_status = Invite.emailed_status_types[:pending]
|
|
invite.save!
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
|
|
invite.reload
|
|
expect(invite.emailed_status).to eq(Invite.emailed_status_types[:sent])
|
|
end
|
|
end
|
|
end
|
|
end
|