2016-02-01 15:43:26 +03:00
|
|
|
# frozen_string_literal: true
|
2011-01-29 02:46:47 +03:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 10:48:56 +03:00
|
|
|
require 'rubygems/platform'
|
|
|
|
require 'rbconfig'
|
|
|
|
|
2011-01-29 02:46:47 +03:00
|
|
|
class TestGemPlatform < Gem::TestCase
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
def test_self_local
|
|
|
|
util_set_arch 'i686-darwin8.10.1'
|
|
|
|
|
|
|
|
assert_equal Gem::Platform.new(%w[x86 darwin 8]), Gem::Platform.local
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_match
|
|
|
|
assert Gem::Platform.match(nil), 'nil == ruby'
|
|
|
|
assert Gem::Platform.match(Gem::Platform.local), 'exact match'
|
|
|
|
assert Gem::Platform.match(Gem::Platform.local.to_s), '=~ match'
|
|
|
|
assert Gem::Platform.match(Gem::Platform::RUBY), 'ruby'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_new
|
2007-11-25 06:26:36 +03:00
|
|
|
assert_equal Gem::Platform.local, Gem::Platform.new(Gem::Platform::CURRENT)
|
2007-11-10 10:48:56 +03:00
|
|
|
assert_equal Gem::Platform::RUBY, Gem::Platform.new(Gem::Platform::RUBY)
|
|
|
|
assert_equal Gem::Platform::RUBY, Gem::Platform.new(nil)
|
2007-11-20 08:56:43 +03:00
|
|
|
assert_equal Gem::Platform::RUBY, Gem::Platform.new('')
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize
|
|
|
|
test_cases = {
|
|
|
|
'amd64-freebsd6' => ['amd64', 'freebsd', '6'],
|
|
|
|
'hppa2.0w-hpux11.31' => ['hppa2.0w', 'hpux', '11'],
|
|
|
|
'java' => [nil, 'java', nil],
|
|
|
|
'jruby' => [nil, 'java', nil],
|
2010-04-22 12:24:42 +04:00
|
|
|
'universal-dotnet' => ['universal', 'dotnet', nil],
|
|
|
|
'universal-dotnet2.0' => ['universal', 'dotnet', '2.0'],
|
|
|
|
'universal-dotnet4.0' => ['universal', 'dotnet', '4.0'],
|
2007-11-10 10:48:56 +03:00
|
|
|
'powerpc-aix5.3.0.0' => ['powerpc', 'aix', '5'],
|
|
|
|
'powerpc-darwin7' => ['powerpc', 'darwin', '7'],
|
|
|
|
'powerpc-darwin8' => ['powerpc', 'darwin', '8'],
|
|
|
|
'powerpc-linux' => ['powerpc', 'linux', nil],
|
|
|
|
'powerpc64-linux' => ['powerpc64', 'linux', nil],
|
|
|
|
'sparc-solaris2.10' => ['sparc', 'solaris', '2.10'],
|
|
|
|
'sparc-solaris2.8' => ['sparc', 'solaris', '2.8'],
|
|
|
|
'sparc-solaris2.9' => ['sparc', 'solaris', '2.9'],
|
|
|
|
'universal-darwin8' => ['universal', 'darwin', '8'],
|
|
|
|
'universal-darwin9' => ['universal', 'darwin', '9'],
|
2012-04-18 04:04:12 +04:00
|
|
|
'universal-macruby' => ['universal', 'macruby', nil],
|
2007-11-10 10:48:56 +03:00
|
|
|
'i386-cygwin' => ['x86', 'cygwin', nil],
|
|
|
|
'i686-darwin' => ['x86', 'darwin', nil],
|
|
|
|
'i686-darwin8.4.1' => ['x86', 'darwin', '8'],
|
|
|
|
'i386-freebsd4.11' => ['x86', 'freebsd', '4'],
|
|
|
|
'i386-freebsd5' => ['x86', 'freebsd', '5'],
|
|
|
|
'i386-freebsd6' => ['x86', 'freebsd', '6'],
|
|
|
|
'i386-freebsd7' => ['x86', 'freebsd', '7'],
|
2012-11-29 10:52:18 +04:00
|
|
|
'i386-freebsd' => ['x86', 'freebsd', nil],
|
|
|
|
'universal-freebsd' => ['universal', 'freebsd', nil],
|
2007-11-10 10:48:56 +03:00
|
|
|
'i386-java1.5' => ['x86', 'java', '1.5'],
|
|
|
|
'x86-java1.6' => ['x86', 'java', '1.6'],
|
|
|
|
'i386-java1.6' => ['x86', 'java', '1.6'],
|
|
|
|
'i686-linux' => ['x86', 'linux', nil],
|
|
|
|
'i586-linux' => ['x86', 'linux', nil],
|
|
|
|
'i486-linux' => ['x86', 'linux', nil],
|
|
|
|
'i386-linux' => ['x86', 'linux', nil],
|
|
|
|
'i586-linux-gnu' => ['x86', 'linux', nil],
|
|
|
|
'i386-linux-gnu' => ['x86', 'linux', nil],
|
|
|
|
'i386-mingw32' => ['x86', 'mingw32', nil],
|
|
|
|
'i386-mswin32' => ['x86', 'mswin32', nil],
|
|
|
|
'i386-mswin32_80' => ['x86', 'mswin32', '80'],
|
2007-12-20 11:39:12 +03:00
|
|
|
'i386-mswin32-80' => ['x86', 'mswin32', '80'],
|
|
|
|
'x86-mswin32' => ['x86', 'mswin32', nil],
|
|
|
|
'x86-mswin32_60' => ['x86', 'mswin32', '60'],
|
|
|
|
'x86-mswin32-60' => ['x86', 'mswin32', '60'],
|
2012-11-29 10:52:18 +04:00
|
|
|
'i386-netbsdelf' => ['x86', 'netbsdelf', nil],
|
2007-11-10 10:48:56 +03:00
|
|
|
'i386-openbsd4.0' => ['x86', 'openbsd', '4.0'],
|
|
|
|
'i386-solaris2.10' => ['x86', 'solaris', '2.10'],
|
|
|
|
'i386-solaris2.8' => ['x86', 'solaris', '2.8'],
|
2007-11-25 06:26:36 +03:00
|
|
|
'mswin32' => ['x86', 'mswin32', nil],
|
2007-11-10 10:48:56 +03:00
|
|
|
'x86_64-linux' => ['x86_64', 'linux', nil],
|
|
|
|
'x86_64-openbsd3.9' => ['x86_64', 'openbsd', '3.9'],
|
|
|
|
'x86_64-openbsd4.0' => ['x86_64', 'openbsd', '4.0'],
|
2012-11-29 10:52:18 +04:00
|
|
|
'x86_64-openbsd' => ['x86_64', 'openbsd', nil],
|
2007-11-10 10:48:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
test_cases.each do |arch, expected|
|
|
|
|
platform = Gem::Platform.new arch
|
|
|
|
assert_equal expected, platform.to_a, arch.inspect
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_command_line
|
|
|
|
expected = ['x86', 'mswin32', nil]
|
|
|
|
|
|
|
|
platform = Gem::Platform.new 'i386-mswin32'
|
|
|
|
|
|
|
|
assert_equal expected, platform.to_a, 'i386-mswin32'
|
|
|
|
|
|
|
|
expected = ['x86', 'mswin32', '80']
|
|
|
|
|
|
|
|
platform = Gem::Platform.new 'i386-mswin32-80'
|
|
|
|
|
|
|
|
assert_equal expected, platform.to_a, 'i386-mswin32-80'
|
2008-09-25 14:13:50 +04:00
|
|
|
|
|
|
|
expected = ['x86', 'solaris', '2.10']
|
|
|
|
|
|
|
|
platform = Gem::Platform.new 'i386-solaris-2.10'
|
|
|
|
|
|
|
|
assert_equal expected, platform.to_a, 'i386-solaris-2.10'
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_mswin32_vc6
|
2009-04-30 16:25:23 +04:00
|
|
|
orig_RUBY_SO_NAME = RbConfig::CONFIG['RUBY_SO_NAME']
|
|
|
|
RbConfig::CONFIG['RUBY_SO_NAME'] = 'msvcrt-ruby18'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
expected = ['x86', 'mswin32', nil]
|
|
|
|
|
|
|
|
platform = Gem::Platform.new 'i386-mswin32'
|
|
|
|
|
|
|
|
assert_equal expected, platform.to_a, 'i386-mswin32 VC6'
|
|
|
|
ensure
|
2014-02-04 04:48:31 +04:00
|
|
|
if orig_RUBY_SO_NAME then
|
|
|
|
RbConfig::CONFIG['RUBY_SO_NAME'] = orig_RUBY_SO_NAME
|
|
|
|
else
|
|
|
|
RbConfig::CONFIG.delete 'RUBY_SO_NAME'
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_platform
|
|
|
|
platform = Gem::Platform.new 'cpu-my_platform1'
|
|
|
|
|
|
|
|
assert_equal 'cpu', platform.cpu
|
|
|
|
assert_equal 'my_platform', platform.os
|
|
|
|
assert_equal '1', platform.version
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_test
|
|
|
|
platform = Gem::Platform.new 'cpu-my_platform1'
|
|
|
|
assert_equal 'cpu', platform.cpu
|
|
|
|
assert_equal 'my_platform', platform.os
|
|
|
|
assert_equal '1', platform.version
|
|
|
|
|
|
|
|
platform = Gem::Platform.new 'cpu-other_platform1'
|
|
|
|
assert_equal 'cpu', platform.cpu
|
|
|
|
assert_equal 'other_platform', platform.os
|
|
|
|
assert_equal '1', platform.version
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_to_s
|
|
|
|
if win_platform? then
|
|
|
|
assert_equal 'x86-mswin32-60', Gem::Platform.local.to_s
|
|
|
|
else
|
|
|
|
assert_equal 'x86-darwin-8', Gem::Platform.local.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_equals2
|
|
|
|
my = Gem::Platform.new %w[cpu my_platform 1]
|
|
|
|
other = Gem::Platform.new %w[cpu other_platform 1]
|
|
|
|
|
|
|
|
assert_equal my, my
|
2008-10-26 02:58:43 +04:00
|
|
|
refute_equal my, other
|
|
|
|
refute_equal other, my
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_equals3
|
|
|
|
my = Gem::Platform.new %w[cpu my_platform 1]
|
|
|
|
other = Gem::Platform.new %w[cpu other_platform 1]
|
|
|
|
|
|
|
|
assert(my === my)
|
2009-06-10 01:38:59 +04:00
|
|
|
refute(other === my)
|
|
|
|
refute(my === other)
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_equals3_cpu
|
|
|
|
ppc_darwin8 = Gem::Platform.new 'powerpc-darwin8.0'
|
|
|
|
uni_darwin8 = Gem::Platform.new 'universal-darwin8.0'
|
|
|
|
x86_darwin8 = Gem::Platform.new 'i686-darwin8.0'
|
|
|
|
|
|
|
|
util_set_arch 'powerpc-darwin8'
|
|
|
|
assert((ppc_darwin8 === Gem::Platform.local), 'powerpc =~ universal')
|
|
|
|
assert((uni_darwin8 === Gem::Platform.local), 'powerpc =~ universal')
|
2009-06-10 01:38:59 +04:00
|
|
|
refute((x86_darwin8 === Gem::Platform.local), 'powerpc =~ universal')
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'i686-darwin8'
|
2009-06-10 01:38:59 +04:00
|
|
|
refute((ppc_darwin8 === Gem::Platform.local), 'powerpc =~ universal')
|
2007-11-10 10:48:56 +03:00
|
|
|
assert((uni_darwin8 === Gem::Platform.local), 'x86 =~ universal')
|
|
|
|
assert((x86_darwin8 === Gem::Platform.local), 'powerpc =~ universal')
|
|
|
|
|
|
|
|
util_set_arch 'universal-darwin8'
|
|
|
|
assert((ppc_darwin8 === Gem::Platform.local), 'universal =~ ppc')
|
|
|
|
assert((uni_darwin8 === Gem::Platform.local), 'universal =~ universal')
|
|
|
|
assert((x86_darwin8 === Gem::Platform.local), 'universal =~ x86')
|
|
|
|
end
|
|
|
|
|
2015-10-30 03:54:12 +03:00
|
|
|
def test_nil_cpu_arch_is_treated_as_universal
|
|
|
|
with_nil_arch = Gem::Platform.new [nil, 'mingw32']
|
|
|
|
with_uni_arch = Gem::Platform.new ['universal', 'mingw32']
|
|
|
|
with_x86_arch = Gem::Platform.new ['x86', 'mingw32']
|
|
|
|
|
|
|
|
assert((with_nil_arch === with_uni_arch), 'nil =~ universal')
|
|
|
|
assert((with_uni_arch === with_nil_arch), 'universal =~ nil')
|
|
|
|
assert((with_nil_arch === with_x86_arch), 'nil =~ x86')
|
|
|
|
assert((with_x86_arch === with_nil_arch), 'x86 =~ nil')
|
|
|
|
end
|
|
|
|
|
2013-09-14 12:59:02 +04:00
|
|
|
def test_equals3_cpu_arm
|
|
|
|
arm = Gem::Platform.new 'arm-linux'
|
|
|
|
armv5 = Gem::Platform.new 'armv5-linux'
|
|
|
|
armv7 = Gem::Platform.new 'armv7-linux'
|
|
|
|
|
|
|
|
util_set_arch 'armv5-linux'
|
|
|
|
assert((arm === Gem::Platform.local), 'arm === armv5')
|
|
|
|
assert((armv5 === Gem::Platform.local), 'armv5 === armv5')
|
|
|
|
refute((armv7 === Gem::Platform.local), 'armv7 === armv5')
|
|
|
|
refute((Gem::Platform.local === arm), 'armv5 === arm')
|
|
|
|
|
|
|
|
util_set_arch 'armv7-linux'
|
|
|
|
assert((arm === Gem::Platform.local), 'arm === armv7')
|
|
|
|
refute((armv5 === Gem::Platform.local), 'armv5 === armv7')
|
|
|
|
assert((armv7 === Gem::Platform.local), 'armv7 === armv7')
|
|
|
|
refute((Gem::Platform.local === arm), 'armv7 === arm')
|
|
|
|
end
|
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def test_equals3_version
|
|
|
|
util_set_arch 'i686-darwin8'
|
|
|
|
|
|
|
|
x86_darwin = Gem::Platform.new ['x86', 'darwin', nil]
|
|
|
|
x86_darwin7 = Gem::Platform.new ['x86', 'darwin', '7']
|
|
|
|
x86_darwin8 = Gem::Platform.new ['x86', 'darwin', '8']
|
|
|
|
x86_darwin9 = Gem::Platform.new ['x86', 'darwin', '9']
|
|
|
|
|
|
|
|
assert((x86_darwin === Gem::Platform.local), 'x86_darwin === x86_darwin8')
|
|
|
|
assert((x86_darwin8 === Gem::Platform.local), 'x86_darwin8 === x86_darwin8')
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
refute((x86_darwin7 === Gem::Platform.local), 'x86_darwin7 === x86_darwin8')
|
|
|
|
refute((x86_darwin9 === Gem::Platform.local), 'x86_darwin9 === x86_darwin8')
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_equals_tilde
|
|
|
|
util_set_arch 'i386-mswin32'
|
|
|
|
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'mswin32'
|
|
|
|
assert_local_match 'i386-mswin32'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
# oddballs
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'i386-mswin32-mq5.3'
|
|
|
|
assert_local_match 'i386-mswin32-mq6'
|
|
|
|
refute_local_match 'win32-1.8.2-VC7'
|
|
|
|
refute_local_match 'win32-1.8.4-VC6'
|
|
|
|
refute_local_match 'win32-source'
|
|
|
|
refute_local_match 'windows'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'i686-linux'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'i486-linux'
|
|
|
|
assert_local_match 'i586-linux'
|
|
|
|
assert_local_match 'i686-linux'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'i686-darwin8'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'i686-darwin8.4.1'
|
|
|
|
assert_local_match 'i686-darwin8.8.2'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'java'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'java'
|
|
|
|
assert_local_match 'jruby'
|
2011-05-15 15:55:52 +04:00
|
|
|
|
2010-04-22 12:24:42 +04:00
|
|
|
util_set_arch 'universal-dotnet2.0'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'universal-dotnet'
|
|
|
|
assert_local_match 'universal-dotnet-2.0'
|
|
|
|
refute_local_match 'universal-dotnet-4.0'
|
|
|
|
assert_local_match 'dotnet'
|
|
|
|
assert_local_match 'dotnet-2.0'
|
|
|
|
refute_local_match 'dotnet-4.0'
|
2011-05-15 15:55:52 +04:00
|
|
|
|
2010-04-22 12:24:42 +04:00
|
|
|
util_set_arch 'universal-dotnet4.0'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'universal-dotnet'
|
|
|
|
refute_local_match 'universal-dotnet-2.0'
|
|
|
|
assert_local_match 'universal-dotnet-4.0'
|
|
|
|
assert_local_match 'dotnet'
|
|
|
|
refute_local_match 'dotnet-2.0'
|
|
|
|
assert_local_match 'dotnet-4.0'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2012-04-18 04:04:12 +04:00
|
|
|
util_set_arch 'universal-macruby-1.0'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'universal-macruby'
|
|
|
|
assert_local_match 'macruby'
|
|
|
|
refute_local_match 'universal-macruby-0.10'
|
|
|
|
assert_local_match 'universal-macruby-1.0'
|
2012-04-18 04:04:12 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
util_set_arch 'powerpc-darwin'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'powerpc-darwin'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'powerpc-darwin7'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'powerpc-darwin7.9.0'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'powerpc-darwin8'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'powerpc-darwin8.10.0'
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
util_set_arch 'sparc-solaris2.8'
|
2012-05-09 08:09:25 +04:00
|
|
|
assert_local_match 'sparc-solaris2.8-mq5.3'
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2012-05-09 08:09:25 +04:00
|
|
|
def assert_local_match name
|
|
|
|
assert_match Gem::Platform.local, name
|
|
|
|
end
|
|
|
|
|
|
|
|
def refute_local_match name
|
|
|
|
refute_match Gem::Platform.local, name
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|