在我的 Rails 3.2 应用程序中,我尝试使用 config.exceptions_app 通过路由表路由异常以呈现特定于错误的页面(尤其是 401 Forbidden 页面)。这是我到目前为止的配置:
# application.rb
config.action_dispatch.rescue_responses.merge!('Error::Forbidden' => :forbidden)
config.exceptions_app = ->(env) { ErrorsController.action(:show).call(env) }
# development.rb
config.consider_all_requests_local = false
# test.rb
config.consider_all_requests_local = false
现在问题的实质:
module Error
class Forbidden < StandardError
end
end
class ErrorsController < ApplicationController
layout 'error'
def show
exception = env['action_dispatch.exception']
status_code = ActionDispatch::ExceptionWrapper.new(env, exception).status_code
rescue_response = ActionDispatch::ExceptionWrapper.rescue_responses[exception.class.name]
render :action => rescue_response, :status => status_code, :formats => [:html]
end
def forbidden
render :status => :forbidden, :formats => [:html]
end
end
当我想渲染那个 401 响应时,我只是raise Error::Forbidden
在开发环境中完美地工作。但是在 rspec 中运行示例时,例如:
it 'should return http forbidden' do
put :update, :id => 12342343343
response.should be_forbidden
end
它惨遭失败:
1) UsersController PUT update when attempting to edit another record should return http forbidden
Failure/Error: put :update, :id => 12342343343
Error::Forbidden:
Error::Forbidden
有人可以帮我理解为什么这在我的测试环境中不起作用吗?我可以在 ApplicationController 中放置一个#rescue_from,但如果我必须这样做才能让我的测试正常工作,那么我首先不确定使用config.exceptions_app
的目的是什么。:-\
编辑:作为一种解决方法,我最终将以下内容放在 config/environments/test.rb的末尾,这太恶心了,但似乎工作正常。
module Error
def self.included(base)
_not_found = -> do
render :status => :not_found, :text => 'not found'
end
_forbidden = -> do
render :status => :forbidden, :text => 'forbidden'
end
base.class_eval do
rescue_from 'ActiveRecord::RecordNotFound', :with => _not_found
rescue_from 'ActionController::UnknownController', :with => _not_found
rescue_from 'AbstractController::ActionNotFound', :with => _not_found
rescue_from 'ActionController::RoutingError', :with => _not_found
rescue_from 'Error::Forbidden', :with => _forbidden
end
end
end