aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/test/unit/mailbox/routing_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2019-01-17 11:13:40 -0600
committerPratik Naik <pratiknaik@gmail.com>2019-01-17 11:13:40 -0600
commit5cd733a334846669d6435517f7d9913c4a9b1eb1 (patch)
treeb79c74e9f818c53c8b2a800ef500d1334f3b574f /actionmailbox/test/unit/mailbox/routing_test.rb
parent2dee59fed1e78b983aed4db53dc8fc59e49b9200 (diff)
downloadrails-5cd733a334846669d6435517f7d9913c4a9b1eb1.tar.gz
rails-5cd733a334846669d6435517f7d9913c4a9b1eb1.tar.bz2
rails-5cd733a334846669d6435517f7d9913c4a9b1eb1.zip
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.
Diffstat (limited to 'actionmailbox/test/unit/mailbox/routing_test.rb')
-rw-r--r--actionmailbox/test/unit/mailbox/routing_test.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionmailbox/test/unit/mailbox/routing_test.rb b/actionmailbox/test/unit/mailbox/routing_test.rb
index d4dad7eafb..d4ba702ac5 100644
--- a/actionmailbox/test/unit/mailbox/routing_test.rb
+++ b/actionmailbox/test/unit/mailbox/routing_test.rb
@@ -15,11 +15,10 @@ end
class ActionMailbox::Base::RoutingTest < ActiveSupport::TestCase
setup do
$processed = false
- @inbound_email = create_inbound_email_from_fixture("welcome.eml")
end
test "string routing" do
- ApplicationMailbox.route @inbound_email
+ ApplicationMailbox.route create_inbound_email_from_fixture("welcome.eml")
assert_equal "Discussion: Let's debate these attachments", $processed
end