2004-11-24 01:04:44 +00:00
|
|
|
require File.dirname(__FILE__) + '/../abstract_unit'
|
|
|
|
|
|
|
|
class FlashTest < Test::Unit::TestCase
|
|
|
|
class TestController < ActionController::Base
|
|
|
|
def set_flash
|
|
|
|
flash["that"] = "hello"
|
2005-07-24 16:45:39 +00:00
|
|
|
render :inline => "hello"
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
2005-03-20 19:12:53 +00:00
|
|
|
def set_flash_now
|
|
|
|
flash.now["that"] = "hello"
|
2005-10-26 13:14:10 +00:00
|
|
|
flash.now["foo"] ||= "bar"
|
|
|
|
flash.now["foo"] ||= "err"
|
|
|
|
@flashy = flash.now["that"]
|
2005-03-20 19:12:53 +00:00
|
|
|
@flash_copy = {}.update flash
|
2005-07-24 16:45:39 +00:00
|
|
|
render :inline => "hello"
|
2005-03-20 19:12:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def attempt_to_use_flash_now
|
|
|
|
@flash_copy = {}.update flash
|
|
|
|
@flashy = flash["that"]
|
2005-07-24 16:45:39 +00:00
|
|
|
render :inline => "hello"
|
2005-03-20 19:12:53 +00:00
|
|
|
end
|
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
def use_flash
|
2005-03-20 19:12:53 +00:00
|
|
|
@flash_copy = {}.update flash
|
2004-11-24 01:04:44 +00:00
|
|
|
@flashy = flash["that"]
|
2005-07-24 16:45:39 +00:00
|
|
|
render :inline => "hello"
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def use_flash_and_keep_it
|
2005-03-20 19:12:53 +00:00
|
|
|
@flash_copy = {}.update flash
|
2004-11-24 01:04:44 +00:00
|
|
|
@flashy = flash["that"]
|
2007-09-09 21:54:59 +00:00
|
|
|
flash.keep
|
2005-07-24 16:45:39 +00:00
|
|
|
render :inline => "hello"
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
2007-05-06 04:17:01 +00:00
|
|
|
|
|
|
|
def use_flash_and_update_it
|
|
|
|
flash.update("this" => "hello again")
|
|
|
|
@flash_copy = {}.update flash
|
|
|
|
render :inline => "hello"
|
|
|
|
end
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-07-22 02:31:21 +00:00
|
|
|
def use_flash_after_reset_session
|
|
|
|
flash["that"] = "hello"
|
|
|
|
@flashy_that = flash["that"]
|
|
|
|
reset_session
|
|
|
|
@flashy_that_reset = flash["that"]
|
|
|
|
flash["this"] = "good-bye"
|
|
|
|
@flashy_this = flash["this"]
|
|
|
|
render :inline => "hello"
|
|
|
|
end
|
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
def rescue_action(e)
|
|
|
|
raise unless ActionController::MissingTemplate === e
|
|
|
|
end
|
2007-05-06 04:17:01 +00:00
|
|
|
|
|
|
|
# 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)
|
|
|
|
end
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
2006-02-12 16:29:21 +00:00
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
|
|
|
@controller = TestController.new
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_flash
|
2006-02-12 16:29:21 +00:00
|
|
|
get :set_flash
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-02-12 16:29:21 +00:00
|
|
|
get :use_flash
|
|
|
|
assert_equal "hello", @response.template.assigns["flash_copy"]["that"]
|
|
|
|
assert_equal "hello", @response.template.assigns["flashy"]
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-02-12 16:29:21 +00:00
|
|
|
get :use_flash
|
|
|
|
assert_nil @response.template.assigns["flash_copy"]["that"], "On second flash"
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_keep_flash
|
2006-02-12 16:29:21 +00:00
|
|
|
get :set_flash
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2007-09-09 21:54:59 +00:00
|
|
|
get :use_flash_and_keep_it
|
2006-02-12 16:29:21 +00:00
|
|
|
assert_equal "hello", @response.template.assigns["flash_copy"]["that"]
|
|
|
|
assert_equal "hello", @response.template.assigns["flashy"]
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-02-12 16:29:21 +00:00
|
|
|
get :use_flash
|
|
|
|
assert_equal "hello", @response.template.assigns["flash_copy"]["that"], "On second flash"
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-02-12 16:29:21 +00:00
|
|
|
get :use_flash
|
|
|
|
assert_nil @response.template.assigns["flash_copy"]["that"], "On third flash"
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|
|
|
|
|
2005-03-20 19:12:53 +00:00
|
|
|
def test_flash_now
|
2006-02-12 16:29:21 +00:00
|
|
|
get :set_flash_now
|
|
|
|
assert_equal "hello", @response.template.assigns["flash_copy"]["that"]
|
|
|
|
assert_equal "bar" , @response.template.assigns["flash_copy"]["foo"]
|
|
|
|
assert_equal "hello", @response.template.assigns["flashy"]
|
2005-03-20 19:12:53 +00:00
|
|
|
|
2006-02-12 16:29:21 +00:00
|
|
|
get :attempt_to_use_flash_now
|
|
|
|
assert_nil @response.template.assigns["flash_copy"]["that"]
|
|
|
|
assert_nil @response.template.assigns["flash_copy"]["foo"]
|
|
|
|
assert_nil @response.template.assigns["flashy"]
|
2005-03-20 19:12:53 +00:00
|
|
|
end
|
2006-07-22 02:31:21 +00:00
|
|
|
|
2007-05-06 04:17:01 +00:00
|
|
|
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
|
|
|
|
|
2006-07-22 02:31:21 +00:00
|
|
|
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
|
2007-05-06 04:17:01 +00:00
|
|
|
|
|
|
|
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
|
2006-09-04 05:06:10 +00:00
|
|
|
end
|