Sha256: a0652b854a687b9555991b94d4f42609fc00aa86feae03c57a4770be6ec721a9

Contents?: true

Size: 1.88 KB

Versions: 27

Compression:

Stored size: 1.88 KB

Contents

require 'test_helper'

module SessionTest
  module ParamsTest
    class ConfigTest < ActiveSupport::TestCase
      def test_params_key
        UserSession.params_key = "my_params_key"
        assert_equal "my_params_key", UserSession.params_key
    
        UserSession.params_key "user_credentials"
        assert_equal "user_credentials", UserSession.params_key
      end
    
      def test_single_access_allowed_request_types
        UserSession.single_access_allowed_request_types = ["my request type"]
        assert_equal ["my request type"], UserSession.single_access_allowed_request_types
    
        UserSession.single_access_allowed_request_types ["application/rss+xml", "application/atom+xml"]
        assert_equal ["application/rss+xml", "application/atom+xml"], UserSession.single_access_allowed_request_types
      end
    end
    
    class InstanceMethodsTest < ActiveSupport::TestCase
      def test_persist_persist_by_params
        ben = users(:ben)
        session = UserSession.new
    
        assert !session.persisting?
        set_params_for(ben)
      
        assert !session.persisting?
        assert !session.unauthorized_record
        assert !session.record
        assert_nil controller.session["user_credentials"]
      
        set_request_content_type("text/plain")
        assert !session.persisting?
        assert !session.unauthorized_record
        assert_nil controller.session["user_credentials"]
      
        set_request_content_type("application/atom+xml")
        assert session.persisting?
        assert_equal ben, session.record
        assert_nil controller.session["user_credentials"] # should not persist since this is single access
      
        set_request_content_type("application/rss+xml")
        assert session.persisting?
        assert_equal ben, session.unauthorized_record
        assert_nil controller.session["user_credentials"]
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 9 rubygems

Version Path
authlogic-3.4.6 test/session_test/params_test.rb
authlogic-3.4.5 test/session_test/params_test.rb
authlogic-3.4.4 test/session_test/params_test.rb
authlogic-3.4.3 test/session_test/params_test.rb
authlogic-3.4.2 test/session_test/params_test.rb
authlogic-3.4.1 test/session_test/params_test.rb
authlogic-3.4.0 test/session_test/params_test.rb
authlogic-3.3.0 test/session_test/params_test.rb
authlogic-3.2.0 test/session_test/params_test.rb
authlogic-3.1.3 test/session_test/params_test.rb
authlogic-3.1.2 test/session_test/params_test.rb
authlogic-3.1.1 test/session_test/params_test.rb
nulogy-authlogic-3.1.0.1 test/session_test/params_test.rb
Empact-authlogic-3.1.0 test/session_test/params_test.rb
authlogic-3.1.0 test/session_test/params_test.rb
Empact-authlogic-3.0.3 test/session_test/params_test.rb
antlypls-authlogic-3.0.3 test/session_test/params_test.rb
authlogic-3.0.3 test/session_test/params_test.rb
authlogic-3.0.2 test/session_test/params_test.rb
authlogic-3.0.1 test/session_test/params_test.rb