1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Merge pull request #506 from snaggled/master

Issue #467 Make #pass Behave as Expected in Error Blocks
This commit is contained in:
Konstantin Haase 2012-04-25 23:34:56 -07:00
commit c68153c991
2 changed files with 46 additions and 5 deletions

View file

@ -989,9 +989,13 @@ module Sinatra
def error_block!(key, *block_params) def error_block!(key, *block_params)
base = settings base = settings
while base.respond_to?(:errors) while base.respond_to?(:errors)
next base = base.superclass unless args = base.errors[key] next base = base.superclass unless args_array = base.errors[key]
args += [block_params] args_array.reverse_each do |args|
return process_route(*args) first = args == args_array.first
args += [block_params]
resp = process_route(*args)
return resp unless resp.nil? && !first
end
end end
return false unless key.respond_to? :superclass and key.superclass < Exception return false unless key.respond_to? :superclass and key.superclass < Exception
error_block!(key.superclass, *block_params) error_block!(key.superclass, *block_params)
@ -1091,11 +1095,11 @@ module Sinatra
# Define a custom error handler. Optionally takes either an Exception # Define a custom error handler. Optionally takes either an Exception
# class, or an HTTP status code to specify which errors should be # class, or an HTTP status code to specify which errors should be
# handled. # handled.
def error(*codes, &block) def error(*codes, &block)
args = compile! "ERROR", //, block args = compile! "ERROR", //, block
codes = codes.map { |c| Array(c) }.flatten codes = codes.map { |c| Array(c) }.flatten
codes << Exception if codes.empty? codes << Exception if codes.empty?
codes.each { |c| @errors[c] = args } codes.each { |c| (@errors[c] ||= []) << args }
end end
# Sugar for `error(404) { ... }` # Sugar for `error(404) { ... }`

View file

@ -14,6 +14,8 @@ class FooStatusOutOfRangeError < RuntimeError
def code; 4000 end def code; 4000 end
end end
class FirstError < RuntimeError; end
class SecondError < RuntimeError; end
class MappedErrorTest < Test::Unit::TestCase class MappedErrorTest < Test::Unit::TestCase
def test_default def test_default
@ -207,6 +209,41 @@ class MappedErrorTest < Test::Unit::TestCase
assert_equal 500, status assert_equal 500, status
end end
it "allows a stack of exception_handlers" do
mock_app {
set :raise_errors, false
error(FirstError) { 'First!' }
error(SecondError) { 'Second!' }
get('/'){ raise SecondError }
}
get '/'
assert_equal 500, status
assert_equal 'Second!', body
end
it "allows an exception handler to pass control to the next exception handler" do
mock_app {
set :raise_errors, false
error(500, FirstError) { 'First!' }
error(500, SecondError) { pass }
get('/') { raise 500 }
}
get '/'
assert_equal 500, status
assert_equal 'First!', body
end
it "allows an exception handler to handle the exception" do
mock_app {
set :raise_errors, false
error(500, FirstError) { 'First!' }
error(500, SecondError) { 'Second!' }
get('/') { raise 500 }
}
get '/'
assert_equal 500, status
assert_equal 'Second!', body
end
end end
describe 'Custom Error Pages' do describe 'Custom Error Pages' do