Skip to content

Commit 0a4f273

Browse files
committed
Use a test setup similar to actiondispatch's Cookie Store tests
I took another look at the changes we had to make in #220 and compared that to how things work in `actiondispatch`'s Cookie Store tests and realized we were close, but missing how we were setting the options for our store. So I've revamped the setup to be in line with what's in Rails' own tests. This should make it easier to keep things in line and working, going forward. See the following two files for how Cookie Store tests (and their base `ActionDispatch::IntegrationTest`) work today (as of Rails 8.0): * https://github.com/rails/rails/blob/8-0-stable/actionpack/test/dispatch/session/cookie_store_test.rb * https://github.com/rails/rails/blob/8-0-stable/actionpack/test/abstract_unit.rb NOTE: The big downside to this is… it depends on some changes to how `#with_routing`, provided by Rails, works. Meaning it only works with Rails 7.2+. ☹️
1 parent 33983f5 commit 0a4f273

File tree

2 files changed

+23
-15
lines changed

2 files changed

+23
-15
lines changed

test/action_controller_test.rb

+9-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ def test_prevents_session_fixation
197197
end
198198

199199
def test_allows_session_fixation
200-
with_test_route_set(:cookie_only => false) do
200+
session_options(cookie_only: false)
201+
202+
with_test_route_set do
201203
get '/set_session_value'
202204
assert_response :success
203205
assert cookies['_session_id']
@@ -238,7 +240,9 @@ def test_incoming_invalid_session_id_via_cookie_should_be_ignored
238240
end
239241

240242
def test_incoming_invalid_session_id_via_parameter_should_be_ignored
241-
with_test_route_set(:cookie_only => false) do
243+
session_options(cookie_only: false)
244+
245+
with_test_route_set do
242246
open_session do |sess|
243247
sess.get '/set_session_value', :params => { :_session_id => 'INVALID' }
244248
new_session_id = sess.cookies['_session_id']
@@ -252,7 +256,9 @@ def test_incoming_invalid_session_id_via_parameter_should_be_ignored
252256
end
253257

254258
def test_session_store_with_all_domains
255-
with_test_route_set(:domain => :all) do
259+
session_options(domain: :all)
260+
261+
with_test_route_set do
256262
get '/set_session_value'
257263
assert_response :success
258264
end

test/helper.rb

+14-12
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def config
4444
class ActionDispatch::IntegrationTest < ActiveSupport::TestCase
4545
include ActionDispatch::SharedRoutes
4646

47-
def self.build_app(routes, options)
47+
def self.build_app(routes = nil)
4848
RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
4949
middleware.use ActionDispatch::DebugExceptions
5050
middleware.use ActionDispatch::ActionableExceptions
@@ -53,16 +53,25 @@ def self.build_app(routes, options)
5353
middleware.use ActionDispatch::Flash
5454
middleware.use Rack::MethodOverride
5555
middleware.use Rack::Head
56-
middleware.use ActionDispatch::Session::ActiveRecordStore, options.reverse_merge(key: "_session_id")
5756
yield(middleware) if block_given?
5857
end
5958
end
6059

61-
self.app = build_app(nil, {})
60+
self.app = build_app
6261

6362
private
6463

65-
def with_test_route_set(options = {})
64+
def session_options(options = {})
65+
(@session_options ||= {key: "_session_id"}).merge!(options)
66+
end
67+
68+
def app
69+
@app ||= self.class.build_app do |middleware|
70+
middleware.use ActionDispatch::Session::ActiveRecordStore, session_options
71+
end
72+
end
73+
74+
def with_test_route_set
6675
controller_namespace = self.class.to_s.underscore
6776
actions = %w[set_session_value get_session_value call_reset_session renew get_session_id]
6877

@@ -71,14 +80,7 @@ def with_test_route_set(options = {})
7180
actions.each { |action| get action, controller: "#{controller_namespace}/test" }
7281
end
7382

74-
old_app = self.class.app
75-
begin
76-
self.class.app = self.class.build_app(set, options)
77-
78-
yield
79-
ensure
80-
self.class.app = old_app
81-
end
83+
yield
8284
end
8385
end
8486

0 commit comments

Comments
 (0)