2018-11-02 23:07:56 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
RSpec.describe "bundle install with a mirror configured" do
|
|
|
|
describe "when the mirror does not match the gem source" do
|
|
|
|
before :each do
|
|
|
|
gemfile <<-G
|
2019-05-06 18:06:21 +02:00
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
2018-11-02 23:07:56 +00:00
|
|
|
|
|
|
|
gem "rack"
|
|
|
|
G
|
2019-04-14 06:01:35 +00:00
|
|
|
bundle "config set --local mirror.http://gems.example.org http://gem-mirror.example.org"
|
2018-11-02 23:07:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "installs from the normal location" do
|
|
|
|
bundle :install
|
2019-05-06 18:06:21 +02:00
|
|
|
expect(out).to include("Fetching source index from #{file_uri_for(gem_repo1)}")
|
2018-11-02 23:07:56 +00:00
|
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when the gem source matches a configured mirror" do
|
|
|
|
before :each do
|
|
|
|
gemfile <<-G
|
|
|
|
# This source is bogus and doesn't have the gem we're looking for
|
2019-05-06 18:06:21 +02:00
|
|
|
source "#{file_uri_for(gem_repo2)}"
|
2018-11-02 23:07:56 +00:00
|
|
|
|
|
|
|
gem "rack"
|
|
|
|
G
|
2019-05-06 18:06:21 +02:00
|
|
|
bundle "config set --local mirror.#{file_uri_for(gem_repo2)} #{file_uri_for(gem_repo1)}"
|
2018-11-02 23:07:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "installs the gem from the mirror" do
|
|
|
|
bundle :install
|
2019-05-06 18:06:21 +02:00
|
|
|
expect(out).to include("Fetching source index from #{file_uri_for(gem_repo1)}")
|
|
|
|
expect(out).not_to include("Fetching source index from #{file_uri_for(gem_repo2)}")
|
2018-11-02 23:07:56 +00:00
|
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|