Sha256: 732b3429c05ab70a3e3899cee82864aa28e13182709c81054addcba66381ac76

Contents?: true

Size: 1.86 KB

Versions: 40

Compression:

Stored size: 1.86 KB

Contents

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
  
  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
  
  def test_calling_close_raises_deprecation_warning
    assert_deprecated(/sessions should no longer be closed/){ ActionController::TestSession.new.close }
  end
  
  def test_defaults
    session = ActionController::TestSession.new
    assert_equal({}, session.data)
    assert_equal('', session.session_id)
  end
  
  def test_ctor_allows_setting
    session = ActionController::TestSession.new({:one => 'one', :two => 'two'})
    assert_equal('one', session[:one])
    assert_equal('two', session[:two])
  end
  
  def test_setting_session_item_sets_item
    session = ActionController::TestSession.new
    session[:key] = 'value'
    assert_equal('value', session[:key])
  end
  
  def test_calling_delete_removes_item_and_returns_its_value
    session = ActionController::TestSession.new
    session[:key] = 'value'
    assert_equal('value', session[:key])
    assert_equal('value', session.delete(:key))
    assert_nil(session[:key])
  end
  
  def test_calling_update_with_params_passes_to_attributes
    session = ActionController::TestSession.new()
    session.update('key' => 'value')
    assert_equal('value', session[:key])
  end
  
  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
  
end

Version data entries

40 entries across 40 versions & 10 rubygems

Version Path
actionpack-2.3.18 test/controller/session/test_session_test.rb
actionpack_csi-2.3.5.p8 test/controller/session/test_session_test.rb
actionpack-2.3.17-rack-upgrade-2.3.17 test/controller/session/test_session_test.rb
actionpack-2.3.17 test/controller/session/test_session_test.rb
actionpack_csi-2.3.5.p7 test/controller/session/test_session_test.rb
actionpack_csi-2.3.5.p6 test/controller/session/test_session_test.rb
actionpack-2.3.16 test/controller/session/test_session_test.rb
actionpack-rack-upgrade-2-2.3.16 test/controller/session/test_session_test.rb
actionpack-rack-upgrade-2-2.3.15 test/controller/session/test_session_test.rb
actionpack-2.3.15 test/controller/session/test_session_test.rb
actionpack-rack-upgrade-2.3.16 test/controller/session/test_session_test.rb
actionpack-rack-upgrade-2.3.15 test/controller/session/test_session_test.rb
actionpack-rack-upgrade-2.3.14 test/controller/session/test_session_test.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/actionpack-2.3.14/test/controller/session/test_session_test.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/actionpack-2.3.12/test/controller/session/test_session_test.rb
actionpack-2.3.14 test/controller/session/test_session_test.rb
kajam-1.0.3.rc2 vendor/rails/actionpack/test/controller/session/test_session_test.rb
actionpack-2.3.12 test/controller/session/test_session_test.rb
radiant-1.0.0.rc2 vendor/rails/actionpack/test/controller/session/test_session_test.rb
radiant-1.0.0.rc1 vendor/rails/actionpack/test/controller/session/test_session_test.rb