1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
require "bundled_gems"
require "bundler"
require "fileutils"
require_relative "bundler/support/builders"
require_relative "bundler/support/helpers"
require_relative "bundler/support/path"
module Gem
def self.ruby=(ruby)
@ruby = ruby
end
end
RSpec.configure do |config|
config.include Spec::Builders
config.include Spec::Helpers
config.include Spec::Path
config.before(:suite) do
Gem.ruby = ENV["RUBY"] if ENV["RUBY"]
ENV["TEST_BUNDLED_GEMS"] = "true"
require_relative "bundler/support/rubygems_ext"
Spec::Rubygems.test_setup
Spec::Helpers.install_dev_bundler
end
config.around(:each) do |example|
FileUtils.cp_r Spec::Path.pristine_system_gem_path, Spec::Path.system_gem_path
FileUtils.mkdir_p Spec::Path.base_system_gem_path.join("gems")
%w[sinatra rack tilt rack-protection rack-session rack-test mustermann base64 compact_index].each do |gem|
path = Dir[File.expand_path("../.bundle/gems/#{gem}-*", __dir__)].map(&:to_s).first
FileUtils.cp_r path, Spec::Path.base_system_gem_path.join("gems")
end
with_gem_path_as(system_gem_path) do
Bundler.ui.silence { example.run }
all_output = all_commands_output
if example.exception && !all_output.empty?
message = all_output + "\n" + example.exception.message
(class << example.exception; self; end).send(:define_method, :message) do
message
end
end
end
ensure
reset!
end
config.after :suite do
FileUtils.rm_rf Spec::Path.pristine_system_gem_path
end
end
RSpec.describe "bundled_gems.rb" do
def script(code, options = {})
options[:artifice] ||= "compact_index"
ruby("require 'bundler/inline'\n\n" + code, options)
end
it "Show warning require and LoadError" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
end
begin
require "csv"
rescue LoadError
end
require "ostruct"
RUBY
expect(err).to include(/csv was loaded from (.*) from Ruby 3.4.0/)
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when bundled gems called as dependency" do
build_lib "activesupport", "7.0.7.2" do |s|
s.write "lib/active_support/all.rb", "require 'ostruct'"
end
script <<-RUBY, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo1.to_s }
gemfile do
source "https://gem.repo1"
path "#{lib_path}" do
gem "activesupport", "7.0.7.2"
end
end
require "active_support/all"
RUBY
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
# TODO: We should assert caller location like below:
# $GEM_HOME/gems/activesupport-7.0.7.2/lib/active_support/core_ext/big_decimal.rb:3: warning: bigdecimal ...
end
it "Show warning dash gem like net/smtp" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
end
begin
require "net/smtp"
rescue LoadError
end
RUBY
expect(err).to include(/net\/smtp was loaded from (.*) from Ruby 3.1.0/)
expect(err).to include("You can add net-smtp")
end
it "Show warning sub-feature like fiddle/import" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
end
require "fiddle/import"
RUBY
expect(err).to include(/fiddle was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when bundle exec with ruby and script" do
code = <<-RUBY
require "ostruct"
RUBY
create_file("script.rb", code)
create_file("Gemfile", "source 'https://rubygems.org'")
bundle "exec ruby script.rb"
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when bundle exec with shebang's script" do
code = <<-RUBY
#!/usr/bin/env ruby
require "ostruct"
RUBY
create_file("script.rb", code)
FileUtils.chmod(0o777, bundled_app("script.rb"))
create_file("Gemfile", "source 'https://rubygems.org'")
bundle "exec ./script.rb"
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when bundle exec with -r option" do
create_file("Gemfile", "source 'https://rubygems.org'")
bundle "exec ruby -rostruct -e ''"
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when warn is not the standard one in the current scope" do
script <<-RUBY
module My
def warn(msg)
end
def my
gemfile do
source "https://rubygems.org"
end
require "ostruct"
end
extend self
end
My.my
RUBY
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
end
it "Show warning when bundled gems called as dependency" do
build_lib "activesupport", "7.0.7.2" do |s|
s.write "lib/active_support/all.rb", "require 'ostruct'"
end
build_lib "ostruct", "1.0.0" do |s|
s.write "lib/ostruct.rb", "puts 'ostruct'"
end
script <<-RUBY, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo1.to_s }
gemfile do
source "https://gem.repo1"
path "#{lib_path}" do
gem "activesupport", "7.0.7.2"
gem "ostruct"
end
end
require "active_support/all"
RUBY
expect(err).to be_empty
end
it "Show warning with bootsnap cases" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
# gem "bootsnap", require: false
end
# require 'bootsnap'
# Bootsnap.setup(cache_dir: 'tmp/cache')
# bootsnap expand required feature to full path
# require 'csv'
require Gem::BUNDLED_GEMS::LIBDIR + 'ostruct'
RUBY
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
# TODO: We should assert caller location like below:
# test_warn_bootsnap.rb:14: warning: ...
end
it "Show warning with bootsnap for gem with native extension" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
# gem "bootsnap", require: false
end
# require 'bootsnap'
# Bootsnap.setup(cache_dir: 'tmp/cache')
# bootsnap expand required feature to full path
# require 'fiddle'
require Gem::BUNDLED_GEMS::ARCHDIR + "fiddle"
RUBY
expect(err).to include(/fiddle was loaded from (.*) from Ruby 3.5.0/)
# TODO: We should assert caller location like below:
# test_warn_bootsnap_rubyarchdir_gem.rb:14: warning: ...
end
it "Show warning with bootsnap and some gem in Gemfile" do
build_lib "childprocess", "5.0.0" do |s|
# bootsnap expand required feature to full path
# require 'logger'
rubylibpath = File.expand_path(File.join(__dir__, "..", "lib"))
s.write "lib/childprocess.rb", "require '#{rubylibpath}/logger'"
end
script <<-RUBY
gemfile do
source "https://rubygems.org"
# gem "bootsnap", require: false
path "#{lib_path}" do
gem "childprocess", "5.0.0"
end
end
# require 'bootsnap'
# Bootsnap.setup(cache_dir: 'tmp/cache')
# bootsnap expand required feature to full path
# require 'childprocess'
require Gem.loaded_specs["childprocess"].full_gem_path + '/lib/childprocess'
RUBY
expect(err).to include(/logger was loaded from (.*) from Ruby 3.5.0/)
# TODO: We should assert caller location like below:
# $GEM_HOME/gems/childprocess-5.0.0/lib/childprocess.rb:7: warning:
end
it "Show warning with zeitwerk" do
libpath = Dir[File.expand_path("../.bundle/gems/{zeitwerk}-*/lib", __dir__)].map(&:to_s).first
code = <<-RUBY
$LOAD_PATH.unshift("#{libpath}")
require "zeitwerk"
loader = Zeitwerk::Loader.for_gem(warn_on_extra_files: false)
loader.setup
require 'ostruct'
RUBY
create_file("script.rb", code)
create_file("Gemfile", "source 'https://rubygems.org'")
bundle "exec ruby script.rb"
expect(err).to include(/ostruct was loaded from (.*) from Ruby 3.5.0/)
# TODO: We should assert caller location like below:
# test_warn_zeitwerk.rb:15: warning: ...
end
it "Don't show warning fiddle/import when fiddle on Gemfile" do
build_lib "fiddle", "1.0.0" do |s|
s.write "lib/fiddle.rb", "puts 'fiddle'"
s.write "lib/fiddle/import.rb", "puts 'fiddle/import'"
end
script <<-RUBY, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo1.to_s }
gemfile do
source "https://gem.repo1"
path "#{lib_path}" do
gem "fiddle"
end
end
require "fiddle/import"
RUBY
expect(err).to be_empty
end
it "Don't show warning with net/smtp when net-smtp on Gemfile" do
build_lib "net-smtp", "1.0.0" do |s|
s.write "lib/net/smtp.rb", "puts 'net-smtp'"
end
script <<-RUBY, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo1.to_s }
gemfile do
source "https://gem.repo1"
path "#{lib_path}" do
gem "net-smtp"
end
end
require "net/smtp"
RUBY
expect(err).to be_empty
end
it "Don't show warning for reline when using irb from standard library" do
create_file("Gemfile", "source 'https://rubygems.org'")
bundle "exec ruby -rirb -e ''"
expect(err).to include(/irb was loaded from (.*) from Ruby 3.5.0/)
expect(err).to_not include(/reline was loaded from (.*) from Ruby 3.5.0/)
end
end
|