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
|
# frozen_string_literal: true
RSpec.describe "bundle install with :allow_offline_install" do
before do
bundle "config set allow_offline_install true"
end
context "with no cached data locally" do
it "still installs" do
install_gemfile! <<-G, :artifice => "compact_index"
source "http://testgemserver.local"
gem "rack-obama"
G
expect(the_bundle).to include_gem("rack 1.0")
end
it "still fails when the network is down" do
install_gemfile <<-G, :artifice => "fail"
source "http://testgemserver.local"
gem "rack-obama"
G
expect(err).to include("Could not reach host testgemserver.local.")
expect(the_bundle).to_not be_locked
end
end
context "with cached data locally" do
it "will install from the compact index" do
system_gems ["rack-1.0.0"], :path => :bundle_path
bundle! "config set clean false"
install_gemfile! <<-G, :artifice => "compact_index"
source "http://testgemserver.local"
gem "rack-obama"
gem "rack", "< 1.0"
G
expect(the_bundle).to include_gems("rack-obama 1.0", "rack 0.9.1")
gemfile <<-G
source "http://testgemserver.local"
gem "rack-obama"
G
bundle! :update, :artifice => "fail", :all => true
expect(last_command.stdboth).to include "Using the cached data for the new index because of a network error"
expect(the_bundle).to include_gems("rack-obama 1.0", "rack 1.0.0")
end
def break_git_remote_ops!
FileUtils.mkdir_p(tmp("broken_path"))
File.open(tmp("broken_path/git"), "w", 0o755) do |f|
f.puts strip_whitespace(<<-RUBY)
#!/usr/bin/env ruby
if %w(fetch --force --quiet --tags refs/heads/*:refs/heads/*).-(ARGV).empty? || %w(clone --bare --no-hardlinks --quiet).-(ARGV).empty?
warn "git remote ops have been disabled"
exit 1
end
ENV["PATH"] = ENV["PATH"].sub(/^.*?:/, "")
exec("git", *ARGV)
RUBY
end
old_path = ENV["PATH"]
ENV["PATH"] = "#{tmp("broken_path")}:#{ENV["PATH"]}"
yield if block_given?
ensure
ENV["PATH"] = old_path if block_given?
end
it "will install from a cached git repo" do
git = build_git "a", "1.0.0", :path => lib_path("a")
update_git("a", :path => git.path, :branch => "new_branch")
install_gemfile! <<-G
gem "a", :git => #{git.path.to_s.dump}
G
break_git_remote_ops! { bundle! :update, :all => true }
expect(err).to include("Using cached git data because of network errors")
expect(the_bundle).to be_locked
break_git_remote_ops! do
install_gemfile! <<-G
gem "a", :git => #{git.path.to_s.dump}, :branch => "new_branch"
G
end
expect(err).to include("Using cached git data because of network errors")
expect(the_bundle).to be_locked
end
end
end
|