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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
|
require "spec_helper"
describe "bundle install with gem sources" do
describe "the simple case" do
it "prints output and returns if no dependencies are specified" do
gemfile <<-G
source "file://#{gem_repo1}"
G
bundle :install
out.should =~ /no dependencies/
end
it "does not make a lockfile if the install fails" do
install_gemfile <<-G, :expect_err => true
raise StandardError, "FAIL"
G
err.should =~ /FAIL \(StandardError\)/
bundled_app("Gemfile.lock").should_not exist
end
it "doesn't delete the lockfile if one already exists" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack'
G
lockfile = File.read(bundled_app("Gemfile.lock"))
install_gemfile <<-G, :expect_err => true
raise StandardError, "FAIL"
G
File.read(bundled_app("Gemfile.lock")).should == lockfile
end
it "fetches gems" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack'
G
default_bundle_path("gems/rack-1.0.0").should exist
should_be_installed("rack 1.0.0")
end
it "raises an appropriate error when gems are specified using symbols" do
status = install_gemfile(<<-G, :exit_status => true)
source "file://#{gem_repo1}"
gem :rack
G
status.should == 4
end
it "pulls in dependencies" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rails"
G
should_be_installed "actionpack 2.3.2", "rails 2.3.2"
end
it "does the right version" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", "0.9.1"
G
should_be_installed "rack 0.9.1"
end
it "does not install the development dependency" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "with_development_dependency"
G
should_be_installed "with_development_dependency 1.0.0"
should_not_be_installed "activesupport 2.3.5"
end
it "resolves correctly" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "activemerchant"
gem "rails"
G
should_be_installed "activemerchant 1.0", "activesupport 2.3.2", "actionpack 2.3.2"
end
it "activates gem correctly according to the resolved gems" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "activesupport", "2.3.5"
G
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "activemerchant"
gem "rails"
G
should_be_installed "activemerchant 1.0", "activesupport 2.3.2", "actionpack 2.3.2"
end
it "does not reinstall any gem that is already available locally" do
system_gems "activesupport-2.3.2"
build_repo2 do
build_gem "activesupport", "2.3.2" do |s|
s.write "lib/activesupport.rb", "ACTIVESUPPORT = 'fail'"
end
end
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "activerecord", "2.3.2"
G
should_be_installed "activesupport 2.3.2"
end
it "works when the gemfile specifies gems that only exist in the system" do
build_gem "foo", :to_system => true
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
gem "foo"
G
should_be_installed "rack 1.0.0", "foo 1.0.0"
end
it "prioritizes local gems over remote gems" do
build_gem 'rack', '1.0.0', :to_system => true do |s|
s.add_dependency "activesupport", "2.3.5"
end
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
should_be_installed "rack 1.0.0", "activesupport 2.3.5"
end
describe "with a gem that installs multiple platforms" do
it "installs gems for the local platform as first choice" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "platform_specific"
G
run "require 'platform_specific' ; puts PLATFORM_SPECIFIC"
out.should == "1.0.0 #{Gem::Platform.local}"
end
it "falls back on plain ruby" do
simulate_platform "foo-bar-baz"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "platform_specific"
G
run "require 'platform_specific' ; puts PLATFORM_SPECIFIC"
out.should == "1.0.0 RUBY"
end
it "installs gems for java" do
simulate_platform "java"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "platform_specific"
G
run "require 'platform_specific' ; puts PLATFORM_SPECIFIC"
out.should == "1.0.0 JAVA"
end
it "installs gems for windows" do
simulate_platform mswin
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "platform_specific"
G
run "require 'platform_specific' ; puts PLATFORM_SPECIFIC"
out.should == "1.0.0 MSWIN"
end
end
it "finds gems in multiple sources" do
build_repo2
update_repo2
install_gemfile <<-G
source "file://#{gem_repo1}"
source "file://#{gem_repo2}"
gem "activesupport", "1.2.3"
gem "rack", "1.2"
G
should_be_installed "rack 1.2", "activesupport 1.2.3"
end
it "gives a useful error if no sources are set" do
install_gemfile <<-G
gem "rack"
G
bundle :install, :expect_err => true
out.should =~ /Your Gemfile doesn't have any sources/i
end
end
describe "when prerelease gems are available" do
it "finds prereleases" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "not_released"
G
should_be_installed "not_released 1.0.pre"
end
it "uses regular releases if available" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "has_prerelease"
G
should_be_installed "has_prerelease 1.0"
end
it "uses prereleases if requested" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "has_prerelease", "1.1.pre"
G
should_be_installed "has_prerelease 1.1.pre"
end
end
describe "when prerelease gems are not available" do
it "still works" do
build_repo3
install_gemfile <<-G
source "file://#{gem_repo3}"
gem "rack"
G
should_be_installed "rack 1.0"
end
end
describe "when BUNDLE_PATH is set" do
before :each do
build_lib "rack", "1.0.0", :to_system => true do |s|
s.write "lib/rack.rb", "raise 'FAIL'"
end
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
end
it "installs gems to a path if one is specified" do
ENV["BUNDLE_PATH"] = bundled_app("vendor2").to_s
bundle "install vendor"
vendored_gems("gems/rack-1.0.0").should be_directory
bundled_app("vendor2").should_not be_directory
should_be_installed "rack 1.0.0"
end
it "installs gems to BUNDLE_PATH" do
ENV['BUNDLE_PATH'] = bundled_app('vendor').to_s
bundle :install
bundled_app('vendor/gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
it "installs gems to BUNDLE_PATH from .bundle/config" do
config "BUNDLE_PATH" => bundled_app("vendor").to_s
bundle :install
vendored_gems('gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
it "installs gems to BUNDLE_PATH relative to root when relative" do
ENV['BUNDLE_PATH'] = 'vendor'
FileUtils.mkdir_p bundled_app('lol')
Dir.chdir(bundled_app('lol')) do
bundle :install
end
bundled_app('vendor/gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
it "sets BUNDLE_PATH as the first argument to bundle install" do
bundle "install ./vendor"
vendored_gems('gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
it "disables system gems when passing a path to install" do
# This is so that vendored gems can be distributed to others
build_gem "rack", "1.1.0", :to_system => true
bundle "install ./vendor"
vendored_gems('gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
end
describe "when passing in a Gemfile via --gemfile" do
it "finds the gemfile" do
gemfile bundled_app("NotGemfile"), <<-G
source "file://#{gem_repo1}"
gem 'rack'
G
bundle :install, :gemfile => bundled_app("NotGemfile")
ENV['BUNDLE_GEMFILE'] = "NotGemfile"
should_be_installed "rack 1.0.0"
end
end
describe "when requesting a quite install via --quiet" do
it "should be quiet if there are no warnings" do
gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack'
G
bundle :install, :quiet => true
out.should == ""
end
it "should still display warnings" do
gemfile <<-G
gem 'rack'
G
bundle :install, :quiet => true
out.should =~ /doesn't have any sources/
end
end
describe "when disabling system gems" do
before :each do
build_gem "rack", "1.0.0", :to_system => true do |s|
s.write "lib/rack.rb", "puts 'FAIL'"
end
end
it "does not use available system gems" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
bundle "install vendor --disable-shared-gems"
should_be_installed "rack 1.0.0"
end
it "remembers to disable system gems after the first time" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
bundle "install vendor --disable-shared-gems"
FileUtils.rm_rf bundled_app('vendor')
bundle "install"
vendored_gems('gems/rack-1.0.0').should be_directory
should_be_installed "rack 1.0.0"
end
end
describe "when loading only the default group" do
it "should not load all groups" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
gem "activesupport", :group => :development
G
ruby <<-R
require "bundler"
Bundler.setup :default
Bundler.require :default
puts RACK
begin
require "activesupport"
rescue LoadError
puts "no activesupport"
end
R
out.should include("1.0")
out.should include("no activesupport")
end
end
describe "when a gem has a YAML gemspec" do
before :each do
build_repo2 do
build_gem "yaml_spec", :gemspec => :yaml
end
end
it "still installs correctly" do
gemfile <<-G
source "file://#{gem_repo2}"
gem "yaml_spec"
G
bundle :install
err.should be_empty
end
end
describe "when the gem has an architecture in its platform" do
it "still installs correctly" do
simulate_platform mswin
gemfile <<-G
# Set up pretend http gem server with FakeWeb
$LOAD_PATH.unshift '#{Dir[base_system_gems.join("gems/fakeweb*/lib")].first}'
require 'fakeweb'
FakeWeb.allow_net_connect = false
files = [ 'specs.4.8.gz',
'prerelease_specs.4.8.gz',
'quick/Marshal.4.8/rcov-1.0-mswin32.gemspec.rz',
'gems/rcov-1.0-mswin32.gem' ]
files.each do |file|
FakeWeb.register_uri(:get, "http://localgemserver.com/\#{file}",
:body => File.read("#{gem_repo1}/\#{file}"))
end
FakeWeb.register_uri(:get, "http://localgemserver.com/gems/rcov-1.0-x86-mswin32.gem",
:status => ["404", "Not Found"])
# Try to install gem with nil arch
source "http://localgemserver.com/"
gem "rcov"
G
bundle :install
should_be_installed "rcov 1.0.0"
end
end
describe "bundler dependencies" do
before(:each) do
build_repo2 do
build_gem "rails", "3.0" do |s|
s.add_dependency "bundler", ">= 0.9.0.pre"
end
build_gem "bundler", "0.9.1"
build_gem "bundler", Bundler::VERSION
end
end
it "are forced to the current bundler version" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rails", "3.0"
G
should_be_installed "bundler #{Bundler::VERSION}"
end
it "are not added if not already present" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
should_not_be_installed "bundler 0.9.1"
end
it "causes a conflict if explicitly requesting a different version" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rails", "3.0"
gem "bundler", "0.9.2"
G
nice_error = <<-E.strip.gsub(/^ {8}/, '')
Fetching source index for file:#{gem_repo2}/
Bundler could not find compatible versions for gem "bundler":
In Gemfile:
bundler (= 0.9.2)
In snapshot (Gemfile.lock):
bundler (#{Bundler::VERSION})
E
out.should == nice_error
end
it "works for gems with multiple versions in its dependencies" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "multiple_versioned_deps"
G
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "multiple_versioned_deps"
gem "rack"
G
should_be_installed "multiple_versioned_deps 1.0.0"
end
it "includes bundler in the bundle when it's a child dependency" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rails", "3.0"
G
run "begin; gem 'bundler'; puts 'WIN'; rescue Gem::LoadError; puts 'FAIL'; end"
out.should == "WIN"
end
it "allows gem 'bundler' when Bundler is not in the Gemfile or its dependencies" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rack"
G
run "begin; gem 'bundler'; puts 'WIN'; rescue Gem::LoadError => e; puts e.backtrace; end"
out.should == "WIN"
end
it "causes a conflict if child dependencies conflict" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "activemerchant"
gem "rails_fail"
G
nice_error = <<-E.strip.gsub(/^ {8}/, '')
Fetching source index for file:#{gem_repo2}/
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
activemerchant depends on
activesupport (>= 2.0.0)
rails_fail depends on
activesupport (1.2.3)
E
out.should == nice_error
end
it "causes a conflict if a child dependency conflicts with the Gemfile" do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rails_fail"
gem "activesupport", "2.3.5"
G
nice_error = <<-E.strip.gsub(/^ {8}/, '')
Fetching source index for file:#{gem_repo2}/
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
rails_fail depends on
activesupport (= 1.2.3)
activesupport (2.3.5)
E
out.should == nice_error
end
it "can install dependencies even if " do
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "rails", "3.0"
G
simulate_bundler_version "10.0.0"
#simulate_new_machine
bundle "check"
out.should == "The Gemfile's dependencies are satisfied"
end
end
end
|