2016-08-06 12:41:18 -04:00
|
|
|
require "helper"
|
|
|
|
require "jobs/rescue_job"
|
|
|
|
require "models/person"
|
2014-05-22 14:35:02 -04:00
|
|
|
|
|
|
|
class RescueTest < ActiveSupport::TestCase
|
|
|
|
setup do
|
2014-08-17 09:23:24 -04:00
|
|
|
JobBuffer.clear
|
2014-05-22 14:35:02 -04:00
|
|
|
end
|
2014-05-30 19:19:30 -04:00
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "rescue perform exception with retry" do
|
2014-08-25 10:34:50 -04:00
|
|
|
job = RescueJob.new("david")
|
|
|
|
job.perform_now
|
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
|
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
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
|
2014-05-22 14:35:02 -04:00
|
|
|
end
|
2014-08-17 16:48:44 -04:00
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "rescue from deserialization errors" do
|
2014-08-25 10:34:50 -04:00
|
|
|
RescueJob.perform_later Person.new(404)
|
2016-08-06 12:41:18 -04:00
|
|
|
assert_includes JobBuffer.values, "rescued from DeserializationError"
|
|
|
|
assert_includes JobBuffer.values, "DeserializationError original exception was Person::RecordNotFound"
|
|
|
|
assert_not_includes JobBuffer.values, "performed beautifully"
|
2014-08-17 16:48:44 -04:00
|
|
|
end
|
2014-09-03 03:38:02 -04:00
|
|
|
|
|
|
|
test "should not wrap DeserializationError in DeserializationError" do
|
2014-08-25 10:34:50 -04:00
|
|
|
RescueJob.perform_later [Person.new(404)]
|
2016-08-06 12:41:18 -04:00
|
|
|
assert_includes JobBuffer.values, "DeserializationError original exception was Person::RecordNotFound"
|
2014-09-03 03:38:02 -04:00
|
|
|
end
|
2014-05-22 14:35:02 -04:00
|
|
|
end
|