mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Reset session in integration tests after changing routes to reload the middleware stack
This commit is contained in:
parent
f3ed0de340
commit
ba5995dcd9
10 changed files with 42 additions and 28 deletions
|
@ -249,6 +249,7 @@ module ActionController #:nodoc:
|
|||
|
||||
temporary_routes = ActionController::Routing::RouteSet.new
|
||||
ActionController::Routing.module_eval { const_set :Routes, temporary_routes }
|
||||
ActionController::Dispatcher.router = temporary_routes
|
||||
|
||||
yield temporary_routes
|
||||
ensure
|
||||
|
@ -256,6 +257,7 @@ module ActionController #:nodoc:
|
|||
ActionController::Routing.module_eval { remove_const :Routes }
|
||||
end
|
||||
ActionController::Routing.const_set(:Routes, real_routes) if real_routes
|
||||
ActionController::Dispatcher.router = ActionController::Routing::Routes
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,12 +1,6 @@
|
|||
require 'active_record_unit'
|
||||
|
||||
class ActiveRecordStoreTest < ActionController::IntegrationTest
|
||||
DispatcherApp = ActionController::Dispatcher.new
|
||||
SessionApp = ActiveRecord::SessionStore.new(DispatcherApp,
|
||||
:key => '_session_id')
|
||||
SessionAppWithFixation = ActiveRecord::SessionStore.new(DispatcherApp,
|
||||
:key => '_session_id', :cookie_only => false)
|
||||
|
||||
class TestController < ActionController::Base
|
||||
def no_session_access
|
||||
head :ok
|
||||
|
@ -39,7 +33,7 @@ class ActiveRecordStoreTest < ActionController::IntegrationTest
|
|||
|
||||
def setup
|
||||
ActiveRecord::SessionStore.session_class.create_table!
|
||||
@integration_session = open_session(SessionApp)
|
||||
reset_app!
|
||||
end
|
||||
|
||||
def teardown
|
||||
|
@ -138,9 +132,9 @@ class ActiveRecordStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
def test_allows_session_fixation
|
||||
@integration_session = open_session(SessionAppWithFixation)
|
||||
|
||||
with_test_route_set do
|
||||
reset_with_fixation!
|
||||
|
||||
get '/set_session_value'
|
||||
assert_response :success
|
||||
assert cookies['_session_id']
|
||||
|
@ -151,8 +145,7 @@ class ActiveRecordStoreTest < ActionController::IntegrationTest
|
|||
session_id = cookies['_session_id']
|
||||
assert session_id
|
||||
|
||||
reset!
|
||||
@integration_session = open_session(SessionAppWithFixation)
|
||||
reset_with_fixation!
|
||||
|
||||
get '/set_session_value', :_session_id => session_id, :foo => "baz"
|
||||
assert_response :success
|
||||
|
@ -166,6 +159,16 @@ class ActiveRecordStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
private
|
||||
def reset_app!
|
||||
app = ActiveRecord::SessionStore.new(ActionController::Dispatcher.new, :key => '_session_id')
|
||||
@integration_session = open_session(app)
|
||||
end
|
||||
|
||||
def reset_with_fixation!
|
||||
app = ActiveRecord::SessionStore.new(ActionController::Dispatcher.new, :key => '_session_id', :cookie_only => false)
|
||||
@integration_session = open_session(app)
|
||||
end
|
||||
|
||||
def with_test_route_set
|
||||
with_routing do |set|
|
||||
set.draw do |map|
|
||||
|
|
|
@ -259,6 +259,7 @@ class WebServiceTest < ActionController::IntegrationTest
|
|||
c.connect "/", :action => "assign_parameters"
|
||||
end
|
||||
end
|
||||
reset!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -59,6 +59,7 @@ class JsonParamsParsingTest < ActionController::IntegrationTest
|
|||
set.draw do |map|
|
||||
map.connect ':action', :controller => "json_params_parsing_test/test"
|
||||
end
|
||||
reset!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -153,6 +153,7 @@ class MultipartParamsParsingTest < ActionController::IntegrationTest
|
|||
set.draw do |map|
|
||||
map.connect ':action', :controller => "multipart_params_parsing_test/test"
|
||||
end
|
||||
reset!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -111,6 +111,7 @@ class QueryStringParsingTest < ActionController::IntegrationTest
|
|||
set.draw do |map|
|
||||
map.connect ':action', :controller => "query_string_parsing_test/test"
|
||||
end
|
||||
reset!
|
||||
|
||||
get "/parse", actual
|
||||
assert_response :ok
|
||||
|
|
|
@ -132,6 +132,7 @@ class UrlEncodedParamsParsingTest < ActionController::IntegrationTest
|
|||
set.draw do |map|
|
||||
map.connect ':action', :controller => "url_encoded_params_parsing_test/test"
|
||||
end
|
||||
reset!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -86,6 +86,7 @@ class XmlParamsParsingTest < ActionController::IntegrationTest
|
|||
set.draw do |map|
|
||||
map.connect ':action', :controller => "xml_params_parsing_test/test"
|
||||
end
|
||||
reset!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,10 +8,6 @@ class CookieStoreTest < ActionController::IntegrationTest
|
|||
# Make sure Session middleware doesnt get included in the middleware stack
|
||||
ActionController::Base.session_store = nil
|
||||
|
||||
DispatcherApp = ActionController::Dispatcher.new
|
||||
CookieStoreApp = ActionDispatch::Session::CookieStore.new(DispatcherApp,
|
||||
:key => SessionKey, :secret => SessionSecret)
|
||||
|
||||
Verifier = ActiveSupport::MessageVerifier.new(SessionSecret, 'SHA1')
|
||||
SignedBar = Verifier.generate(:foo => "bar", :session_id => ActiveSupport::SecureRandom.hex(16))
|
||||
|
||||
|
@ -51,7 +47,7 @@ class CookieStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
def setup
|
||||
@integration_session = open_session(CookieStoreApp)
|
||||
reset_app!
|
||||
end
|
||||
|
||||
def test_raises_argument_error_if_missing_session_key
|
||||
|
@ -197,10 +193,10 @@ class CookieStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
def test_session_store_with_expire_after
|
||||
app = ActionDispatch::Session::CookieStore.new(DispatcherApp, :key => SessionKey, :secret => SessionSecret, :expire_after => 5.hours)
|
||||
@integration_session = open_session(app)
|
||||
|
||||
with_test_route_set do
|
||||
app = ActionDispatch::Session::CookieStore.new(ActionController::Dispatcher.new, :key => SessionKey, :secret => SessionSecret, :expire_after => 5.hours)
|
||||
@integration_session = open_session(app)
|
||||
|
||||
# First request accesses the session
|
||||
time = Time.local(2008, 4, 24)
|
||||
Time.stubs(:now).returns(time)
|
||||
|
@ -230,6 +226,12 @@ class CookieStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
private
|
||||
def reset_app!
|
||||
app = ActionDispatch::Session::CookieStore.new(ActionController::Dispatcher.new,
|
||||
:key => SessionKey, :secret => SessionSecret)
|
||||
@integration_session = open_session(app)
|
||||
end
|
||||
|
||||
def with_test_route_set
|
||||
with_routing do |set|
|
||||
set.draw do |map|
|
||||
|
@ -237,6 +239,7 @@ class CookieStoreTest < ActionController::IntegrationTest
|
|||
c.connect "/:action"
|
||||
end
|
||||
end
|
||||
reset_app!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
|
@ -32,14 +32,7 @@ class MemCacheStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
begin
|
||||
DispatcherApp = ActionController::Dispatcher.new
|
||||
MemCacheStoreApp = ActionDispatch::Session::MemCacheStore.new(
|
||||
DispatcherApp, :key => '_session_id')
|
||||
|
||||
|
||||
def setup
|
||||
@integration_session = open_session(MemCacheStoreApp)
|
||||
end
|
||||
App = ActionDispatch::Session::MemCacheStore.new(ActionController::Dispatcher.new, :key => '_session_id')
|
||||
|
||||
def test_setting_and_getting_session_value
|
||||
with_test_route_set do
|
||||
|
@ -114,6 +107,12 @@ class MemCacheStoreTest < ActionController::IntegrationTest
|
|||
end
|
||||
|
||||
private
|
||||
def reset_app!
|
||||
app = ActionDispatch::Session::MemCacheStore.new(
|
||||
ActionController::Dispatcher.new, :key => '_session_id')
|
||||
@integration_session = open_session(app)
|
||||
end
|
||||
|
||||
def with_test_route_set
|
||||
with_routing do |set|
|
||||
set.draw do |map|
|
||||
|
@ -121,6 +120,7 @@ class MemCacheStoreTest < ActionController::IntegrationTest
|
|||
c.connect "/:action"
|
||||
end
|
||||
end
|
||||
reset_app!
|
||||
yield
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue