2009-01-29 20:37:38 -05:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'stringio'
|
|
|
|
|
|
|
|
class ActionController::TestSessionTest < ActiveSupport::TestCase
|
|
|
|
def test_calling_delete_without_parameters_raises_deprecation_warning_and_calls_to_clear_test_session
|
|
|
|
assert_deprecated(/use clear instead/){ ActionController::TestSession.new.delete }
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_calling_update_without_parameters_raises_deprecation_warning_and_calls_to_clear_test_session
|
|
|
|
assert_deprecated(/use replace instead/){ ActionController::TestSession.new.update }
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_calling_close_raises_deprecation_warning
|
|
|
|
assert_deprecated(/sessions should no longer be closed/){ ActionController::TestSession.new.close }
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_ctor_allows_setting
|
|
|
|
session = ActionController::TestSession.new({:one => 'one', :two => 'two'})
|
|
|
|
assert_equal('one', session[:one])
|
|
|
|
assert_equal('two', session[:two])
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_setting_session_item_sets_item
|
|
|
|
session = ActionController::TestSession.new
|
|
|
|
session[:key] = 'value'
|
|
|
|
assert_equal('value', session[:key])
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-02-12 11:40:14 -05:00
|
|
|
def test_calling_delete_removes_item
|
2009-01-29 20:37:38 -05:00
|
|
|
session = ActionController::TestSession.new
|
|
|
|
session[:key] = 'value'
|
|
|
|
assert_equal('value', session[:key])
|
|
|
|
session.delete(:key)
|
|
|
|
assert_nil(session[:key])
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_calling_update_with_params_passes_to_attributes
|
|
|
|
session = ActionController::TestSession.new()
|
|
|
|
session.update('key' => 'value')
|
|
|
|
assert_equal('value', session[:key])
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
|
2009-01-29 20:37:38 -05:00
|
|
|
def test_clear_emptys_session
|
|
|
|
params = {:one => 'one', :two => 'two'}
|
|
|
|
session = ActionController::TestSession.new({:one => 'one', :two => 'two'})
|
|
|
|
session.clear
|
|
|
|
assert_nil(session[:one])
|
|
|
|
assert_nil(session[:two])
|
|
|
|
end
|
2009-04-26 15:33:57 -04:00
|
|
|
end
|