5
5
require "minitest/autorun"
6
6
7
7
require "action_controller"
8
+ require "action_controller/test_case"
8
9
require "rails/generators"
9
10
10
11
# Who is setting this to true? :o
@@ -14,6 +15,7 @@ def create_request
14
15
env = Rack ::MockRequest . env_for ( "/example" )
15
16
request = ActionDispatch ::TestRequest . new ( env )
16
17
request . host = "example.com"
18
+ request . session = ActionController ::TestSession . new
17
19
18
20
class << request
19
21
def cookie_jar
@@ -46,7 +48,7 @@ def capture_stderr
46
48
end
47
49
48
50
def reload_constant ( name )
49
- ActiveSupport :: Dependencies . remove_constant ( name . to_s )
51
+ Object . send ( :remove_const , name . to_s )
50
52
path = ActiveSupport ::Dependencies . search_for_file ( name . to_s . underscore ) . sub! ( /\. rb\z / , "" )
51
53
ActiveSupport ::Dependencies . loaded . delete ( path )
52
54
Object . const_get ( name )
@@ -112,10 +114,11 @@ def create!
112
114
113
115
Rails ::Generators ::AppGenerator . new ( [ path ] ,
114
116
quiet : true ,
115
- api : ENV [ "RAILS_API_ONLY" ] . to_i . nonzero ?,
117
+ api : rails_api_only ?,
116
118
skip_active_job : true ,
117
119
skip_active_storage : true ,
118
120
skip_action_cable : true ,
121
+ skip_action_mailer : true ,
119
122
skip_bootsnap : true ,
120
123
skip_bundle : true ,
121
124
skip_puma : true ,
@@ -128,6 +131,13 @@ def create!
128
131
skip_turbolinks : true ,
129
132
) . invoke_all
130
133
134
+ if rails_api_only?
135
+ project_root = Pathname . new ( __dir__ . to_s ) . parent
136
+ manifest_path = project_root . join ( path ) . join ( "app/assets/config/manifest.js" )
137
+ manifest_path . dirname . mkpath
138
+ manifest_path . write ( project_root . join ( "app/assets/config/manifest.js" ) . read )
139
+ end
140
+
131
141
# Remove bootsnap if present, this interferes with reloading apps.
132
142
boot_path = File . expand_path ( "../../" + path + "/config/boot.rb" , __FILE__ )
133
143
File . write ( boot_path , File . read ( boot_path ) . gsub ( "require 'bootsnap/setup'" , "" ) )
@@ -146,11 +156,17 @@ def load!
146
156
require "rails"
147
157
require "flipflop/engine"
148
158
149
- ActiveSupport ::Dependencies . autoloaded_constants . clear
159
+ ActiveSupport ::Dependencies . autoload_paths = [ ]
160
+ ActiveSupport ::Dependencies . autoload_once_paths = [ ]
150
161
load File . expand_path ( "../../#{ path } /config/application.rb" , __FILE__ )
162
+ Zeitwerk ::Registry . loaders . each ( &:unregister ) if defined? ( Zeitwerk )
151
163
load File . expand_path ( "../../#{ path } /config/environments/test.rb" , __FILE__ )
152
164
Rails . application . config . cache_classes = false
153
- Rails . application . config . action_view . raise_on_missing_translations = true
165
+ if Gem ::Version . new ( Rails . version ) < Gem ::Version . new ( '7' )
166
+ Rails . application . config . action_view . raise_on_missing_translations = true
167
+ else
168
+ Rails . application . config . i18n . raise_on_missing_translations = true
169
+ end
154
170
Rails . application . config . i18n . enforce_available_locales = false
155
171
Rails . application . config . autoloader = :classic # Disable Zeitwerk in Rails 6+
156
172
@@ -166,7 +182,9 @@ def load!
166
182
Rails . application . config . action_view . finalize_compiled_template_methods = ActionView ::Railtie ::NULL_OPTION
167
183
end
168
184
185
+ Rails . application . config . active_support . remove_deprecated_time_with_zone_name = false
169
186
Rails . application . initialize!
187
+ Zeitwerk ::Registry . loaders . each ( &:unregister ) if defined? ( Zeitwerk )
170
188
171
189
I18n . locale = :en
172
190
@@ -202,12 +220,16 @@ def unload!
202
220
Rails . instance_variable_set ( :@application , nil )
203
221
I18n ::Railtie . instance_variable_set ( :@i18n_inited , false )
204
222
205
- ActiveSupport :: Dependencies . remove_constant ( name . camelize )
206
- ActiveSupport :: Dependencies . remove_constant ( "Flipflop:: Feature")
223
+ Object . send ( :remove_const , name . camelize )
224
+ Flipflop . send ( :remove_const , " Feature")
207
225
end
208
226
209
227
private
210
228
229
+ def rails_api_only?
230
+ ENV [ "RAILS_API_ONLY" ] . to_i . nonzero?
231
+ end
232
+
211
233
def path
212
234
"tmp/" + name
213
235
end
0 commit comments