aboutsummaryrefslogblamecommitdiffstats
path: root/test/unit/inbound_email/incineration_test.rb
blob: 72378df05a06c79d5d5ec4e8b5b8984766b3bccf (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                    
                                                                             
                                               

               
                                                                                                   
                                                                 

       















                                                                                                   
   
require_relative '../../test_helper'

class ActionMailbox::InboundEmail::IncinerationTest < ActiveSupport::TestCase
  test "incinerating 30 days after delivery" do
    freeze_time

    assert_enqueued_with job: ActionMailbox::InboundEmail::IncinerationJob, at: 30.days.from_now do
      create_inbound_email_from_fixture("welcome.eml").delivered!
    end
  end

  test "incinerating 30 days after bounce" do
    freeze_time

    assert_enqueued_with job: ActionMailbox::InboundEmail::IncinerationJob, at: 30.days.from_now do
      create_inbound_email_from_fixture("welcome.eml").bounced!
    end
  end

  test "incinerating 30 days after failure" do
    freeze_time

    assert_enqueued_with job: ActionMailbox::InboundEmail::IncinerationJob, at: 30.days.from_now do
      create_inbound_email_from_fixture("welcome.eml").failed!
    end
  end
end