2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2013-11-18 19:34:13 -05:00
|
|
|
require 'rubygems/test_case'
|
|
|
|
require 'rubygems/util'
|
|
|
|
|
|
|
|
class TestGemUtil < Gem::TestCase
|
|
|
|
|
|
|
|
def test_class_popen
|
2018-02-05 21:58:35 -05:00
|
|
|
skip "MJIT executes process and it's caught by Process.wait(-1)" if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
|
2013-11-18 19:34:13 -05:00
|
|
|
assert_equal "0\n", Gem::Util.popen(Gem.ruby, '-e', 'p 0')
|
2013-11-21 18:27:30 -05:00
|
|
|
|
|
|
|
assert_raises Errno::ECHILD do
|
2013-11-25 14:14:49 -05:00
|
|
|
Process.wait(-1)
|
2013-11-21 18:27:30 -05:00
|
|
|
end
|
2013-11-18 19:34:13 -05:00
|
|
|
end
|
|
|
|
|
2013-11-25 14:14:49 -05:00
|
|
|
def test_silent_system
|
|
|
|
assert_silent do
|
|
|
|
Gem::Util.silent_system Gem.ruby, '-e', 'puts "hello"; warn "hello"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_traverse_parents
|
|
|
|
FileUtils.mkdir_p 'a/b/c'
|
|
|
|
|
|
|
|
enum = Gem::Util.traverse_parents 'a/b/c'
|
|
|
|
|
|
|
|
assert_equal File.join(@tempdir, 'a/b/c'), enum.next
|
|
|
|
assert_equal File.join(@tempdir, 'a/b'), enum.next
|
|
|
|
assert_equal File.join(@tempdir, 'a'), enum.next
|
2017-10-07 21:32:18 -04:00
|
|
|
loop { break if enum.next.nil? } # exhaust the enumerator
|
2013-11-25 14:14:49 -05:00
|
|
|
end
|
|
|
|
|
2018-02-05 21:58:35 -05:00
|
|
|
def test_traverse_parents_does_not_crash_on_permissions_error
|
|
|
|
skip 'skipped on MS Windows (chmod has no effect)' if win_platform?
|
|
|
|
|
|
|
|
FileUtils.mkdir_p 'd/e/f'
|
|
|
|
# remove 'execute' permission from "e" directory and make it
|
|
|
|
# impossible to cd into it and its children
|
|
|
|
FileUtils.chmod(0666, 'd/e')
|
|
|
|
|
|
|
|
paths = Gem::Util.traverse_parents('d/e/f').to_a
|
|
|
|
|
|
|
|
assert_equal File.join(@tempdir, 'd'), paths[0]
|
|
|
|
assert_equal @tempdir, paths[1]
|
2018-02-16 03:08:06 -05:00
|
|
|
if File.respond_to?(:realpath)
|
|
|
|
assert_equal File.realpath(Dir.tmpdir), paths[2]
|
|
|
|
assert_equal File.realpath("..", Dir.tmpdir), paths[3]
|
|
|
|
elsif RUBY_PLATFORM !~ /darwin/
|
|
|
|
assert_equal Dir.tmpdir, paths[2]
|
|
|
|
assert_equal '/', paths[3]
|
|
|
|
end
|
2018-02-05 21:58:35 -05:00
|
|
|
ensure
|
|
|
|
# restore default permissions, allow the directory to be removed
|
|
|
|
FileUtils.chmod(0775, 'd/e') unless win_platform?
|
|
|
|
end
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
def test_linked_list_find
|
|
|
|
list = [1,2,3,4,5].inject(Gem::List.new(0)) { |m,o|
|
|
|
|
Gem::List.new o, m
|
|
|
|
}
|
|
|
|
assert_equal 5, list.find { |x| x == 5 }
|
|
|
|
assert_equal 4, list.find { |x| x == 4 }
|
|
|
|
end
|
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
end
|
|
|
|
|