提交 41219386 编写于 作者: B brainopia

Support cookie jar options for all cookie stores

上级 0b019cc3
...@@ -74,6 +74,13 @@ def stale_session_check! ...@@ -74,6 +74,13 @@ def stale_session_check!
class AbstractStore < Rack::Session::Abstract::ID class AbstractStore < Rack::Session::Abstract::ID
include Compatibility include Compatibility
include StaleSessionCheck include StaleSessionCheck
private
def set_cookie(env, session_id, cookie)
request = ActionDispatch::Request.new(env)
request.cookie_jar[key] = cookie
end
end end
end end
end end
...@@ -254,6 +254,13 @@ def test_incoming_invalid_session_id_via_parameter_should_be_ignored ...@@ -254,6 +254,13 @@ def test_incoming_invalid_session_id_via_parameter_should_be_ignored
end end
end end
def test_session_store_with_all_domains
with_test_route_set(:domain => :all) do
get '/set_session_value'
assert_response :success
end
end
private private
def with_test_route_set(options = {}) def with_test_route_set(options = {})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册