aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2007-05-06 04:17:01 +0000
committerMarcel Molina <marcel@vernix.org>2007-05-06 04:17:01 +0000
commitdac6aae7f87313e20e8a50b8b405c3799c4e8ffe (patch)
tree68fec7367829a06c1dc380dae821d5c2f159a932 /actionpack/test/controller
parent67ca9224d709e28bfd5802b1f44969d621b0ea8f (diff)
downloadrails-dac6aae7f87313e20e8a50b8b405c3799c4e8ffe.tar.gz
rails-dac6aae7f87313e20e8a50b8b405c3799c4e8ffe.tar.bz2
rails-dac6aae7f87313e20e8a50b8b405c3799c4e8ffe.zip
Sweep flash when filter chain is halted. Closes #6175. [Caio Chassot <lists@v2studio.com>]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6670 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/flash_test.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/actionpack/test/controller/flash_test.rb b/actionpack/test/controller/flash_test.rb
index d12ced8530..496af2b47a 100644
--- a/actionpack/test/controller/flash_test.rb
+++ b/actionpack/test/controller/flash_test.rb
@@ -34,6 +34,12 @@ class FlashTest < Test::Unit::TestCase
silence_warnings { keep_flash }
render :inline => "hello"
end
+
+ def use_flash_and_update_it
+ flash.update("this" => "hello again")
+ @flash_copy = {}.update flash
+ render :inline => "hello"
+ end
def use_flash_after_reset_session
flash["that"] = "hello"
@@ -48,6 +54,24 @@ class FlashTest < Test::Unit::TestCase
def rescue_action(e)
raise unless ActionController::MissingTemplate === e
end
+
+ # methods for test_sweep_after_halted_filter_chain
+ before_filter :halt_and_redir, :only => "filter_halting_action"
+
+ def std_action
+ @flash_copy = {}.update(flash)
+ end
+
+ def filter_halting_action
+ @flash_copy = {}.update(flash)
+ end
+
+ def halt_and_redir
+ flash["foo"] = "bar"
+ redirect_to :action => "std_action"
+ @flash_copy = {}.update(flash)
+ false
+ end
end
def setup
@@ -93,10 +117,31 @@ class FlashTest < Test::Unit::TestCase
assert_nil @response.template.assigns["flashy"]
end
+ def test_update_flash
+ get :set_flash
+ get :use_flash_and_update_it
+ assert_equal "hello", @response.template.assigns["flash_copy"]["that"]
+ assert_equal "hello again", @response.template.assigns["flash_copy"]["this"]
+ get :use_flash
+ assert_nil @response.template.assigns["flash_copy"]["that"], "On second flash"
+ assert_equal "hello again", @response.template.assigns["flash_copy"]["this"], "On second flash"
+ end
+
def test_flash_after_reset_session
get :use_flash_after_reset_session
assert_equal "hello", @response.template.assigns["flashy_that"]
assert_equal "good-bye", @response.template.assigns["flashy_this"]
assert_nil @response.template.assigns["flashy_that_reset"]
end
+
+ def test_sweep_after_halted_filter_chain
+ get :std_action
+ assert_nil @response.template.assigns["flash_copy"]["foo"]
+ get :filter_halting_action
+ assert_equal "bar", @response.template.assigns["flash_copy"]["foo"]
+ get :std_action # follow redirection
+ assert_equal "bar", @response.template.assigns["flash_copy"]["foo"]
+ get :std_action
+ assert_nil @response.template.assigns["flash_copy"]["foo"]
+ end
end