2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/commands/unpack_command'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsUnpackCommand < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
2007-12-20 03:39:12 -05:00
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd = Gem::Commands::UnpackCommand.new
|
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2011-01-31 22:11:34 -05:00
|
|
|
def test_find_in_cache
|
|
|
|
util_make_gems
|
|
|
|
|
|
|
|
assert_equal(
|
2011-05-31 23:45:05 -04:00
|
|
|
@cmd.find_in_cache(File.basename @a1.cache_file),
|
|
|
|
@a1.cache_file,
|
2011-01-31 22:11:34 -05:00
|
|
|
'found a-1.gem in the cache'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_get_path
|
2013-11-11 19:16:41 -05:00
|
|
|
specs = spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem 'a', 1
|
2011-01-31 22:11:34 -05:00
|
|
|
end
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
dep = Gem::Dependency.new 'a', 1
|
2011-01-31 22:11:34 -05:00
|
|
|
assert_equal(
|
2011-05-15 07:55:52 -04:00
|
|
|
@cmd.get_path(dep),
|
2013-11-11 19:16:41 -05:00
|
|
|
specs['a-1'].cache_file,
|
2011-01-31 22:11:34 -05:00
|
|
|
'fetches a-1 and returns the cache path'
|
|
|
|
)
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
FileUtils.rm specs['a-1'].cache_file
|
2011-01-31 22:11:34 -05:00
|
|
|
|
|
|
|
assert_equal(
|
2011-05-15 07:55:52 -04:00
|
|
|
@cmd.get_path(dep),
|
2013-11-11 19:16:41 -05:00
|
|
|
specs['a-1'].cache_file,
|
2011-01-31 22:11:34 -05:00
|
|
|
'when removed from cache, refetches a-1'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
def test_execute
|
|
|
|
util_make_gems
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
@cmd.options[:args] = %w[a b]
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2008-03-31 18:40:06 -04:00
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
assert File.exist?(File.join(@tempdir, 'a-3.a')), 'a should be unpacked'
|
|
|
|
assert File.exist?(File.join(@tempdir, 'b-2')), 'b should be unpacked'
|
2008-03-31 18:40:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_gem_path
|
2013-11-11 19:16:41 -05:00
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.gem 'a', '3.a'
|
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
Gem.clear_paths
|
|
|
|
|
|
|
|
gemhome2 = File.join @tempdir, 'gemhome2'
|
|
|
|
|
2015-01-09 09:20:10 -05:00
|
|
|
Gem.use_paths gemhome2, [gemhome2, @gemhome]
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
2007-12-20 03:39:12 -05:00
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
end
|
2007-12-20 03:39:12 -05:00
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
assert File.exist?(File.join(@tempdir, 'a-3.a'))
|
2007-12-20 03:39:12 -05:00
|
|
|
end
|
|
|
|
|
2008-03-31 18:40:06 -04:00
|
|
|
def test_execute_gem_path_missing
|
2013-11-11 19:16:41 -05:00
|
|
|
spec_fetcher
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
Gem.clear_paths
|
|
|
|
|
|
|
|
gemhome2 = File.join @tempdir, 'gemhome2'
|
|
|
|
|
2015-01-09 09:20:10 -05:00
|
|
|
Gem.use_paths gemhome2, [gemhome2, @gemhome]
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[z]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal '', @ui.output
|
|
|
|
end
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
def test_execute_remote
|
2013-11-11 19:16:41 -05:00
|
|
|
spec_fetcher do |fetcher|
|
2015-07-01 17:50:14 -04:00
|
|
|
fetcher.download 'a', 1
|
|
|
|
fetcher.download 'a', 2
|
2010-04-22 04:24:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Gem.configuration.verbose = :really
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert File.exist?(File.join(@tempdir, 'a-2')), 'a should be unpacked'
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_execute_spec
|
|
|
|
util_make_gems
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a b]
|
|
|
|
@cmd.options[:spec] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert File.exist?(File.join(@tempdir, 'a-3.a.gemspec'))
|
|
|
|
assert File.exist?(File.join(@tempdir, 'b-2.gemspec'))
|
|
|
|
end
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
def test_execute_sudo
|
2011-05-31 23:45:05 -04:00
|
|
|
skip 'Cannot perform this test on windows (chmod)' if win_platform?
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
util_make_gems
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
FileUtils.chmod 0555, @gemhome
|
2010-04-22 04:24:42 -04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[b]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert File.exist?(File.join(@tempdir, 'b-2')), 'b should be unpacked'
|
|
|
|
ensure
|
2011-05-31 23:45:05 -04:00
|
|
|
FileUtils.chmod 0755, @gemhome
|
2010-04-22 04:24:42 -04:00
|
|
|
end
|
|
|
|
|
2007-12-20 03:39:12 -05:00
|
|
|
def test_execute_with_target_option
|
|
|
|
util_make_gems
|
|
|
|
|
|
|
|
target = 'with_target'
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
@cmd.options[:target] = target
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
assert File.exist?(File.join(@tempdir, target, 'a-3.a'))
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_exact_match
|
2013-11-11 19:16:41 -05:00
|
|
|
foo_spec = util_spec 'foo'
|
|
|
|
foo_bar_spec = util_spec 'foo_bar'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
2012-11-29 01:52:18 -05:00
|
|
|
Gem::Package.build foo_spec
|
|
|
|
Gem::Package.build foo_bar_spec
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
foo_path = File.join(@tempdir, "#{foo_spec.full_name}.gem")
|
|
|
|
foo_bar_path = File.join(@tempdir, "#{foo_bar_spec.full_name}.gem")
|
2015-07-01 17:50:14 -04:00
|
|
|
Gem::Installer.at(foo_path).install
|
|
|
|
Gem::Installer.at(foo_bar_path).install
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
Dir.chdir @tempdir do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
assert_path_exists File.join(@tempdir, foo_spec.full_name)
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_handle_options_metadata
|
|
|
|
refute @cmd.options[:spec]
|
|
|
|
|
|
|
|
@cmd.send :handle_options, %w[--spec a]
|
|
|
|
|
|
|
|
assert @cmd.options[:spec]
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|