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
158 lines
3 KiB
Ruby
158 lines
3 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
|
|
class TestGemResolverBestSet < Gem::TestCase
|
|
def setup
|
|
super
|
|
|
|
@DR = Gem::Resolver
|
|
end
|
|
|
|
def test_initialize
|
|
set = @DR::BestSet.new
|
|
|
|
assert_empty set.sets
|
|
end
|
|
|
|
def test_find_all_index
|
|
spec_fetcher do |fetcher|
|
|
fetcher.spec 'a', 1
|
|
fetcher.spec 'a', 2
|
|
fetcher.spec 'b', 1
|
|
end
|
|
|
|
set = @DR::BestSet.new
|
|
|
|
dependency = dep 'a', '~> 1'
|
|
|
|
req = @DR::DependencyRequest.new dependency, nil
|
|
|
|
found = set.find_all req
|
|
|
|
assert_equal %w[a-1], found.map {|s| s.full_name }
|
|
end
|
|
|
|
def test_find_all_fallback
|
|
spec_fetcher do |fetcher|
|
|
fetcher.spec 'a', 1
|
|
end
|
|
|
|
set = @DR::BestSet.new
|
|
|
|
api_uri = URI(@gem_repo)
|
|
|
|
set.sets << Gem::Resolver::APISet.new(api_uri)
|
|
|
|
dependency = dep 'a', '~> 1'
|
|
|
|
req = @DR::DependencyRequest.new dependency, nil
|
|
|
|
found = set.find_all req
|
|
|
|
assert_equal %w[a-1], found.map {|s| s.full_name }
|
|
end
|
|
|
|
def test_find_all_local
|
|
spec_fetcher do |fetcher|
|
|
fetcher.spec 'a', 1
|
|
fetcher.spec 'a', 2
|
|
fetcher.spec 'b', 1
|
|
end
|
|
|
|
set = @DR::BestSet.new
|
|
set.remote = false
|
|
|
|
dependency = dep 'a', '~> 1'
|
|
|
|
req = @DR::DependencyRequest.new dependency, nil
|
|
|
|
found = set.find_all req
|
|
|
|
assert_empty found
|
|
end
|
|
|
|
def test_prefetch
|
|
spec_fetcher do |fetcher|
|
|
fetcher.spec 'a', 1
|
|
end
|
|
|
|
set = @DR::BestSet.new
|
|
|
|
set.prefetch []
|
|
|
|
refute_empty set.sets
|
|
end
|
|
|
|
def test_prefetch_local
|
|
spec_fetcher do |fetcher|
|
|
fetcher.spec 'a', 1
|
|
end
|
|
|
|
set = @DR::BestSet.new
|
|
set.remote = false
|
|
|
|
set.prefetch []
|
|
|
|
assert_empty set.sets
|
|
end
|
|
|
|
def test_replace_failed_api_set
|
|
set = @DR::BestSet.new
|
|
|
|
api_uri = URI(@gem_repo) + './info/'
|
|
api_set = Gem::Resolver::APISet.new api_uri
|
|
|
|
set.sets << api_set
|
|
|
|
error_uri = api_uri + 'a'
|
|
|
|
error = Gem::RemoteFetcher::FetchError.new 'bogus', error_uri
|
|
|
|
set.replace_failed_api_set error
|
|
|
|
assert_equal 1, set.sets.size
|
|
|
|
refute_includes set.sets, api_set
|
|
|
|
assert_kind_of Gem::Resolver::IndexSet, set.sets.first
|
|
end
|
|
|
|
def test_replace_failed_api_set_no_api_set
|
|
set = @DR::BestSet.new
|
|
|
|
index_set = Gem::Resolver::IndexSet.new Gem::Source.new @gem_repo
|
|
|
|
set.sets << index_set
|
|
|
|
error = Gem::RemoteFetcher::FetchError.new 'bogus', @gem_repo
|
|
|
|
e = assert_raise Gem::RemoteFetcher::FetchError do
|
|
set.replace_failed_api_set error
|
|
end
|
|
|
|
assert_equal error, e
|
|
end
|
|
|
|
def test_replace_failed_api_set_uri_with_credentials
|
|
set = @DR::BestSet.new
|
|
|
|
api_uri = URI(@gem_repo) + './info/'
|
|
api_uri.user = 'user'
|
|
api_uri.password = 'pass'
|
|
api_set = Gem::Resolver::APISet.new api_uri
|
|
|
|
set.sets << api_set
|
|
|
|
error_uri = api_uri + 'a'
|
|
|
|
error = Gem::RemoteFetcher::FetchError.new 'bogus', error_uri
|
|
|
|
set.replace_failed_api_set error
|
|
|
|
assert_equal 1, set.sets.size
|
|
|
|
refute_includes set.sets, api_set
|
|
|
|
assert_kind_of Gem::Resolver::IndexSet, set.sets.first
|
|
end
|
|
end
|