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
124 lines
2.7 KiB
Ruby
124 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
require 'rubygems/package'
|
|
require 'rubygems/security'
|
|
require 'rubygems/commands/fetch_command'
|
|
|
|
class TestGemCommandsFetchCommand < Gem::TestCase
|
|
def setup
|
|
super
|
|
|
|
@cmd = Gem::Commands::FetchCommand.new
|
|
end
|
|
|
|
def test_execute
|
|
specs = spec_fetcher do |fetcher|
|
|
fetcher.gem 'a', 2
|
|
end
|
|
|
|
assert_path_not_exist File.join(@tempdir, 'cache'), 'sanity check'
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
use_ui @ui do
|
|
Dir.chdir @tempdir do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
a2 = specs['a-2']
|
|
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
|
"#{a2.full_name} not fetched")
|
|
assert_path_not_exist File.join(@tempdir, 'cache'),
|
|
'gem repository directories must not be created'
|
|
end
|
|
|
|
def test_execute_latest
|
|
specs = spec_fetcher do |fetcher|
|
|
fetcher.gem 'a', 1
|
|
fetcher.gem 'a', 2
|
|
end
|
|
|
|
assert_path_not_exist File.join(@tempdir, 'cache'), 'sanity check'
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
@cmd.options[:version] = req('>= 0.1')
|
|
|
|
use_ui @ui do
|
|
Dir.chdir @tempdir do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
a2 = specs['a-2']
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
|
"#{a2.full_name} not fetched")
|
|
assert_path_not_exist File.join(@tempdir, 'cache'),
|
|
'gem repository directories must not be created'
|
|
end
|
|
|
|
def test_execute_prerelease
|
|
specs = spec_fetcher do |fetcher|
|
|
fetcher.gem 'a', 2
|
|
fetcher.gem 'a', '2.a'
|
|
end
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
@cmd.options[:prerelease] = true
|
|
|
|
use_ui @ui do
|
|
Dir.chdir @tempdir do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
a2 = specs['a-2']
|
|
|
|
assert_path_exist(File.join(@tempdir, a2.file_name),
|
|
"#{a2.full_name} not fetched")
|
|
end
|
|
|
|
def test_execute_specific_prerelease
|
|
specs = spec_fetcher do |fetcher|
|
|
fetcher.gem 'a', 2
|
|
fetcher.gem 'a', '2.a'
|
|
end
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
@cmd.options[:prerelease] = true
|
|
@cmd.options[:version] = "2.a"
|
|
|
|
use_ui @ui do
|
|
Dir.chdir @tempdir do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
a2_pre = specs['a-2.a']
|
|
|
|
assert_path_exist(File.join(@tempdir, a2_pre.file_name),
|
|
"#{a2_pre.full_name} not fetched")
|
|
end
|
|
|
|
def test_execute_version
|
|
specs = spec_fetcher do |fetcher|
|
|
fetcher.gem 'a', 1
|
|
fetcher.gem 'a', 2
|
|
end
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
@cmd.options[:version] = Gem::Requirement.new '1'
|
|
|
|
use_ui @ui do
|
|
Dir.chdir @tempdir do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
a1 = specs['a-1']
|
|
|
|
assert_path_exist(File.join(@tempdir, a1.file_name),
|
|
"#{a1.full_name} not fetched")
|
|
end
|
|
end
|