2018-12-14 05:06:12 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-24 15:16:22 -05:00
|
|
|
require_relative "../test_helper"
|
2021-01-04 09:28:09 -05:00
|
|
|
require "minitest/mock"
|
2018-09-25 19:26:53 -04:00
|
|
|
|
2018-09-28 15:19:43 -04:00
|
|
|
module ActionMailbox
|
2018-09-25 19:26:53 -04:00
|
|
|
class InboundEmailTest < ActiveSupport::TestCase
|
2018-09-28 14:12:51 -04:00
|
|
|
test "mail provides the parsed source" do
|
|
|
|
assert_equal "Discussion: Let's debate these attachments", create_inbound_email_from_fixture("welcome.eml").mail.subject
|
|
|
|
end
|
|
|
|
|
|
|
|
test "source returns the contents of the raw email" do
|
|
|
|
assert_equal file_fixture("welcome.eml").read, create_inbound_email_from_fixture("welcome.eml").source
|
2018-09-25 19:26:53 -04:00
|
|
|
end
|
2019-01-17 12:13:40 -05:00
|
|
|
|
|
|
|
test "email with message id is processed only once when received multiple times" do
|
|
|
|
mail = Mail.from_source(file_fixture("welcome.eml").read)
|
|
|
|
assert mail.message_id
|
|
|
|
|
|
|
|
inbound_email_1 = create_inbound_email_from_source(mail.to_s)
|
|
|
|
assert inbound_email_1
|
|
|
|
|
|
|
|
inbound_email_2 = create_inbound_email_from_source(mail.to_s)
|
|
|
|
assert_nil inbound_email_2
|
|
|
|
end
|
|
|
|
|
|
|
|
test "email with missing message id is processed only once when received multiple times" do
|
|
|
|
mail = Mail.from_source("Date: Fri, 28 Sep 2018 11:08:55 -0700\r\nTo: a@example.com\r\nMime-Version: 1.0\r\nContent-Type: text/plain\r\nContent-Transfer-Encoding: 7bit\r\n\r\nHello!")
|
|
|
|
assert_nil mail.message_id
|
|
|
|
|
|
|
|
inbound_email_1 = create_inbound_email_from_source(mail.to_s)
|
|
|
|
assert inbound_email_1
|
|
|
|
|
|
|
|
inbound_email_2 = create_inbound_email_from_source(mail.to_s)
|
|
|
|
assert_nil inbound_email_2
|
|
|
|
end
|
2021-01-04 09:28:09 -05:00
|
|
|
|
|
|
|
test "error on upload doesn't leave behind a pending inbound email" do
|
|
|
|
ActiveStorage::Blob.service.stub(:upload, -> { raise "Boom!" }) do
|
|
|
|
assert_no_difference -> { ActionMailbox::InboundEmail.count } do
|
|
|
|
assert_raises do
|
|
|
|
create_inbound_email_from_fixture "welcome.eml"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-09-25 19:26:53 -04:00
|
|
|
end
|
|
|
|
end
|