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

42 lines
1.3 KiB
Ruby
Raw Normal View History

2017-07-09 13:49:52 -04:00
# frozen_string_literal: true
require "helper"
require "jobs/rescue_job"
require "models/person"
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-08-25 10:34:50 -04:00
job = RescueJob.new("david")
job.perform_now
assert_equal [ "rescued from ArgumentError", "performed beautifully", "Retried job DIFFERENT!" ], JobBuffer.values
2014-05-22 19:14:13 -04:00
end
test "let through unhandled perform exception" do
2014-08-25 10:34:50 -04:00
job = RescueJob.new("other")
2014-05-22 19:14:13 -04:00
assert_raises(RescueJob::OtherError) do
2014-08-25 10:34:50 -04:00
job.perform_now
2014-05-22 19:14:13 -04:00
end
end
test "rescue from deserialization errors" do
2014-08-25 10:34:50 -04:00
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
2014-08-25 10:34:50 -04:00
RescueJob.perform_later [Person.new(404)]
assert_includes JobBuffer.values, "DeserializationError original exception was Person::RecordNotFound"
end
test "rescue from exceptions that don't inherit from StandardError" do
RescueJob.perform_later("rafael")
assert_equal ["rescued from NotImplementedError"], JobBuffer.values
end
end