95 lines
2.3 KiB
Ruby
95 lines
2.3 KiB
Ruby
|
require File.dirname(__FILE__) + '/../abstract_unit'
|
||
|
|
||
|
class SessionManagementTest < Test::Unit::TestCase
|
||
|
class SessionOffController < ActionController::Base
|
||
|
session :off
|
||
|
|
||
|
def show
|
||
|
render_text "done"
|
||
|
end
|
||
|
|
||
|
def tell
|
||
|
render_text "done"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class TestController < ActionController::Base
|
||
|
session :off, :only => :show
|
||
|
session :session_secure => true, :except => :show
|
||
|
session :off, :only => :conditional,
|
||
|
:if => Proc.new { |r| r.parameters[:ws] }
|
||
|
|
||
|
def show
|
||
|
render_text "done"
|
||
|
end
|
||
|
|
||
|
def tell
|
||
|
render_text "done"
|
||
|
end
|
||
|
|
||
|
def conditional
|
||
|
render_text ">>>#{params[:ws]}<<<"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class SpecializedController < SessionOffController
|
||
|
session :disabled => false, :only => :something
|
||
|
|
||
|
def something
|
||
|
render_text "done"
|
||
|
end
|
||
|
|
||
|
def another
|
||
|
render_text "done"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def setup
|
||
|
@request, @response = ActionController::TestRequest.new,
|
||
|
ActionController::TestResponse.new
|
||
|
end
|
||
|
|
||
|
def test_session_off_globally
|
||
|
@controller = SessionOffController.new
|
||
|
get :show
|
||
|
assert_equal false, @request.session_options
|
||
|
get :tell
|
||
|
assert_equal false, @request.session_options
|
||
|
end
|
||
|
|
||
|
def test_session_off_conditionally
|
||
|
@controller = TestController.new
|
||
|
get :show
|
||
|
assert_equal false, @request.session_options
|
||
|
get :tell
|
||
|
assert_instance_of Hash, @request.session_options
|
||
|
assert @request.session_options[:session_secure]
|
||
|
end
|
||
|
|
||
|
def test_controller_specialization_overrides_settings
|
||
|
@controller = SpecializedController.new
|
||
|
get :something
|
||
|
assert_instance_of Hash, @request.session_options
|
||
|
get :another
|
||
|
assert_equal false, @request.session_options
|
||
|
end
|
||
|
|
||
|
def test_session_off_with_if
|
||
|
@controller = TestController.new
|
||
|
get :conditional
|
||
|
assert_instance_of Hash, @request.session_options
|
||
|
get :conditional, :ws => "ws"
|
||
|
assert_equal false, @request.session_options
|
||
|
end
|
||
|
|
||
|
def test_session_store_setting
|
||
|
ActionController::Base.session_store = :drb_store
|
||
|
assert_equal CGI::Session::DRbStore, ActionController::Base.session_store
|
||
|
|
||
|
if Object.const_defined?(:ActiveRecord)
|
||
|
ActionController::Base.session_store = :active_record_store
|
||
|
assert_equal CGI::Session::ActiveRecordStore, ActionController::Base.session_store
|
||
|
end
|
||
|
end
|
||
|
end
|