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_resolver_vendor_set.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

81 lines
1.8 KiB
Ruby

# frozen_string_literal: true
require_relative 'helper'
class TestGemResolverVendorSet < Gem::TestCase
def setup
super
@set = Gem::Resolver::VendorSet.new
end
def test_add_vendor_gem
name, version, directory = vendor_gem
added = @set.add_vendor_gem name, directory
spec = @set.load_spec name, version, Gem::Platform::RUBY, nil
assert_equal spec, added
assert_equal "#{name}-#{version}", spec.full_name
assert_equal File.expand_path(directory), spec.full_gem_path
end
def test_add_vendor_gem_missing
name, _, directory = vendor_gem
FileUtils.rm_r directory
e = assert_raise Gem::GemNotFoundException do
@set.add_vendor_gem name, directory
end
assert_equal "unable to find #{directory}/#{name}.gemspec for gem #{name}",
e.message
end
def test_find_all
name, version, directory = vendor_gem
@set.add_vendor_gem name, directory
dependency = dep 'a', '~> 1'
req = Gem::Resolver::DependencyRequest.new dependency, nil
found = @set.find_all req
spec = @set.load_spec name, version, Gem::Platform::RUBY, nil
source = Gem::Source::Vendor.new directory
expected = [
Gem::Resolver::VendorSpecification.new(@set, spec, source),
]
assert_equal expected, found
end
def test_find_all_prerelease
name, _, directory = vendor_gem 'a', '1.a'
@set.add_vendor_gem name, directory
req = Gem::Resolver::DependencyRequest.new dep('a'), nil
assert_empty @set.find_all req
req = Gem::Resolver::DependencyRequest.new dep('a', '>= 0.a'), nil
refute_empty @set.find_all req
end
def test_load_spec
error = Object.const_defined?(:KeyError) ? KeyError : IndexError
assert_raise error do
@set.load_spec 'b', v(1), Gem::Platform::RUBY, nil
end
end
end