2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2021-06-01 23:32:47 -04:00
|
|
|
require_relative "helper"
|
2008-02-10 03:00:19 -05:00
|
|
|
require "rubygems/package"
|
|
|
|
require "rubygems/security"
|
2007-11-10 02:48:56 -05:00
|
|
|
require "rubygems/commands/fetch_command"
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsFetchCommand < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::FetchCommand.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 2
|
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_not_exist File.join(@tempdir, "cache"), "sanity check"
|
2013-03-05 17:40:53 -05:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
a2 = specs["a-2"]
|
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
2013-11-11 19:16:41 -05:00
|
|
|
"#{a2.full_name} not fetched")
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_not_exist File.join(@tempdir, "cache"),
|
2013-03-05 17:40:53 -05:00
|
|
|
"gem repository directories must not be created"
|
2008-06-17 18:04:18 -04:00
|
|
|
end
|
|
|
|
|
2013-09-14 04:59:02 -04:00
|
|
|
def test_execute_latest
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 1
|
|
|
|
fetcher.gem "a", 2
|
|
|
|
end
|
2013-09-14 04:59:02 -04:00
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_not_exist File.join(@tempdir, "cache"), "sanity check"
|
2013-09-14 04:59:02 -04:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2013-09-14 04:59:02 -04:00
|
|
|
@cmd.options[:version] = req(">= 0.1")
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
a2 = specs["a-2"]
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
2013-11-11 19:16:41 -05:00
|
|
|
"#{a2.full_name} not fetched")
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_not_exist File.join(@tempdir, "cache"),
|
2013-09-14 04:59:02 -04:00
|
|
|
"gem repository directories must not be created"
|
|
|
|
end
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
def test_execute_prerelease
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 2
|
|
|
|
fetcher.gem "a", "2.a"
|
|
|
|
end
|
2008-06-17 18:04:18 -04:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2010-02-21 21:52:35 -05:00
|
|
|
@cmd.options[:prerelease] = true
|
2008-06-17 18:04:18 -04:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
a2 = specs["a-2"]
|
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
2013-11-11 19:16:41 -05:00
|
|
|
"#{a2.full_name} not fetched")
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2021-10-29 18:20:28 -04:00
|
|
|
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
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_path_exist(File.join(@tempdir, a2_universal_darwin_spec.file_name),
|
|
|
|
"#{a2_universal_darwin_spec.full_name} not fetched")
|
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_specific_prerelease
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 2
|
|
|
|
fetcher.gem "a", "2.a"
|
|
|
|
end
|
2010-04-22 04:24:42 -04:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2012-11-29 01:52:18 -05:00
|
|
|
@cmd.options[:prerelease] = true
|
|
|
|
@cmd.options[:version] = "2.a"
|
2010-04-22 04:24:42 -04:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
a2_pre = specs["a-2.a"]
|
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_exist(File.join(@tempdir, a2_pre.file_name),
|
2013-11-11 19:16:41 -05:00
|
|
|
"#{a2_pre.full_name} not fetched")
|
2010-04-22 04:24:42 -04:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_version
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 1
|
|
|
|
fetcher.gem "a", 2
|
|
|
|
end
|
2012-04-17 20:04:12 -04:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2012-04-17 20:04:12 -04:00
|
|
|
@cmd.options[:version] = Gem::Requirement.new "1"
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
a1 = specs["a-1"]
|
|
|
|
|
2020-05-25 08:05:45 -04:00
|
|
|
assert_path_exist(File.join(@tempdir, a1.file_name),
|
2013-11-11 19:16:41 -05:00
|
|
|
"#{a1.full_name} not fetched")
|
2012-04-17 20:04:12 -04:00
|
|
|
end
|
2021-12-29 16:24:04 -05:00
|
|
|
|
|
|
|
def test_execute_version_specified_by_colon
|
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem "a", 1
|
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a:1]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
assert_raise Gem::MockGemUi::TermError, @ui.error do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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 "foo", 1
|
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo:2]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EXPECTED
|
|
|
|
ERROR: Could not find a valid gem 'foo' (2) in any repository
|
|
|
|
ERROR: Possible alternatives: foo
|
|
|
|
EXPECTED
|
|
|
|
|
|
|
|
assert_equal expected, @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_nonexistent_hint_disabled
|
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.spec "foo", 1
|
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo:2]
|
2022-01-04 19:16:40 -05:00
|
|
|
@cmd.options[:suggest_alternate] = false
|
2021-12-29 16:24:04 -05:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EXPECTED
|
|
|
|
ERROR: Could not find a valid gem 'foo' (2) in any repository
|
|
|
|
EXPECTED
|
|
|
|
|
|
|
|
assert_equal expected, @ui.error
|
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|