2009-05-03 00:02:22 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
|
2010-09-24 20:15:52 -04:00
|
|
|
class ShowExceptionsTest < ActionDispatch::IntegrationTest
|
2010-10-11 10:55:07 -04:00
|
|
|
|
2011-11-21 12:13:54 -05:00
|
|
|
class Boomer
|
|
|
|
def call(env)
|
|
|
|
req = ActionDispatch::Request.new(env)
|
|
|
|
case req.path
|
|
|
|
when "/not_found"
|
2012-01-14 15:25:11 -05:00
|
|
|
raise AbstractController::ActionNotFound
|
2013-03-21 14:23:46 -04:00
|
|
|
when "/bad_params"
|
|
|
|
raise ActionDispatch::ParamsParser::ParseError.new("", StandardError.new)
|
2011-11-21 12:13:54 -05:00
|
|
|
when "/method_not_allowed"
|
|
|
|
raise ActionController::MethodNotAllowed
|
2013-04-22 09:09:41 -04:00
|
|
|
when "/unknown_http_method"
|
|
|
|
raise ActionController::UnknownHttpMethod
|
2011-11-21 12:13:54 -05:00
|
|
|
when "/not_found_original_exception"
|
2012-01-20 11:13:29 -05:00
|
|
|
raise ActionView::Template::Error.new('template', AbstractController::ActionNotFound.new)
|
2011-11-21 12:13:54 -05:00
|
|
|
else
|
|
|
|
raise "puke!"
|
|
|
|
end
|
2009-05-03 00:02:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-16 03:29:37 -05:00
|
|
|
ProductionApp = ActionDispatch::ShowExceptions.new(Boomer.new, ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public"))
|
2009-05-03 00:02:22 -04:00
|
|
|
|
2011-12-16 03:45:14 -05:00
|
|
|
test "skip exceptions app if not showing exceptions" do
|
2011-12-01 15:15:42 -05:00
|
|
|
@app = ProductionApp
|
|
|
|
assert_raise RuntimeError do
|
|
|
|
get "/", {}, {'action_dispatch.show_exceptions' => false}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "rescue with error page" do
|
2009-09-26 21:51:05 -04:00
|
|
|
@app = ProductionApp
|
2009-05-03 00:02:22 -04:00
|
|
|
|
2010-01-19 10:05:34 -05:00
|
|
|
get "/", {}, {'action_dispatch.show_exceptions' => true}
|
2009-05-03 00:02:22 -04:00
|
|
|
assert_response 500
|
|
|
|
assert_equal "500 error fixture\n", body
|
2013-03-21 14:23:46 -04:00
|
|
|
|
|
|
|
get "/bad_params", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_response 400
|
|
|
|
assert_equal "400 error fixture\n", body
|
2009-05-03 00:02:22 -04:00
|
|
|
|
2010-01-19 10:05:34 -05:00
|
|
|
get "/not_found", {}, {'action_dispatch.show_exceptions' => true}
|
2009-05-03 00:02:22 -04:00
|
|
|
assert_response 404
|
|
|
|
assert_equal "404 error fixture\n", body
|
|
|
|
|
2010-01-19 10:05:34 -05:00
|
|
|
get "/method_not_allowed", {}, {'action_dispatch.show_exceptions' => true}
|
2009-05-03 00:02:22 -04:00
|
|
|
assert_response 405
|
|
|
|
assert_equal "", body
|
2013-04-22 09:09:41 -04:00
|
|
|
|
|
|
|
get "/unknown_http_method", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_response 405
|
|
|
|
assert_equal "", body
|
2009-05-03 00:02:22 -04:00
|
|
|
end
|
|
|
|
|
2011-11-22 03:24:05 -05:00
|
|
|
test "localize rescue error page" do
|
2009-09-19 14:22:09 -04:00
|
|
|
old_locale, I18n.locale = I18n.locale, :da
|
2009-05-03 00:02:22 -04:00
|
|
|
|
|
|
|
begin
|
2009-09-26 21:51:05 -04:00
|
|
|
@app = ProductionApp
|
2009-05-03 00:02:22 -04:00
|
|
|
|
2010-01-19 10:05:34 -05:00
|
|
|
get "/", {}, {'action_dispatch.show_exceptions' => true}
|
2009-05-03 00:02:22 -04:00
|
|
|
assert_response 500
|
|
|
|
assert_equal "500 localized error fixture\n", body
|
|
|
|
|
2010-01-19 10:05:34 -05:00
|
|
|
get "/not_found", {}, {'action_dispatch.show_exceptions' => true}
|
2009-05-03 00:02:22 -04:00
|
|
|
assert_response 404
|
|
|
|
assert_equal "404 error fixture\n", body
|
|
|
|
ensure
|
|
|
|
I18n.locale = old_locale
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-03 09:30:59 -04:00
|
|
|
test "sets the HTTP charset parameter" do
|
2011-12-01 15:15:42 -05:00
|
|
|
@app = ProductionApp
|
2011-05-03 09:30:59 -04:00
|
|
|
|
|
|
|
get "/", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_equal "text/html; charset=utf-8", response.headers["Content-Type"]
|
|
|
|
end
|
2011-11-24 14:37:48 -05:00
|
|
|
|
2011-12-01 15:15:42 -05:00
|
|
|
test "show registered original exception for wrapped exceptions" do
|
2011-11-24 14:37:48 -05:00
|
|
|
@app = ProductionApp
|
2011-11-28 11:25:37 -05:00
|
|
|
|
2011-12-01 15:15:42 -05:00
|
|
|
get "/not_found_original_exception", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_response 404
|
|
|
|
assert_match(/404 error/, body)
|
2011-11-28 11:25:37 -05:00
|
|
|
end
|
2011-12-16 03:45:14 -05:00
|
|
|
|
|
|
|
test "calls custom exceptions app" do
|
|
|
|
exceptions_app = lambda do |env|
|
|
|
|
assert_kind_of AbstractController::ActionNotFound, env["action_dispatch.exception"]
|
|
|
|
assert_equal "/404", env["PATH_INFO"]
|
|
|
|
[404, { "Content-Type" => "text/plain" }, ["YOU FAILED BRO"]]
|
|
|
|
end
|
|
|
|
|
|
|
|
@app = ActionDispatch::ShowExceptions.new(Boomer.new, exceptions_app)
|
|
|
|
get "/not_found_original_exception", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_response 404
|
|
|
|
assert_equal "YOU FAILED BRO", body
|
|
|
|
end
|
2011-12-16 03:59:36 -05:00
|
|
|
|
|
|
|
test "returns an empty response if custom exceptions app returns X-Cascade pass" do
|
|
|
|
exceptions_app = lambda do |env|
|
|
|
|
[404, { "X-Cascade" => "pass" }, []]
|
|
|
|
end
|
|
|
|
|
|
|
|
@app = ActionDispatch::ShowExceptions.new(Boomer.new, exceptions_app)
|
|
|
|
get "/method_not_allowed", {}, {'action_dispatch.show_exceptions' => true}
|
|
|
|
assert_response 405
|
|
|
|
assert_equal "", body
|
|
|
|
end
|
2009-05-03 00:02:22 -04:00
|
|
|
end
|