Skip to content

Commit b606449

Browse files
authoredMar 26, 2025··
Merge pull request #220 from rails/fix-integration-2
Fix test suite with Rails 7.2+
2 parents e7ea2d4 + e77bcc3 commit b606449

File tree

5 files changed

+72
-21
lines changed

5 files changed

+72
-21
lines changed
 

‎.github/workflows/ci.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,23 @@ jobs:
88
fail-fast: false
99
matrix:
1010
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
11-
rails: ['7.0', '7.1', 'edge']
11+
rails: ['7.0', '7.1', '7.2', '8.0', 'edge']
1212
exclude:
13+
- ruby: '2.7'
14+
rails: '7.2'
15+
- ruby: '2.7'
16+
rails: '8.0'
1317
- ruby: '2.7'
1418
rails: 'edge'
1519
- ruby: '3.0'
20+
rails: '7.2'
21+
- ruby: '3.0'
22+
rails: '8.0'
23+
- ruby: '3.0'
24+
rails: 'edge'
25+
- ruby: '3.1'
26+
rails: '8.0'
27+
- ruby: '3.1'
1628
rails: 'edge'
1729
env:
1830
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile

‎gemfiles/rails_7.2.gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source "https://rubygems.org"
2+
3+
gem "actionpack", github: "rails/rails", branch: "7-2-stable"
4+
gem "activerecord", github: "rails/rails", branch: "7-2-stable"
5+
gem "railties", github: "rails/rails", branch: "7-2-stable"
6+
7+
gem "rack", ">= 2.2.4", "< 4"
8+
gem "sqlite3"
9+
10+
gemspec :path => "../"
11+

‎gemfiles/rails_8.0.gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source "https://rubygems.org"
2+
3+
gem "actionpack", github: "rails/rails", branch: "8-0-stable"
4+
gem "activerecord", github: "rails/rails", branch: "8-0-stable"
5+
gem "railties", github: "rails/rails", branch: "8-0-stable"
6+
7+
gem "rack", ">= 2.2.4", "< 4"
8+
gem "sqlite3"
9+
10+
gemspec :path => "../"
11+

‎test/helper.rb

+34-19
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,46 @@ def before_setup
2020
end
2121
end
2222

23+
class RoutedRackApp
24+
class Config < Struct.new(:middleware)
25+
end
26+
27+
attr_reader :routes
28+
29+
def initialize(routes, &blk)
30+
@routes = routes
31+
@stack = ActionDispatch::MiddlewareStack.new(&blk)
32+
@app = @stack.build(@routes)
33+
end
34+
35+
def call(env)
36+
@app.call(env)
37+
end
38+
39+
def config
40+
Config.new(@stack)
41+
end
42+
end
43+
2344
class ActionDispatch::IntegrationTest < ActiveSupport::TestCase
2445
include ActionDispatch::SharedRoutes
2546

26-
def self.build_app(routes = nil)
47+
def self.build_app(routes, options)
2748
RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
2849
middleware.use ActionDispatch::DebugExceptions
50+
middleware.use ActionDispatch::ActionableExceptions
2951
middleware.use ActionDispatch::Callbacks
3052
middleware.use ActionDispatch::Cookies
3153
middleware.use ActionDispatch::Flash
54+
middleware.use Rack::MethodOverride
3255
middleware.use Rack::Head
56+
middleware.use ActionDispatch::Session::ActiveRecordStore, options.reverse_merge(key: "_session_id")
3357
yield(middleware) if block_given?
3458
end
3559
end
3660

61+
self.app = build_app(nil, {})
62+
3763
private
3864

3965
def with_test_route_set(options = {})
@@ -45,12 +71,14 @@ def with_test_route_set(options = {})
4571
actions.each { |action| get action, controller: "#{controller_namespace}/test" }
4672
end
4773

48-
@app = self.class.build_app(set) do |middleware|
49-
middleware.use ActionDispatch::Session::ActiveRecordStore, options.reverse_merge(:key => '_session_id')
50-
middleware.delete ActionDispatch::ShowExceptions
51-
end
74+
old_app = self.class.app
75+
begin
76+
self.class.app = self.class.build_app(set, options)
5277

53-
yield
78+
yield
79+
ensure
80+
self.class.app = old_app
81+
end
5482
end
5583
end
5684

@@ -63,17 +91,4 @@ def with_store(class_name)
6391
end
6492
end
6593

66-
class RoutedRackApp
67-
attr_reader :routes
68-
69-
def initialize(routes, &blk)
70-
@routes = routes
71-
@stack = ActionDispatch::MiddlewareStack.new(&blk).build(@routes)
72-
end
73-
74-
def call(env)
75-
@stack.call(env)
76-
end
77-
end
78-
7994
ActiveSupport::TestCase.test_order = :random

‎test/logger_silencer_test.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def setup
3939
def test_log_silencer_with_logger_not_raise_exception
4040
with_logger ActiveSupport::Logger.new(Tempfile.new("tempfile")) do
4141
with_test_route_set do
42-
get "/set_session_value"
42+
assert_nothing_raised do
43+
get "/set_session_value"
44+
end
4345
end
4446
end
4547
end

0 commit comments

Comments
 (0)
Please sign in to comment.