mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 11:55:24 +08:00
eb9155f3fe
DEV: deprecate `invite.via_email` in favor of `invite.emailed_status` This commit adds a new column `emailed_status` in `invites` table for tracking email sending status. 0 - not required 1 - pending 2 - bulk pending 3 - sending 4 - sent For normal email invites, invite record is created with emailed_status set to 'pending'. When bulk invites are sent invite record is created with emailed_status set to 'bulk pending'. For invites that generates link, invite record is created with emailed_status set to 'not required'. When invite email is in queue emailed_status is updated to 'sending' Once the email is sent via `InviteEmail` job the invite emailed_status is updated to 'sent'.
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require_dependency 'jobs/base'
|
|
|
|
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, nil).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
|