summaryrefslogtreecommitdiff
path: root/spec/install/gems_spec.rb
blob: 79d32818b80847d06e98df08cdcf7ec35b22e674 (plain)
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
require File.expand_path('../../spec_helper', __FILE__)

describe "gemfile install with gem sources" 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 "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 "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

  it "installs gems for the correct platform" do
    Gem.platforms = [rb]
    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 "works with repositories that don't provide prerelease_specs.4.8.gz" do
    build_repo2
    Dir["#{gem_repo2}/prerelease*"].each { |f| File.delete(f) }

    install_gemfile <<-G
      source "file://#{gem_repo2}"
      gem "rack"
    G

    out.should include("Source 'file:#{gem_repo2}' does not support prerelease gems")
    should_be_installed "rack 1.0.0"
  end

  describe "with extra sources" do

    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

  end

  describe "when locked" do
    before(:each) do
      system_gems "rack-0.9.1" do
        gemfile <<-G
          source "file://#{gem_repo1}"
          gem "rack"
        G

        bundle :lock
      end
    end

    it "works" do
      system_gems [] do
        bundle :install
        should_be_installed "rack 0.9.1"
      end
    end

    it "allows --relock to update the dependencies" do
      system_gems "rack-0.9.1" do
        bundle "install --relock"
        should_be_installed "rack 1.0.0"
      end
    end

    it "regenerates .bundle/environment.rb if missing" do
      bundled_app('.bundle/environment.rb').delete
      system_gems [] do
        bundle :install
        bundled_app('.bundle/environment.rb').should exist
        should_be_installed "rack 0.9.1"
      end
    end
  end

  describe "with BUNDLE_PATH 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 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

      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 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"

      bundled_app('vendor/gems/rack-1.0.0').should be_directory
      should_be_installed "rack 1.0.0"
    end

    it "does not disable system gems when specifying a path to install to" do
      build_gem "rack", "1.1.0", :to_system => true
      bundle "install ./vendor"

      bundled_app('vendor/gems/rack-1.1.0').should_not be_directory
      should_be_installed "rack 1.1.0"
    end
  end

  describe "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 --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/gems --disable-shared-gems"
      FileUtils.rm_rf bundled_app('vendor/gems')
      bundle "install"

      bundled_app('vendor/gems/gems/rack-1.0.0').should be_directory
      should_be_installed "rack 1.0.0"
    end
  end

  describe "when packed and locked" do
    it "does not hit the remote at all" do
      build_repo2
      install_gemfile <<-G
        source "file://#{gem_repo2}"
        gem "rack"
      G

      bundle :lock
      bundle :pack

      system_gems []
      FileUtils.rm_rf gem_repo2

      bundle :install
      should_be_installed "rack 1.0.0"
    end
  end

  describe "when specifying groups not excluded" do
    before :each do
      install_gemfile <<-G
        source "file://#{gem_repo1}"
        gem "rack"
        group :emo do
          gem "activesupport", "2.3.5"
        end
      G
    end

    it "installs gems in the default group" do
      should_be_installed "rack 1.0.0"
    end

    it "installs gems in other groups" do
      should_be_installed "activesupport 2.3.5"
    end

    it "sets up everything if Bundler.setup is used with no groups" do
      out = run("require 'rack'; puts RACK")
      out.should == '1.0.0'

      out = run("require 'activesupport'; puts ACTIVESUPPORT")
      out.should == '2.3.5'
    end
  end

  describe "when excluding groups" do
    before :each do
      install_gemfile <<-G, 'without' => 'emo'
        source "file://#{gem_repo1}"
        gem "rack"
        group :emo do
          gem "activesupport", "2.3.5"
        end
      G
    end

    it "installs gems in the default group" do
      should_be_installed "rack 1.0.0", :groups => [:default]
    end

    it "does not install gems from the excluded group" do
      should_not_be_installed "activesupport 2.3.5", :groups => [:default]
    end

    it "allows Bundler.setup for specific groups" do
      out = run("require 'rack'; puts RACK", :default)
      out.should == '1.0.0'
    end
  end
end