mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
71 lines
2 KiB
Ruby
71 lines
2 KiB
Ruby
require 'abstract_unit'
|
|
|
|
module ShowExceptions
|
|
class ShowExceptionsController < ActionController::Base
|
|
use ActionDispatch::ShowExceptions, ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public")
|
|
use ActionDispatch::DebugExceptions
|
|
|
|
before_filter :only => :another_boom do
|
|
request.env["action_dispatch.show_detailed_exceptions"] = true
|
|
end
|
|
|
|
def boom
|
|
raise 'boom!'
|
|
end
|
|
|
|
def another_boom
|
|
raise 'boom!'
|
|
end
|
|
|
|
def show_detailed_exceptions?
|
|
request.local?
|
|
end
|
|
end
|
|
|
|
class ShowExceptionsTest < ActionDispatch::IntegrationTest
|
|
test 'show error page from a remote ip' do
|
|
@app = ShowExceptionsController.action(:boom)
|
|
self.remote_addr = '208.77.188.166'
|
|
get '/'
|
|
assert_equal "500 error fixture\n", body
|
|
end
|
|
|
|
test 'show diagnostics from a local ip if show_detailed_exceptions? is set to request.local?' do
|
|
@app = ShowExceptionsController.action(:boom)
|
|
['127.0.0.1', '127.0.0.127', '::1', '0:0:0:0:0:0:0:1', '0:0:0:0:0:0:0:1%0'].each do |ip_address|
|
|
self.remote_addr = ip_address
|
|
get '/'
|
|
assert_match(/boom/, body)
|
|
end
|
|
end
|
|
|
|
test 'show diagnostics from a remote ip when env is already set' do
|
|
@app = ShowExceptionsController.action(:another_boom)
|
|
self.remote_addr = '208.77.188.166'
|
|
get '/'
|
|
assert_match(/boom/, body)
|
|
end
|
|
end
|
|
|
|
class ShowExceptionsOverridenController < ShowExceptionsController
|
|
private
|
|
|
|
def show_detailed_exceptions?
|
|
params['detailed'] == '1'
|
|
end
|
|
end
|
|
|
|
class ShowExceptionsOverridenTest < ActionDispatch::IntegrationTest
|
|
test 'show error page' do
|
|
@app = ShowExceptionsOverridenController.action(:boom)
|
|
get '/', {'detailed' => '0'}
|
|
assert_equal "500 error fixture\n", body
|
|
end
|
|
|
|
test 'show diagnostics message' do
|
|
@app = ShowExceptionsOverridenController.action(:boom)
|
|
get '/', {'detailed' => '1'}
|
|
assert_match(/boom/, body)
|
|
end
|
|
end
|
|
end
|