gitlab-org--gitlab-foss/spec/workers/email_receiver_worker_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-08-20 18:47:09 +00:00
require "spec_helper"
RSpec.describe EmailReceiverWorker, :mailer do
2015-08-20 19:34:45 +00:00
let(:raw_message) { fixture_file('emails/valid_reply.eml') }
2015-08-20 18:47:09 +00:00
context "when reply by email is enabled" do
before do
allow(Gitlab::IncomingEmail).to receive(:enabled?).and_return(true)
2015-08-20 18:47:09 +00:00
end
it "calls the email receiver" do
expect(Gitlab::Email::Receiver).to receive(:new).with(raw_message).and_call_original
expect_any_instance_of(Gitlab::Email::Receiver).to receive(:execute)
expect(Sidekiq.logger).to receive(:info).with(hash_including(message: "Successfully processed message")).and_call_original
2015-08-20 18:47:09 +00:00
described_class.new.perform(raw_message)
end
context "when an error occurs" do
before do
allow_any_instance_of(Gitlab::Email::Receiver).to receive(:execute).and_raise(error)
2015-08-20 18:47:09 +00:00
end
context 'when error is a processing error' do
let(:error) { Gitlab::Email::EmptyEmailError.new }
it 'triggers email failure handler' do
expect(Gitlab::Email::FailureHandler).to receive(:handle) do |receiver, received_error|
expect(receiver).to be_a(Gitlab::Email::Receiver)
expect(receiver.mail.encoded).to eql(Mail::Message.new(raw_message).encoded)
expect(received_error).to be(error)
end
2015-11-30 14:12:31 +00:00
described_class.new.perform(raw_message)
end
it 'logs the error' do
expect(Sidekiq.logger).to receive(:error).with(hash_including('exception.class' => error.class.name)).and_call_original
described_class.new.perform(raw_message)
end
end
context 'when error is not a processing error' do
let(:error) { ActiveRecord::StatementTimeout.new("Statement timeout") }
it 'triggers email failure handler' do
expect(Gitlab::Email::FailureHandler).to receive(:handle) do |receiver, received_error|
expect(receiver).to be_a(Gitlab::Email::Receiver)
expect(receiver.mail.encoded).to eql(Mail::Message.new(raw_message).encoded)
expect(received_error).to be(error)
end
described_class.new.perform(raw_message)
end
it 'reports the error' do
expect(Gitlab::ErrorTracking).to receive(:track_exception).with(error).and_call_original
described_class.new.perform(raw_message)
end
end
2015-08-20 18:47:09 +00:00
end
end
context "when reply by email is disabled" do
before do
allow(Gitlab::IncomingEmail).to receive(:enabled?).and_return(false)
2015-08-20 18:47:09 +00:00
end
it "doesn't call the email receiver" do
expect(Gitlab::Email::Receiver).not_to receive(:new)
described_class.new.perform(raw_message)
end
end
end