2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
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
|
|
|
|
2013-03-05 17:40:53 -05:00
|
|
|
refute_path_exists File.join(@tempdir, 'cache'), 'sanity check'
|
|
|
|
|
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']
|
|
|
|
|
|
|
|
assert_path_exists(File.join(@tempdir, a2.file_name),
|
|
|
|
"#{a2.full_name} not fetched")
|
2013-03-05 17:40:53 -05:00
|
|
|
refute_path_exists File.join(@tempdir, 'cache'),
|
|
|
|
'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
|
|
|
|
|
|
|
refute_path_exists File.join(@tempdir, 'cache'), 'sanity check'
|
|
|
|
|
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']
|
|
|
|
assert_path_exists(File.join(@tempdir, a2.file_name),
|
|
|
|
"#{a2.full_name} not fetched")
|
2013-09-14 04:59:02 -04:00
|
|
|
refute_path_exists File.join(@tempdir, 'cache'),
|
|
|
|
'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']
|
|
|
|
|
|
|
|
assert_path_exists(File.join(@tempdir, a2.file_name),
|
|
|
|
"#{a2.full_name} not fetched")
|
2007-11-10 02:48:56 -05:00
|
|
|
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']
|
|
|
|
|
|
|
|
assert_path_exists(File.join(@tempdir, a2_pre.file_name),
|
|
|
|
"#{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']
|
|
|
|
|
|
|
|
assert_path_exists(File.join(@tempdir, a1.file_name),
|
|
|
|
"#{a1.full_name} not fetched")
|
2012-04-17 20:04:12 -04:00
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|