aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/test/cases/rescue_test.rb
blob: 3d4831bc62789c575c718e5fcf0f1a3c1447d378 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                  
 
                                               

                                           



                                                                                   
                       
                                           
                                             
       

     
require 'helper'
require 'jobs/rescue_job'

require 'active_support/core_ext/object/inclusion'

class RescueTest < ActiveSupport::TestCase
  setup do
    $BUFFER = []
  end

  test 'rescue perform exception with retry' do
    job = RescueJob.new
    job.execute(SecureRandom.uuid, "david")
    assert_equal [ "rescued from ArgumentError", "performed beautifully" ], $BUFFER
  end

  test 'let through unhandled perform exception' do
    job = RescueJob.new
    assert_raises(RescueJob::OtherError) do
      job.execute(SecureRandom.uuid, "other")
    end
  end
end