2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/installer_test_case'
|
2008-09-25 06:13:50 -04:00
|
|
|
require 'rubygems/commands/uninstall_command'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsUninstallCommand < Gem::InstallerTestCase
|
2008-09-25 06:13:50 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
2015-08-13 10:43:14 -04:00
|
|
|
common_installer_setup
|
2008-09-25 06:13:50 -04:00
|
|
|
|
2008-09-25 06:37:01 -04:00
|
|
|
build_rake_in do
|
2011-01-28 18:46:47 -05:00
|
|
|
use_ui @ui do
|
2008-09-25 06:37:01 -04:00
|
|
|
@installer.install
|
|
|
|
end
|
2008-09-25 06:13:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::UninstallCommand.new
|
|
|
|
@executable = File.join(@gemhome, 'bin', 'executable')
|
|
|
|
end
|
|
|
|
|
2013-09-18 17:29:41 -04:00
|
|
|
def test_execute_all_named
|
|
|
|
util_make_gems
|
|
|
|
|
|
|
|
default = new_default_spec 'default', '1'
|
|
|
|
install_default_gems default
|
|
|
|
|
|
|
|
gemhome2 = "#{@gemhome}2"
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
a_4, = util_gem 'a', 4
|
2013-09-18 17:29:41 -04:00
|
|
|
install_gem a_4, :install_dir => gemhome2
|
|
|
|
|
|
|
|
Gem::Specification.dirs = [@gemhome, gemhome2]
|
|
|
|
|
|
|
|
assert_includes Gem::Specification.all_names, 'a-1'
|
|
|
|
assert_includes Gem::Specification.all_names, 'a-4'
|
|
|
|
assert_includes Gem::Specification.all_names, 'b-2'
|
|
|
|
assert_includes Gem::Specification.all_names, 'default-1'
|
|
|
|
|
2013-09-14 04:59:02 -04:00
|
|
|
@cmd.options[:all] = true
|
2013-09-18 17:29:41 -04:00
|
|
|
@cmd.options[:args] = %w[a]
|
2013-09-14 04:59:02 -04:00
|
|
|
|
2013-09-18 17:29:41 -04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
2013-09-14 04:59:02 -04:00
|
|
|
end
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_equal %w[a_evil-9 b-2 c-1.2 default-1 dep_x-1 pl-1-x86-linux x-1],
|
2013-09-18 17:29:41 -04:00
|
|
|
Gem::Specification.all_names.sort
|
2013-09-14 04:59:02 -04:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_dependency_order
|
|
|
|
c = quick_gem 'c' do |spec|
|
|
|
|
spec.add_dependency 'a'
|
2011-08-23 18:58:06 -04:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
util_build_gem c
|
|
|
|
installer = util_installer c, @gemhome
|
|
|
|
use_ui @ui do installer.install end
|
2011-08-23 18:58:06 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
ui = Gem::MockGemUi.new
|
2011-08-23 18:58:06 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
@cmd.options[:args] = %w[a c]
|
|
|
|
@cmd.options[:executables] = true
|
2011-08-25 21:10:50 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
use_ui ui do
|
2011-08-25 21:10:50 -04:00
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
output = ui.output.split "\n"
|
2011-08-25 21:10:50 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
assert_equal 'Successfully uninstalled c-2', output.shift
|
|
|
|
assert_equal "Removing executable", output.shift
|
|
|
|
assert_equal 'Successfully uninstalled a-2', output.shift
|
2011-08-25 21:10:50 -04:00
|
|
|
end
|
|
|
|
|
2008-09-25 06:13:50 -04:00
|
|
|
def test_execute_removes_executable
|
2011-01-28 18:46:47 -05:00
|
|
|
ui = Gem::MockGemUi.new
|
2013-09-14 04:59:02 -04:00
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
util_setup_gem ui
|
|
|
|
|
|
|
|
build_rake_in do
|
|
|
|
use_ui ui do
|
|
|
|
@installer.install
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-07 03:44:45 -05:00
|
|
|
if win_platform? then
|
2011-01-28 18:46:47 -05:00
|
|
|
assert File.exist?(@executable)
|
2008-09-25 06:13:50 -04:00
|
|
|
else
|
2011-01-28 18:46:47 -05:00
|
|
|
assert File.symlink?(@executable)
|
2008-09-25 06:13:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Evil hack to prevent false removal success
|
|
|
|
FileUtils.rm_f @executable
|
2011-01-28 18:46:47 -05:00
|
|
|
|
2011-03-07 03:44:45 -05:00
|
|
|
open @executable, "wb+" do |f| f.puts "binary" end
|
2008-09-25 06:13:50 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
@cmd.options[:executables] = true
|
2011-03-07 03:44:45 -05:00
|
|
|
@cmd.options[:args] = [@spec.name]
|
2008-09-25 06:13:50 -04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
output = @ui.output.split "\n"
|
|
|
|
assert_match(/Removing executable/, output.shift)
|
|
|
|
assert_match(/Successfully uninstalled/, output.shift)
|
|
|
|
assert_equal false, File.exist?(@executable)
|
|
|
|
assert_nil output.shift, "UI output should have contained only two lines"
|
|
|
|
end
|
|
|
|
|
2011-03-07 03:44:45 -05:00
|
|
|
def test_execute_removes_formatted_executable
|
|
|
|
FileUtils.rm_f @executable # Wish this didn't happen in #setup
|
|
|
|
|
|
|
|
Gem::Installer.exec_format = 'foo-%s-bar'
|
|
|
|
|
|
|
|
@installer.format_executable = true
|
|
|
|
@installer.install
|
|
|
|
|
|
|
|
formatted_executable = File.join @gemhome, 'bin', 'foo-executable-bar'
|
|
|
|
assert_equal true, File.exist?(formatted_executable)
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
@cmd.options[:executables] = true
|
2011-03-07 03:44:45 -05:00
|
|
|
@cmd.options[:format_executable] = true
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
assert_equal false, File.exist?(formatted_executable)
|
|
|
|
rescue
|
|
|
|
Gem::Installer.exec_format = nil
|
|
|
|
end
|
|
|
|
|
2009-12-08 02:19:09 -05:00
|
|
|
def test_execute_prerelease
|
2013-11-11 19:16:41 -05:00
|
|
|
@spec = util_spec "pre", "2.b"
|
2010-02-21 21:52:35 -05:00
|
|
|
@gem = File.join @tempdir, @spec.file_name
|
2009-12-08 02:19:09 -05:00
|
|
|
FileUtils.touch @gem
|
|
|
|
|
|
|
|
util_setup_gem
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
build_rake_in do
|
|
|
|
use_ui @ui do
|
|
|
|
@installer.install
|
|
|
|
end
|
2009-12-08 02:19:09 -05:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
@cmd.options[:executables] = true
|
2009-12-08 02:19:09 -05:00
|
|
|
@cmd.options[:args] = ["pre"]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
output = @ui.output
|
|
|
|
assert_match(/Successfully uninstalled/, output)
|
|
|
|
end
|
2011-08-23 18:58:06 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_with_force_leaves_executable
|
|
|
|
ui = Gem::MockGemUi.new
|
|
|
|
|
|
|
|
util_make_gems
|
|
|
|
util_setup_gem ui
|
|
|
|
|
|
|
|
@cmd.options[:version] = '1'
|
|
|
|
@cmd.options[:force] = true
|
|
|
|
@cmd.options[:args] = ['a']
|
|
|
|
|
|
|
|
use_ui ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert !Gem::Specification.all_names.include?('a')
|
|
|
|
assert File.exist? File.join(@gemhome, 'bin', 'executable')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_with_force_uninstalls_all_versions
|
|
|
|
ui = Gem::MockGemUi.new "y\n"
|
|
|
|
|
|
|
|
util_make_gems
|
|
|
|
util_setup_gem ui
|
|
|
|
|
|
|
|
assert Gem::Specification.find_all_by_name('a').length > 1
|
|
|
|
|
|
|
|
@cmd.options[:force] = true
|
|
|
|
@cmd.options[:args] = ['a']
|
|
|
|
|
|
|
|
use_ui ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
refute_includes Gem::Specification.all_names, 'a'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_with_force_ignores_dependencies
|
|
|
|
ui = Gem::MockGemUi.new
|
|
|
|
|
|
|
|
util_make_gems
|
|
|
|
util_setup_gem ui
|
|
|
|
|
|
|
|
assert Gem::Specification.find_all_by_name('dep_x').length > 0
|
|
|
|
assert Gem::Specification.find_all_by_name('x').length > 0
|
|
|
|
|
|
|
|
@cmd.options[:force] = true
|
|
|
|
@cmd.options[:args] = ['x']
|
|
|
|
|
|
|
|
use_ui ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert Gem::Specification.find_all_by_name('dep_x').length > 0
|
|
|
|
assert Gem::Specification.find_all_by_name('x').length == 0
|
|
|
|
end
|
|
|
|
|
2013-09-14 04:59:02 -04:00
|
|
|
def test_execute_all
|
|
|
|
util_make_gems
|
|
|
|
|
|
|
|
default = new_default_spec 'default', '1'
|
|
|
|
install_default_gems default
|
|
|
|
|
|
|
|
gemhome2 = "#{@gemhome}2"
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
a_4, = util_gem 'a', 4
|
2013-09-14 04:59:02 -04:00
|
|
|
install_gem a_4, :install_dir => gemhome2
|
|
|
|
|
|
|
|
Gem::Specification.dirs = [@gemhome, gemhome2]
|
|
|
|
|
|
|
|
assert_includes Gem::Specification.all_names, 'a-1'
|
|
|
|
assert_includes Gem::Specification.all_names, 'a-4'
|
|
|
|
assert_includes Gem::Specification.all_names, 'default-1'
|
|
|
|
|
|
|
|
@cmd.options[:all] = true
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_equal %w[default-1], Gem::Specification.all_names.sort
|
2013-09-14 04:59:02 -04:00
|
|
|
end
|
|
|
|
|
2013-09-18 17:29:41 -04:00
|
|
|
def test_handle_options
|
|
|
|
@cmd.handle_options %w[]
|
|
|
|
|
|
|
|
assert_equal false, @cmd.options[:check_dev]
|
|
|
|
assert_equal nil, @cmd.options[:install_dir]
|
|
|
|
assert_equal true, @cmd.options[:user_install]
|
|
|
|
assert_equal Gem::Requirement.default, @cmd.options[:version]
|
2014-09-13 23:30:02 -04:00
|
|
|
assert_equal false, @cmd.options[:vendor]
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_handle_options_vendor
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.handle_options %w[--vendor]
|
|
|
|
end
|
|
|
|
|
|
|
|
assert @cmd.options[:vendor]
|
|
|
|
assert_equal Gem.vendor_dir, @cmd.options[:install_dir]
|
|
|
|
|
|
|
|
assert_empty @ui.output
|
|
|
|
|
|
|
|
expected = <<-EXPECTED
|
|
|
|
WARNING: Use your OS package manager to uninstall vendor gems
|
|
|
|
EXPECTED
|
|
|
|
|
|
|
|
assert_match expected, @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_handle_options_vendor_missing
|
|
|
|
orig_vendordir = RbConfig::CONFIG['vendordir']
|
|
|
|
RbConfig::CONFIG.delete 'vendordir'
|
|
|
|
|
|
|
|
e = assert_raises OptionParser::InvalidOption do
|
|
|
|
@cmd.handle_options %w[--vendor]
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 'invalid option: --vendor your platform is not supported',
|
|
|
|
e.message
|
|
|
|
|
|
|
|
refute @cmd.options[:vendor]
|
|
|
|
refute @cmd.options[:install_dir]
|
|
|
|
|
|
|
|
ensure
|
|
|
|
RbConfig::CONFIG['vendordir'] = orig_vendordir
|
2013-09-18 17:29:41 -04:00
|
|
|
end
|
|
|
|
|
2008-09-25 06:13:50 -04:00
|
|
|
end
|
|
|
|
|