1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/rubygems/test_gem_package_old.rb
Yusuke Endoh b957c3dbcb [rubygems/rubygems] Rename test/rubygems/test_{case,utilities}.rb to avoid "test_" prefix
This changes "test/rubygems/test_case.rb" to "test/rubygems/helper.rb",
and "test/rubygems/test_utilities.rb" to "test/rubygems/utilities.rb".

The two files are a helper for tests, not test files. However, a file
starting with "test_" prefix is handled as a test file directly loaded
by test-unit because Rakefile specifies:

```
t.test_files = FileList['test/**/test_*.rb']
```

Directly loading test/rubygems/test_utilities.rb caused "uninitialized
constant Gem::TestCase". This issue was fixed by
59c6820971, but the fix caused a
"circular require" warning because test_utilities.rb and test_case.rb
are now requiring each other.

Anyway, adding "test_" prefix to a test helper file is confusing, so
this changeset reverts the fix and solve the issue by renaming them.

https://github.com/rubygems/rubygems/commit/6460e018df
2021-06-03 12:23:22 +09:00

90 lines
2.2 KiB
Ruby

# frozen_string_literal: true
require_relative 'helper'
unless Gem.java_platform? # jruby can't require the simple_gem file
require 'rubygems/simple_gem'
class TestGemPackageOld < Gem::TestCase
def setup
super
File.open 'old_format.gem', 'wb' do |io|
io.write SIMPLE_GEM
end
@package = Gem::Package::Old.new 'old_format.gem'
@destination = File.join @tempdir, 'extract'
FileUtils.mkdir_p @destination
end
def test_contents
assert_equal %w[lib/foo.rb lib/test.rb lib/test/wow.rb], @package.contents
end
def test_contents_security_policy
pend 'openssl is missing' unless Gem::HAVE_OPENSSL
@package.security_policy = Gem::Security::AlmostNoSecurity
assert_raise Gem::Security::Exception do
@package.contents
end
end
def test_extract_files
@package.extract_files @destination
extracted = File.join @destination, 'lib/foo.rb'
assert_path_exist extracted
mask = 0100644 & (~File.umask)
assert_equal mask, File.stat(extracted).mode unless win_platform?
end
def test_extract_files_security_policy
pend 'openssl is missing' unless Gem::HAVE_OPENSSL
@package.security_policy = Gem::Security::AlmostNoSecurity
assert_raise Gem::Security::Exception do
@package.extract_files @destination
end
end
def test_spec
assert_equal 'testing', @package.spec.name
end
def test_spec_security_policy
pend 'openssl is missing' unless Gem::HAVE_OPENSSL
@package.security_policy = Gem::Security::AlmostNoSecurity
assert_raise Gem::Security::Exception do
@package.spec
end
end
def test_verify
pend 'openssl is missing' unless Gem::HAVE_OPENSSL
assert @package.verify
@package.security_policy = Gem::Security::NoSecurity
assert @package.verify
@package.security_policy = Gem::Security::AlmostNoSecurity
e = assert_raise Gem::Security::Exception do
@package.verify
end
assert_equal 'old format gems do not contain signatures ' +
'and cannot be verified',
e.message
end
end
end