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
|
# frozen_string_literal: true
require_relative "helper"
require "rubygems/package"
require "rubygems/security"
require "rubygems/commands/fetch_command"
class TestGemCommandsFetchCommand < Gem::TestCase
def setup
super
@cmd = Gem::Commands::FetchCommand.new
end
def test_execute
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 2
end
assert_path_not_exist File.join(@tempdir, "cache"), "sanity check"
@cmd.options[:args] = %w[a]
execute_with_exit_code
a2 = specs["a-2"]
assert_path_exist(File.join(@tempdir, a2.file_name),
"#{a2.full_name} not fetched")
assert_path_not_exist File.join(@tempdir, "cache"),
"gem repository directories must not be created"
end
def test_execute_latest
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 1
fetcher.gem "a", 2
end
assert_path_not_exist File.join(@tempdir, "cache"), "sanity check"
@cmd.options[:args] = %w[a]
@cmd.options[:version] = req(">= 0.1")
execute_with_exit_code
a2 = specs["a-2"]
assert_path_exist(File.join(@tempdir, a2.file_name),
"#{a2.full_name} not fetched")
assert_path_not_exist File.join(@tempdir, "cache"),
"gem repository directories must not be created"
end
def test_execute_prerelease
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 2
fetcher.gem "a", "2.a"
end
@cmd.options[:args] = %w[a]
@cmd.options[:prerelease] = true
execute_with_exit_code
a2 = specs["a-2"]
assert_path_exist(File.join(@tempdir, a2.file_name),
"#{a2.full_name} not fetched")
end
def test_execute_platform
a2_spec, a2 = util_gem("a", "2")
a2_universal_darwin_spec, a2_universal_darwin = util_gem("a", "2") do |s|
s.platform = "universal-darwin"
end
Gem::RemoteFetcher.fetcher = @fetcher = Gem::FakeFetcher.new
write_marshalled_gemspecs(a2_spec, a2_universal_darwin_spec)
@cmd.options[:args] = %w[a]
@fetcher.data["#{@gem_repo}latest_specs.#{Gem.marshal_version}.gz"] = util_gzip(Marshal.dump([
Gem::NameTuple.new(a2_spec.name, a2_spec.version, a2_spec.platform),
Gem::NameTuple.new(a2_universal_darwin_spec.name, a2_universal_darwin_spec.version, a2_universal_darwin_spec.platform),
]))
@fetcher.data["#{@gem_repo}gems/#{a2_spec.file_name}"] = Gem.read_binary(a2)
FileUtils.cp a2, a2_spec.cache_file
@fetcher.data["#{@gem_repo}gems/#{a2_universal_darwin_spec.file_name}"] = Gem.read_binary(a2_universal_darwin)
FileUtils.cp a2_universal_darwin, a2_universal_darwin_spec.cache_file
util_set_arch "arm64-darwin20" do
execute_with_exit_code
end
assert_path_exist(File.join(@tempdir, a2_universal_darwin_spec.file_name),
"#{a2_universal_darwin_spec.full_name} not fetched")
end
def test_execute_specific_prerelease
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 2
fetcher.gem "a", "2.a"
end
@cmd.options[:args] = %w[a]
@cmd.options[:prerelease] = true
@cmd.options[:version] = "2.a"
execute_with_exit_code
a2_pre = specs["a-2.a"]
assert_path_exist(File.join(@tempdir, a2_pre.file_name),
"#{a2_pre.full_name} not fetched")
end
def test_execute_version
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 1
fetcher.gem "a", 2
end
@cmd.options[:args] = %w[a]
@cmd.options[:version] = Gem::Requirement.new "1"
execute_with_exit_code
a1 = specs["a-1"]
assert_path_exist(File.join(@tempdir, a1.file_name),
"#{a1.full_name} not fetched")
end
def test_execute_version_specified_by_colon
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 1
end
@cmd.options[:args] = %w[a:1]
execute_with_exit_code
a1 = specs["a-1"]
assert_path_exist(File.join(@tempdir, a1.file_name),
"#{a1.full_name} not fetched")
end
def test_execute_two_version
@cmd.options[:args] = %w[a b]
@cmd.options[:version] = Gem::Requirement.new "1"
execute_with_term_error
msg = "ERROR: Can't use --version with multiple gems. You can specify multiple gems with" \
" version requirements using `gem fetch 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'`"
assert_empty @ui.output
assert_equal msg, @ui.error.chomp
end
def test_execute_two_version_specified_by_colon
specs = spec_fetcher do |fetcher|
fetcher.gem "a", 1
fetcher.gem "b", 1
end
@cmd.options[:args] = %w[a:1 b:1]
execute_with_exit_code
a1 = specs["a-1"]
b1 = specs["b-1"]
assert_path_exist(File.join(@tempdir, a1.file_name),
"#{a1.full_name} not fetched")
assert_path_exist(File.join(@tempdir, b1.file_name),
"#{b1.full_name} not fetched")
end
def test_execute_version_nonexistent
spec_fetcher do |fetcher|
fetcher.spec "foobar", 1
end
@cmd.options[:args] = %w[foobar:2]
execute_with_term_error
expected = <<-EXPECTED
ERROR: Could not find a valid gem 'foobar' (2) in any repository
ERROR: Possible alternatives: foobar
EXPECTED
assert_equal expected, @ui.error
end
def test_execute_nonexistent_hint_disabled
spec_fetcher do |fetcher|
fetcher.spec "foobar", 1
end
@cmd.options[:args] = %w[foobar:2]
@cmd.options[:suggest_alternate] = false
execute_with_term_error
expected = <<-EXPECTED
ERROR: Could not find a valid gem 'foobar' (2) in any repository
EXPECTED
assert_equal expected, @ui.error
end
private
def execute_with_term_error
use_ui @ui do
assert_raise Gem::MockGemUi::TermError, @ui.error do
@cmd.execute
end
end
end
def execute_with_exit_code
use_ui @ui do
Dir.chdir @tempdir do
assert_raise Gem::MockGemUi::SystemExitException, @ui.error do
@cmd.execute
end
end
end
end
end
|