2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-05-31 23:45:05 -04:00
|
|
|
require 'rubygems/test_case'
|
|
|
|
require 'rubygems/commands/cleanup_command'
|
2015-07-01 17:50:14 -04:00
|
|
|
require 'rubygems/installer'
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
class TestGemCommandsCleanupCommand < Gem::TestCase
|
2012-08-21 00:50:18 -04:00
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::CleanupCommand.new
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@a_1 = util_spec 'a', 1
|
|
|
|
@a_2 = util_spec 'a', 2
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
install_gem @a_1
|
|
|
|
install_gem @a_2
|
|
|
|
end
|
|
|
|
|
2013-09-14 04:59:02 -04:00
|
|
|
def test_handle_options_d
|
|
|
|
@cmd.handle_options %w[-d]
|
|
|
|
assert @cmd.options[:dryrun]
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_handle_options_dry_run
|
|
|
|
@cmd.handle_options %w[--dryrun]
|
|
|
|
assert @cmd.options[:dryrun]
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_handle_options_n
|
|
|
|
@cmd.handle_options %w[-n]
|
|
|
|
assert @cmd.options[:dryrun]
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_execute
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
refute_path_exists @a_1.gem_dir
|
|
|
|
end
|
|
|
|
|
2013-01-04 17:58:15 -05:00
|
|
|
def test_execute_all_dependencies
|
2013-11-11 19:16:41 -05:00
|
|
|
@b_1 = util_spec 'b', 1 do |s| s.add_dependency 'a', '1' end
|
|
|
|
@b_2 = util_spec 'b', 2 do |s| s.add_dependency 'a', '2' end
|
2013-01-04 17:58:15 -05:00
|
|
|
|
|
|
|
install_gem @b_1
|
|
|
|
install_gem @b_2
|
|
|
|
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
refute_path_exists @a_1.gem_dir
|
|
|
|
refute_path_exists @b_1.gem_dir
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_execute_all
|
2012-12-01 04:52:39 -05:00
|
|
|
gemhome2 = File.join @tempdir, 'gemhome2'
|
|
|
|
|
|
|
|
Gem.ensure_gem_subdirectories gemhome2
|
|
|
|
|
|
|
|
Gem.use_paths @gemhome, gemhome2
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@b_1 = util_spec 'b', 1
|
|
|
|
@b_2 = util_spec 'b', 2
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
install_gem @b_1
|
|
|
|
install_gem @b_2
|
|
|
|
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
2012-12-01 04:52:39 -05:00
|
|
|
assert_equal @gemhome, Gem.dir, 'GEM_HOME'
|
|
|
|
assert_equal [@gemhome, gemhome2], Gem.path.sort, 'GEM_PATH'
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
refute_path_exists @a_1.gem_dir
|
|
|
|
refute_path_exists @b_1.gem_dir
|
|
|
|
end
|
|
|
|
|
2011-08-04 21:00:01 -04:00
|
|
|
def test_execute_all_user
|
2015-07-01 17:50:14 -04:00
|
|
|
@a_1_1, = util_gem 'a', '1.1'
|
|
|
|
@a_1_1 = install_gem @a_1_1 # pick up user install path
|
2011-08-04 21:00:01 -04:00
|
|
|
|
|
|
|
Gem::Specification.dirs = [Gem.dir, Gem.user_dir]
|
|
|
|
|
|
|
|
assert_path_exists @a_1.gem_dir
|
|
|
|
assert_path_exists @a_1_1.gem_dir
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
refute_path_exists @a_1.gem_dir
|
|
|
|
refute_path_exists @a_1_1.gem_dir
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_all_user_no_sudo
|
|
|
|
FileUtils.chmod 0555, @gemhome
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
@a_1_1, = util_gem 'a', '1.1'
|
|
|
|
@a_1_1 = install_gem @a_1_1, :user_install => true # pick up user install path
|
2011-08-04 21:00:01 -04:00
|
|
|
|
|
|
|
Gem::Specification.dirs = [Gem.dir, Gem.user_dir]
|
|
|
|
|
|
|
|
assert_path_exists @a_1.gem_dir
|
|
|
|
assert_path_exists @a_1_1.gem_dir
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
assert_path_exists @a_1.gem_dir
|
2016-03-03 19:29:40 -05:00
|
|
|
assert_path_exists @a_1_1.gem_dir
|
2011-08-04 21:00:01 -04:00
|
|
|
ensure
|
|
|
|
FileUtils.chmod 0755, @gemhome
|
|
|
|
end unless win_platform?
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_execute_dry_run
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
@cmd.options[:dryrun] = true
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
assert_path_exists @a_1.gem_dir
|
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_keeps_older_versions_with_deps
|
2013-11-11 19:16:41 -05:00
|
|
|
@b_1 = util_spec 'b', 1
|
|
|
|
@b_2 = util_spec 'b', 2
|
2012-11-29 01:52:18 -05:00
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@c = util_spec 'c', 1 do |s|
|
2012-11-29 01:52:18 -05:00
|
|
|
s.add_dependency 'b', '1'
|
|
|
|
end
|
|
|
|
|
|
|
|
install_gem @b_1
|
|
|
|
install_gem @b_2
|
2015-07-01 17:50:14 -04:00
|
|
|
install_gem @c
|
2012-11-29 01:52:18 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
assert_path_exists @b_1.gem_dir
|
|
|
|
end
|
|
|
|
|
2012-12-08 01:01:49 -05:00
|
|
|
def test_execute_ignore_default_gem_verbose
|
|
|
|
Gem.configuration.verbose = :really
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
@b_1 = util_spec 'b', 1
|
2012-12-08 01:01:49 -05:00
|
|
|
@b_default = new_default_spec "b", "2"
|
2013-11-11 19:16:41 -05:00
|
|
|
@b_2 = util_spec 'b', 3
|
2012-12-08 01:01:49 -05:00
|
|
|
|
|
|
|
install_gem @b_1
|
|
|
|
install_default_specs @b_default
|
|
|
|
install_gem @b_2
|
|
|
|
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%^Skipped default gems: b-2%, @ui.output
|
|
|
|
assert_empty @ui.error
|
|
|
|
end
|
2016-03-03 19:29:40 -05:00
|
|
|
|
|
|
|
def test_execute_remove_gem_home_only
|
|
|
|
c_1, = util_gem 'c', '1'
|
|
|
|
c_2, = util_gem 'c', '2'
|
|
|
|
d_1, = util_gem 'd', '1'
|
|
|
|
d_2, = util_gem 'd', '2'
|
|
|
|
e_1, = util_gem 'e', '1'
|
|
|
|
e_2, = util_gem 'e', '2'
|
|
|
|
|
|
|
|
c_1 = install_gem c_1, :user_install => true # pick up user install path
|
|
|
|
c_2 = install_gem c_2
|
|
|
|
|
|
|
|
d_1 = install_gem d_1
|
|
|
|
d_2 = install_gem d_2, :user_install => true # pick up user install path
|
|
|
|
|
|
|
|
e_1 = install_gem e_1
|
|
|
|
e_2 = install_gem e_2
|
|
|
|
|
|
|
|
Gem::Specification.dirs = [Gem.dir, Gem.user_dir]
|
|
|
|
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
@cmd.execute
|
|
|
|
|
|
|
|
assert_path_exists c_1.gem_dir
|
|
|
|
refute_path_exists d_1.gem_dir
|
|
|
|
refute_path_exists e_1.gem_dir
|
|
|
|
end
|
2011-05-31 23:45:05 -04:00
|
|
|
end
|
|
|
|
|