1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activejob/test/cases/rescue_test.rb

31 lines
916 B
Ruby
Raw Normal View History

require 'helper'
require 'jobs/rescue_job'
require 'active_support/core_ext/object/inclusion'
class RescueTest < ActiveSupport::TestCase
setup do
2014-08-17 09:23:24 -04:00
JobBuffer.clear
end
2014-05-30 19:19:30 -04:00
test 'rescue perform exception with retry' do
2014-06-12 07:30:53 -04:00
job = RescueJob.new
job.execute(SecureRandom.uuid, "david")
2014-08-17 09:23:24 -04:00
assert_equal [ "rescued from ArgumentError", "performed beautifully" ], JobBuffer.values
2014-05-22 19:14:13 -04:00
end
test 'let through unhandled perform exception' do
2014-06-12 07:30:53 -04:00
job = RescueJob.new
2014-05-22 19:14:13 -04:00
assert_raises(RescueJob::OtherError) do
2014-06-12 07:30:53 -04:00
job.execute(SecureRandom.uuid, "other")
2014-05-22 19:14:13 -04:00
end
end
test 'rescue from deserialization errors' do
RescueJob.enqueue 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
end