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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
|
require "spec_helper"
describe "Bundler.setup" do
describe "with no arguments" do
it "makes all groups available" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :group => :test
G
ruby <<-RUBY
require 'rubygems'
require 'bundler'
Bundler.setup
require 'rack'
puts RACK
RUBY
expect(err).to eq("")
expect(out).to eq("1.0.0")
end
end
describe "when called with groups" do
before(:each) do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "yard"
gem "rack", :group => :test
G
end
it "doesn't make all groups available" do
ruby <<-RUBY
require 'rubygems'
require 'bundler'
Bundler.setup(:default)
begin
require 'rack'
rescue LoadError
puts "WIN"
end
RUBY
expect(err).to eq("")
expect(out).to eq("WIN")
end
it "accepts string for group name" do
ruby <<-RUBY
require 'rubygems'
require 'bundler'
Bundler.setup(:default, 'test')
require 'rack'
puts RACK
RUBY
expect(err).to eq("")
expect(out).to eq("1.0.0")
end
it "leaves all groups available if they were already" do
ruby <<-RUBY
require 'rubygems'
require 'bundler'
Bundler.setup
Bundler.setup(:default)
require 'rack'
puts RACK
RUBY
expect(err).to eq("")
expect(out).to eq("1.0.0")
end
it "leaves :default available if setup is called twice" do
ruby <<-RUBY
require 'rubygems'
require 'bundler'
Bundler.setup(:default)
Bundler.setup(:default, :test)
begin
require 'yard'
puts "WIN"
rescue LoadError
puts "FAIL"
end
RUBY
expect(err).to eq("")
expect(out).to match("WIN")
end
it "handles multiple non-additive invocations" do
ruby <<-RUBY
require 'bundler'
Bundler.setup(:default, :test)
Bundler.setup(:default)
require 'rack'
puts "FAIL"
RUBY
expect(err).to match("rack")
expect(err).to match("LoadError")
expect(out).not_to match("FAIL")
end
end
it "raises if the Gemfile was not yet installed" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
ruby <<-R
require 'rubygems'
require 'bundler'
begin
Bundler.setup
puts "FAIL"
rescue Bundler::GemNotFound
puts "WIN"
end
R
expect(out).to eq("WIN")
end
it "doesn't create a Gemfile.lock if the setup fails" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
ruby <<-R, :expect_err => true
require 'rubygems'
require 'bundler'
Bundler.setup
R
expect(bundled_app("Gemfile.lock")).not_to exist
end
it "doesn't change the Gemfile.lock if the setup fails" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
lockfile = File.read(bundled_app("Gemfile.lock"))
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
gem "nosuchgem", "10.0"
G
ruby <<-R, :expect_err => true
require 'rubygems'
require 'bundler'
Bundler.setup
R
expect(File.read(bundled_app("Gemfile.lock"))).to eq(lockfile)
end
it "makes a Gemfile.lock if setup succeeds" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
File.read(bundled_app("Gemfile.lock"))
FileUtils.rm(bundled_app("Gemfile.lock"))
run "1"
expect(bundled_app("Gemfile.lock")).to exist
end
it "uses BUNDLE_GEMFILE to locate the gemfile if present" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
gemfile bundled_app("4realz"), <<-G
source "file://#{gem_repo1}"
gem "activesupport", "2.3.5"
G
ENV["BUNDLE_GEMFILE"] = bundled_app("4realz").to_s
bundle :install
should_be_installed "activesupport 2.3.5"
end
it "prioritizes gems in BUNDLE_PATH over gems in GEM_HOME" do
ENV["BUNDLE_PATH"] = bundled_app(".bundle").to_s
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", "1.0.0"
G
build_gem "rack", "1.0", :to_system => true do |s|
s.write "lib/rack.rb", "RACK = 'FAIL'"
end
should_be_installed "rack 1.0.0"
end
describe "integrate with rubygems" do
describe "by replacing #gem" do
before :each do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", "0.9.1"
G
end
it "replaces #gem but raises when the gem is missing" do
run <<-R
begin
gem "activesupport"
puts "FAIL"
rescue LoadError
puts "WIN"
end
R
expect(out).to eq("WIN")
end
it "version_requirement is now deprecated in rubygems 1.4.0+ when gem is missing" do
run <<-R, :expect_err => true
begin
gem "activesupport"
puts "FAIL"
rescue LoadError
puts "WIN"
end
R
expect(err).to be_empty
end
it "replaces #gem but raises when the version is wrong" do
run <<-R
begin
gem "rack", "1.0.0"
puts "FAIL"
rescue LoadError
puts "WIN"
end
R
expect(out).to eq("WIN")
end
it "version_requirement is now deprecated in rubygems 1.4.0+ when the version is wrong" do
run <<-R, :expect_err => true
begin
gem "rack", "1.0.0"
puts "FAIL"
rescue LoadError
puts "WIN"
end
R
expect(err).to be_empty
end
end
describe "by hiding system gems" do
before :each do
system_gems "activesupport-2.3.5"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "yard"
G
end
it "removes system gems from Gem.source_index" do
run "require 'yard'"
expect(out).to eq("bundler-#{Bundler::VERSION}\nyard-1.0")
end
context "when the ruby stdlib is a substring of Gem.path" do
it "does not reject the stdlib from $LOAD_PATH" do
substring = "/" + $LOAD_PATH.find {|p| p =~ /vendor_ruby/ }.split("/")[2]
run "puts 'worked!'", :env => { "GEM_PATH" => substring }
expect(out).to eq("worked!")
end
end
end
end
describe "with paths" do
it "activates the gems in the path source" do
system_gems "rack-1.0.0"
build_lib "rack", "1.0.0" do |s|
s.write "lib/rack.rb", "puts 'WIN'"
end
gemfile <<-G
path "#{lib_path("rack-1.0.0")}"
source "file://#{gem_repo1}"
gem "rack"
G
run "require 'rack'"
expect(out).to eq("WIN")
end
end
describe "with git" do
before do
build_git "rack", "1.0.0"
gemfile <<-G
gem "rack", :git => "#{lib_path("rack-1.0.0")}"
G
end
it "provides a useful exception when the git repo is not checked out yet" do
run "1", :expect_err => true
expect(err).to match(/the git source #{lib_path('rack-1.0.0')} is not yet checked out. Please run `bundle install`/i)
end
it "does not hit the git binary if the lockfile is available and up to date" do
bundle "install"
break_git!
ruby <<-R
require 'rubygems'
require 'bundler'
begin
Bundler.setup
puts "WIN"
rescue Exception => e
puts "FAIL"
end
R
expect(out).to eq("WIN")
end
it "provides a good exception if the lockfile is unavailable" do
bundle "install"
FileUtils.rm(bundled_app("Gemfile.lock"))
break_git!
ruby <<-R
require "rubygems"
require "bundler"
begin
Bundler.setup
puts "FAIL"
rescue Bundler::GitError => e
puts e.message
end
R
run "puts 'FAIL'", :expect_err => true
expect(err).not_to include "This is not the git you are looking for"
end
it "works even when the cache directory has been deleted" do
bundle "install --path vendor/bundle"
FileUtils.rm_rf vendored_gems("cache")
should_be_installed "rack 1.0.0"
end
it "does not randomly change the path when specifying --path and the bundle directory becomes read only" do
bundle "install --path vendor/bundle"
with_read_only("**/*") do
should_be_installed "rack 1.0.0"
end
end
it "finds git gem when default bundle path becomes read only" do
bundle "install"
with_read_only("#{Bundler.bundle_path}/**/*") do
should_be_installed "rack 1.0.0"
end
end
end
describe "when specifying local override" do
it "explodes if given path does not exist on runtime" do
build_git "rack", "0.8"
FileUtils.cp_r("#{lib_path("rack-0.8")}/.", lib_path("local-rack"))
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :branch => "master"
G
bundle %|config local.rack #{lib_path("local-rack")}|
bundle :install
expect(out).to match(/at #{lib_path('local-rack')}/)
FileUtils.rm_rf(lib_path("local-rack"))
run "require 'rack'", :expect_err => true
expect(err).to match(/Cannot use local override for rack-0.8 because #{Regexp.escape(lib_path('local-rack').to_s)} does not exist/)
end
it "explodes if branch is not given on runtime" do
build_git "rack", "0.8"
FileUtils.cp_r("#{lib_path("rack-0.8")}/.", lib_path("local-rack"))
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :branch => "master"
G
bundle %|config local.rack #{lib_path("local-rack")}|
bundle :install
expect(out).to match(/at #{lib_path('local-rack')}/)
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}"
G
run "require 'rack'", :expect_err => true
expect(err).to match(/because :branch is not specified in Gemfile/)
end
it "explodes on different branches on runtime" do
build_git "rack", "0.8"
FileUtils.cp_r("#{lib_path("rack-0.8")}/.", lib_path("local-rack"))
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :branch => "master"
G
bundle %|config local.rack #{lib_path("local-rack")}|
bundle :install
expect(out).to match(/at #{lib_path('local-rack')}/)
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :branch => "changed"
G
run "require 'rack'", :expect_err => true
expect(err).to match(/is using branch master but Gemfile specifies changed/)
end
it "explodes on refs with different branches on runtime" do
build_git "rack", "0.8"
FileUtils.cp_r("#{lib_path("rack-0.8")}/.", lib_path("local-rack"))
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :ref => "master", :branch => "master"
G
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", :git => "#{lib_path("rack-0.8")}", :ref => "master", :branch => "nonexistant"
G
bundle %|config local.rack #{lib_path("local-rack")}|
run "require 'rack'", :expect_err => true
expect(err).to match(/is using branch master but Gemfile specifies nonexistant/)
end
end
describe "when excluding groups" do
it "doesn't change the resolve if --without is used" do
install_gemfile <<-G, :without => :rails
source "file://#{gem_repo1}"
gem "activesupport"
group :rails do
gem "rails", "2.3.2"
end
G
install_gems "activesupport-2.3.5"
should_be_installed "activesupport 2.3.2", :groups => :default
end
it "remembers --without and does not bail on bare Bundler.setup" do
install_gemfile <<-G, :without => :rails
source "file://#{gem_repo1}"
gem "activesupport"
group :rails do
gem "rails", "2.3.2"
end
G
install_gems "activesupport-2.3.5"
should_be_installed "activesupport 2.3.2"
end
it "remembers --without and does not include groups passed to Bundler.setup" do
install_gemfile <<-G, :without => :rails
source "file://#{gem_repo1}"
gem "activesupport"
group :rack do
gem "rack"
end
group :rails do
gem "rails", "2.3.2"
end
G
should_not_be_installed "activesupport 2.3.2", :groups => :rack
should_be_installed "rack 1.0.0", :groups => :rack
end
end
# Unfortunately, gem_prelude does not record the information about
# activated gems, so this test cannot work on 1.9 :(
if RUBY_VERSION < "1.9"
describe "preactivated gems" do
it "raises an exception if a pre activated gem conflicts with the bundle" do
system_gems "thin-1.0", "rack-1.0.0"
build_gem "thin", "1.1", :to_system => true do |s|
s.add_dependency "rack"
end
gemfile <<-G
gem "thin", "1.0"
G
ruby <<-R
require 'rubygems'
gem "thin"
require 'bundler'
begin
Bundler.setup
puts "FAIL"
rescue Gem::LoadError => e
puts e.message
end
R
expect(out).to eq("You have already activated thin 1.1, but your Gemfile requires thin 1.0. Prepending `bundle exec` to your command may solve this.")
end
it "version_requirement is now deprecated in rubygems 1.4.0+" do
system_gems "thin-1.0", "rack-1.0.0"
build_gem "thin", "1.1", :to_system => true do |s|
s.add_dependency "rack"
end
gemfile <<-G
gem "thin", "1.0"
G
ruby <<-R, :expect_err => true
require 'rubygems'
gem "thin"
require 'bundler'
begin
Bundler.setup
puts "FAIL"
rescue Gem::LoadError => e
puts e.message
end
R
expect(err).to be_empty
end
end
end
# Rubygems returns loaded_from as a string
it "has loaded_from as a string on all specs" do
build_git "foo"
build_git "no-gemspec", :gemspec => false
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
gem "foo", :git => "#{lib_path("foo-1.0")}"
gem "no-gemspec", "1.0", :git => "#{lib_path("no-gemspec-1.0")}"
G
run <<-R
Gem.loaded_specs.each do |n, s|
puts "FAIL" unless s.loaded_from.is_a?(String)
end
R
expect(out).to be_empty
end
it "ignores empty gem paths" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
ENV["GEM_HOME"] = ""
bundle %{exec ruby -e "require 'set'"}
expect(err).to be_empty
end
it "should prepend gemspec require paths to $LOAD_PATH in order" do
update_repo2 do
build_gem("requirepaths") do |s|
s.write("lib/rq.rb", "puts 'yay'")
s.write("src/rq.rb", "puts 'nooo'")
s.require_paths = %w[lib src]
end
end
install_gemfile <<-G
source "file://#{gem_repo2}"
gem "requirepaths", :require => nil
G
run "require 'rq'"
expect(out).to eq("yay")
end
it "should clean $LOAD_PATH properly" do
gem_name = "very_simple_binary"
full_gem_name = gem_name + "-1.0"
ext_dir = File.join(tmp "extenstions", full_gem_name)
install_gem full_gem_name
install_gemfile <<-G
source "file://#{gem_repo1}"
G
ruby <<-R
if Gem::Specification.method_defined? :extension_dir
s = Gem::Specification.find_by_name '#{gem_name}'
s.extension_dir = '#{ext_dir}'
# Don't build extensions.
s.class.send(:define_method, :build_extensions) { nil }
end
require 'bundler'
gem '#{gem_name}'
puts $LOAD_PATH.count {|path| path =~ /#{gem_name}/} >= 2
Bundler.setup
puts $LOAD_PATH.count {|path| path =~ /#{gem_name}/} == 0
R
expect(out).to eq("true\ntrue")
end
it "stubs out Gem.refresh so it does not reveal system gems" do
system_gems "rack-1.0.0"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "activesupport"
G
run <<-R
puts Bundler.rubygems.find_name("rack").inspect
Gem.refresh
puts Bundler.rubygems.find_name("rack").inspect
R
expect(out).to eq("[]\n[]")
end
describe "when a vendored gem specification uses the :path option" do
it "should resolve paths relative to the Gemfile" do
path = bundled_app(File.join("vendor", "foo"))
build_lib "foo", :path => path
# If the .gemspec exists, then Bundler handles the path differently.
# See Source::Path.load_spec_files for details.
FileUtils.rm(File.join(path, "foo.gemspec"))
install_gemfile <<-G
gem 'foo', '1.2.3', :path => 'vendor/foo'
G
Dir.chdir(bundled_app.parent) do
run <<-R, :env => { "BUNDLE_GEMFILE" => bundled_app("Gemfile") }
require 'foo'
R
end
expect(err).to eq("")
end
it "should make sure the Bundler.root is really included in the path relative to the Gemfile" do
relative_path = File.join("vendor", Dir.pwd[1..-1], "foo")
absolute_path = bundled_app(relative_path)
FileUtils.mkdir_p(absolute_path)
build_lib "foo", :path => absolute_path
# If the .gemspec exists, then Bundler handles the path differently.
# See Source::Path.load_spec_files for details.
FileUtils.rm(File.join(absolute_path, "foo.gemspec"))
gemfile <<-G
gem 'foo', '1.2.3', :path => '#{relative_path}'
G
bundle :install
Dir.chdir(bundled_app.parent) do
run <<-R, :env => { "BUNDLE_GEMFILE" => bundled_app("Gemfile") }
require 'foo'
R
end
expect(err).to eq("")
end
end
describe "with git gems that don't have gemspecs" do
before :each do
build_git "no-gemspec", :gemspec => false
install_gemfile <<-G
gem "no-gemspec", "1.0", :git => "#{lib_path("no-gemspec-1.0")}"
G
end
it "loads the library via a virtual spec" do
run <<-R
require 'no-gemspec'
puts NOGEMSPEC
R
expect(out).to eq("1.0")
end
end
describe "with bundled and system gems" do
before :each do
system_gems "rack-1.0.0"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "activesupport", "2.3.5"
G
end
it "does not pull in system gems" do
run <<-R
require 'rubygems'
begin;
require 'rack'
rescue LoadError
puts 'WIN'
end
R
expect(out).to eq("WIN")
end
it "provides a gem method" do
run <<-R
gem 'activesupport'
require 'activesupport'
puts ACTIVESUPPORT
R
expect(out).to eq("2.3.5")
end
it "raises an exception if gem is used to invoke a system gem not in the bundle" do
run <<-R
begin
gem 'rack'
rescue LoadError => e
puts e.message
end
R
expect(out).to eq("rack is not part of the bundle. Add it to Gemfile.")
end
it "sets GEM_HOME appropriately" do
run "puts ENV['GEM_HOME']"
expect(out).to eq(default_bundle_path.to_s)
end
end
describe "with system gems in the bundle" do
before :each do
system_gems "rack-1.0.0"
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", "1.0.0"
gem "activesupport", "2.3.5"
G
end
it "sets GEM_PATH appropriately" do
run "puts Gem.path"
paths = out.split("\n")
expect(paths).to include(system_gem_path.to_s)
expect(paths).to include(default_bundle_path.to_s)
end
end
describe "with a gemspec that requires other files" do
before :each do
build_git "bar", :gemspec => false do |s|
s.write "lib/bar/version.rb", %{BAR_VERSION = '1.0'}
s.write "bar.gemspec", <<-G
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bar/version'
Gem::Specification.new do |s|
s.name = 'bar'
s.version = BAR_VERSION
s.summary = 'Bar'
s.files = Dir["lib/**/*.rb"]
s.author = 'no one'
end
G
end
gemfile <<-G
gem "bar", :git => "#{lib_path("bar-1.0")}"
G
end
it "evals each gemspec in the context of its parent directory" do
bundle :install
run "require 'bar'; puts BAR"
expect(out).to eq("1.0")
end
it "error intelligently if the gemspec has a LoadError" do
update_git "bar", :gemspec => false do |s|
s.write "bar.gemspec", "require 'foobarbaz'"
end
bundle :install
expect(out).to include("was a LoadError while loading bar.gemspec")
expect(out).to include("foobarbaz")
expect(out).to include("bar.gemspec:1")
expect(out).to include("try to require a relative path") if RUBY_VERSION >= "1.9"
end
it "evals each gemspec with a binding from the top level" do
bundle "install"
ruby <<-RUBY
require 'bundler'
def Bundler.require(path)
raise "LOSE"
end
Bundler.load
RUBY
expect(err).to eq("")
expect(out).to eq("")
end
end
describe "when Bundler is bundled" do
it "doesn't blow up" do
install_gemfile <<-G
gem "bundler", :path => "#{File.expand_path("..", lib)}"
G
bundle %|exec ruby -e "require 'bundler'; Bundler.setup"|
expect(err).to be_empty
end
end
describe "when BUNDLED WITH" do
def lock_with(bundler_version = nil)
lock = <<-L
GEM
remote: file:#{gem_repo1}/
specs:
rack (1.0.0)
PLATFORMS
#{generic(Gem::Platform.local)}
DEPENDENCIES
rack
L
if bundler_version
lock << "\n BUNDLED WITH\n #{bundler_version}\n"
end
lock
end
before do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
end
context "is not present" do
it "does not change the lock" do
lockfile lock_with(nil)
ruby "require 'bundler/setup'"
lockfile_should_be lock_with(nil)
end
end
context "is newer" do
it "does not change the lock or warn" do
lockfile lock_with(Bundler::VERSION.succ)
ruby "require 'bundler/setup'"
expect(out).to eq("")
expect(err).to eq("")
lockfile_should_be lock_with(Bundler::VERSION.succ)
end
end
context "is older" do
it "does not change the lock" do
lockfile lock_with("1.10.1")
ruby "require 'bundler/setup'"
lockfile_should_be lock_with("1.10.1")
end
end
end
end
|