1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailbox/test/unit/mailbox/routing_test.rb
Pratik Naik 5cd733a334 Ensure Action Mailbox processes an email only once when received multiple times
This also adds a new column, message_checksum, to the action_mailbox_inbound_emails table
for storing SHA1 digest of the email source. Additionally, it makes generating the missing
message id deterministic and adds a unique index on message_checksum and message_id to
detect duplicate emails.
2019-01-17 11:13:40 -06:00

31 lines
810 B
Ruby

# frozen_string_literal: true
require_relative "../../test_helper"
class ApplicationMailbox < ActionMailbox::Base
routing "replies@example.com" => :replies
end
class RepliesMailbox < ActionMailbox::Base
def process
$processed = mail.subject
end
end
class ActionMailbox::Base::RoutingTest < ActiveSupport::TestCase
setup do
$processed = false
end
test "string routing" do
ApplicationMailbox.route create_inbound_email_from_fixture("welcome.eml")
assert_equal "Discussion: Let's debate these attachments", $processed
end
test "delayed routing" do
perform_enqueued_jobs only: ActionMailbox::RoutingJob do
create_inbound_email_from_fixture "welcome.eml", status: :pending
assert_equal "Discussion: Let's debate these attachments", $processed
end
end
end