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
|
# frozen_string_literal: true
require "thread"
RSpec.describe "fetching dependencies with a not available mirror", :realworld => true do
let(:mirror) { @mirror_uri }
let(:original) { @server_uri }
let(:server_port) { @server_port }
let(:host) { "127.0.0.1" }
before do
require_rack
setup_server
setup_mirror
end
after do
Artifice.deactivate
@server_thread.kill
@server_thread.join
end
context "with a specific fallback timeout" do
before do
global_config("BUNDLE_MIRROR__HTTP://127__0__0__1:#{server_port}/__FALLBACK_TIMEOUT/" => "true",
"BUNDLE_MIRROR__HTTP://127__0__0__1:#{server_port}/" => mirror)
end
it "install a gem using the original uri when the mirror is not responding" do
gemfile <<-G
source "#{original}"
gem 'weakling'
G
bundle :install, :artifice => nil
expect(out).to include("Installing weakling")
expect(out).to include("Bundle complete")
expect(the_bundle).to include_gems "weakling 0.0.3"
end
end
context "with a global fallback timeout" do
before do
global_config("BUNDLE_MIRROR__ALL__FALLBACK_TIMEOUT/" => "1",
"BUNDLE_MIRROR__ALL" => mirror)
end
it "install a gem using the original uri when the mirror is not responding" do
gemfile <<-G
source "#{original}"
gem 'weakling'
G
bundle :install, :artifice => nil
expect(out).to include("Installing weakling")
expect(out).to include("Bundle complete")
expect(the_bundle).to include_gems "weakling 0.0.3"
end
end
context "with a specific mirror without a fallback timeout" do
before do
global_config("BUNDLE_MIRROR__HTTP://127__0__0__1:#{server_port}/" => mirror)
end
it "fails to install the gem with a timeout error" do
gemfile <<-G
source "#{original}"
gem 'weakling'
G
bundle :install, :artifice => nil
expect(out).to include("Fetching source index from #{mirror}")
expect(out).to include("Retrying fetcher due to error (2/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Retrying fetcher due to error (3/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Retrying fetcher due to error (4/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Could not fetch specs from #{mirror}")
end
it "prints each error and warning on a new line" do
gemfile <<-G
source "#{original}"
gem 'weakling'
G
bundle :install, :artifice => nil
expect(last_command.stdout).to include "Fetching source index from #{mirror}/"
expect(last_command.bundler_err).to include <<-EOS.strip
Retrying fetcher due to error (2/4): Bundler::HTTPError Could not fetch specs from #{mirror}/
Retrying fetcher due to error (3/4): Bundler::HTTPError Could not fetch specs from #{mirror}/
Retrying fetcher due to error (4/4): Bundler::HTTPError Could not fetch specs from #{mirror}/
Could not fetch specs from #{mirror}/
EOS
end
end
context "with a global mirror without a fallback timeout" do
before do
global_config("BUNDLE_MIRROR__ALL" => mirror)
end
it "fails to install the gem with a timeout error" do
gemfile <<-G
source "#{original}"
gem 'weakling'
G
bundle :install, :artifice => nil
expect(out).to include("Fetching source index from #{mirror}")
expect(out).to include("Retrying fetcher due to error (2/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Retrying fetcher due to error (3/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Retrying fetcher due to error (4/4): Bundler::HTTPError Could not fetch specs from #{mirror}")
expect(out).to include("Could not fetch specs from #{mirror}")
end
end
def setup_server
@server_port = find_unused_port
@server_uri = "http://#{host}:#{@server_port}"
require File.expand_path("../../support/artifice/endpoint", __FILE__)
@server_thread = Thread.new do
Rack::Server.start(:app => Endpoint,
:Host => host,
:Port => @server_port,
:server => "webrick",
:AccessLog => [],
:Logger => Spec::SilentLogger.new)
end.run
wait_for_server(host, @server_port)
end
def setup_mirror
mirror_port = find_unused_port
@mirror_uri = "http://#{host}:#{mirror_port}"
end
end
|