aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-06-08 11:59:09 -0400
committerJosé Valim <jose.valim@gmail.com>2010-07-19 14:50:38 +0200
commit33c5689e2d04aa08759903bc5d1e4de3bf6c35dd (patch)
treec8dd5917a8dd10017d7a653567ff084a5dfa18ab /actionpack
parentad8f4dfc50fe3858b80aeceb6d9240d2af4a2fea (diff)
downloadrails-33c5689e2d04aa08759903bc5d1e4de3bf6c35dd.tar.gz
rails-33c5689e2d04aa08759903bc5d1e4de3bf6c35dd.tar.bz2
rails-33c5689e2d04aa08759903bc5d1e4de3bf6c35dd.zip
Exceptions from views should be rescued based on the original exception. If a handler for original exception is missing then apply ActiveView::TemplateError
[#2034 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller.rb1
-rw-r--r--actionpack/lib/action_controller/base.rb6
-rw-r--r--actionpack/lib/action_controller/metal/rescue_with_helper.rb14
-rw-r--r--actionpack/test/controller/rescue_test.rb27
4 files changed, 46 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb
index 1bd4572a47..1b23a8e916 100644
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -28,6 +28,7 @@ module ActionController
autoload :Rendering
autoload :RequestForgeryProtection
autoload :Rescue
+ autoload :RescueWithHelper
autoload :Responder
autoload :SessionManagement
autoload :Streaming
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 1a2cbaab65..9616aa1639 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -49,7 +49,9 @@ module ActionController
AbstractController::Callbacks,
# The same with rescue, append it at the end to wrap as much as possible.
- Rescue
+ Rescue,
+
+ RescueWithHelper
]
MODULES.each do |mod|
@@ -69,4 +71,4 @@ module ActionController
end
end
-require "action_controller/deprecated/base" \ No newline at end of file
+require "action_controller/deprecated/base"
diff --git a/actionpack/lib/action_controller/metal/rescue_with_helper.rb b/actionpack/lib/action_controller/metal/rescue_with_helper.rb
new file mode 100644
index 0000000000..7894deaeef
--- /dev/null
+++ b/actionpack/lib/action_controller/metal/rescue_with_helper.rb
@@ -0,0 +1,14 @@
+module ActionController #:nodoc:
+ module RescueWithHelper
+
+ def rescue_with_handler(exception)
+ if ((exception.class == ActionView::TemplateError) &&
+ (orig_exception = exception.original_exception) &&
+ (orig_handler = handler_for_rescue(orig_exception)))
+ exception = orig_exception
+ end
+ super(exception)
+ end
+
+ end
+end
diff --git a/actionpack/test/controller/rescue_test.rb b/actionpack/test/controller/rescue_test.rb
index 0f64b77647..a24de62b19 100644
--- a/actionpack/test/controller/rescue_test.rb
+++ b/actionpack/test/controller/rescue_test.rb
@@ -79,6 +79,14 @@ class RescueController < ActionController::Base
render :text => 'no way'
end
+ rescue_from ActionView::TemplateError do
+ render :text => 'action_view templater error'
+ end
+
+ rescue_from IOError do
+ render :text => 'io error'
+ end
+
before_filter(:only => :before_filter_raises) { raise 'umm nice' }
def before_filter_raises
@@ -141,6 +149,14 @@ class RescueController < ActionController::Base
def missing_template
end
+
+ def io_error_in_view
+ raise ActionView::TemplateError.new(nil, {}, IOError.new('this is io error'))
+ end
+
+ def zero_division_error_in_view
+ raise ActionView::TemplateError.new(nil, {}, ZeroDivisionError.new('this is zero division error'))
+ end
protected
def deny_access
@@ -228,6 +244,17 @@ class ControllerInheritanceRescueControllerTest < ActionController::TestCase
end
class RescueControllerTest < ActionController::TestCase
+
+ def test_io_error_in_view
+ get :io_error_in_view
+ assert_equal 'io error', @response.body
+ end
+
+ def test_zero_division_error_in_view
+ get :zero_division_error_in_view
+ assert_equal 'action_view templater error', @response.body
+ end
+
def test_rescue_handler
get :not_authorized
assert_response :forbidden