discourse/spec/jobs/invite_email_spec.rb
Jarek Radosz 694b5f108b
DEV: Fix various rubocop lints (#24749)
These (21 + 3 from previous PRs) are soon to be enabled in rubocop-discourse:

Capybara/VisibilityMatcher
Lint/DeprecatedOpenSSLConstant
Lint/DisjunctiveAssignmentInConstructor
Lint/EmptyConditionalBody
Lint/EmptyEnsure
Lint/LiteralInInterpolation
Lint/NonLocalExitFromIterator
Lint/ParenthesesAsGroupedExpression
Lint/RedundantCopDisableDirective
Lint/RedundantRequireStatement
Lint/RedundantSafeNavigation
Lint/RedundantStringCoercion
Lint/RedundantWithIndex
Lint/RedundantWithObject
Lint/SafeNavigationChain
Lint/SafeNavigationConsistency
Lint/SelfAssignment
Lint/UnreachableCode
Lint/UselessMethodDefinition
Lint/Void

Previous PRs:
Lint/ShadowedArgument
Lint/DuplicateMethods
Lint/BooleanSymbol
RSpec/SpecFilePathSuffix
2023-12-06 23:25:00 +01:00

36 lines
1.1 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Jobs::InviteEmail do
describe ".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)
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