mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b957c3dbcb
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
117 lines
2.6 KiB
Ruby
117 lines
2.6 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
require 'rubygems'
|
|
|
|
begin
|
|
require 'rubygems/package_task'
|
|
rescue LoadError => e
|
|
raise unless e.path == 'rake/packagetask'
|
|
end
|
|
|
|
unless defined?(Rake::PackageTask)
|
|
warn 'Skipping Gem::PackageTask tests. rake not found.'
|
|
end
|
|
|
|
class TestGemPackageTask < Gem::TestCase
|
|
def test_gem_package
|
|
original_rake_fileutils_verbosity = RakeFileUtils.verbose_flag
|
|
RakeFileUtils.verbose_flag = false
|
|
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
|
|
g.authors = %w[author]
|
|
g.files = %w[x]
|
|
g.summary = 'summary'
|
|
end
|
|
|
|
Rake.application = Rake::Application.new
|
|
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
|
|
assert_equal %w[x y], pkg.package_files
|
|
|
|
Dir.chdir @tempdir do
|
|
FileUtils.touch 'x'
|
|
FileUtils.touch 'y'
|
|
|
|
Rake.application['package'].invoke
|
|
|
|
assert_path_exist 'pkg/pkgr-1.2.3.gem'
|
|
end
|
|
ensure
|
|
RakeFileUtils.verbose_flag = original_rake_fileutils_verbosity
|
|
end
|
|
|
|
def test_gem_package_prints_to_stdout_by_default
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
|
|
g.authors = %w[author]
|
|
g.files = %w[x]
|
|
g.summary = 'summary'
|
|
end
|
|
|
|
_, err = capture_output do
|
|
Rake.application = Rake::Application.new
|
|
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
|
|
assert_equal %w[x y], pkg.package_files
|
|
|
|
Dir.chdir @tempdir do
|
|
FileUtils.touch 'x'
|
|
FileUtils.touch 'y'
|
|
|
|
Rake.application['package'].invoke
|
|
end
|
|
end
|
|
|
|
assert_empty err
|
|
end
|
|
|
|
def test_gem_package_with_current_platform
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
g.files = Rake::FileList["x"].resolve
|
|
g.platform = Gem::Platform::CURRENT
|
|
end
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
assert_equal ["x", "y"], pkg.package_files
|
|
end
|
|
|
|
def test_gem_package_with_ruby_platform
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
g.files = Rake::FileList["x"].resolve
|
|
g.platform = Gem::Platform::RUBY
|
|
end
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
assert_equal ["x", "y"], pkg.package_files
|
|
end
|
|
|
|
def test_package_dir_path
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = 'nokogiri'
|
|
g.version = '1.5.0'
|
|
g.platform = 'java'
|
|
end
|
|
|
|
pkg = Gem::PackageTask.new gem
|
|
pkg.define
|
|
|
|
assert_equal 'pkg/nokogiri-1.5.0-java', pkg.package_dir_path
|
|
end
|
|
end if defined?(Rake::PackageTask)
|