aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/cases/rescue_test.rb
blob: 1b6c2e9fac978941781be1eefdc99a52f96e0de2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'helper'
require 'jobs/rescue_job'
require 'models/person'

require 'active_support/core_ext/object/inclusion'

class RescueTest < ActiveSupport::TestCase
  setup do
    JobBuffer.clear
  end

  test 'rescue perform exception with retry' do
    job = RescueJob.new("david")
    job.perform_now
    assert_equal [ "rescued from ArgumentError", "performed beautifully" ], JobBuffer.values
  end

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

  test 'rescue from deserialization errors' do
    RescueJob.perform_later Person.new(404)
    assert_includes JobBuffer.values, 'rescued from DeserializationError'
    assert_includes JobBuffer.values, 'DeserializationError original exception was Person::RecordNotFound'
    assert_not_includes JobBuffer.values, 'performed beautifully'
  end

  test "should not wrap DeserializationError in DeserializationError" do
    RescueJob.perform_later [Person.new(404)]
    assert_includes JobBuffer.values, 'DeserializationError original exception was Person::RecordNotFound'
  end
end