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
97 lines
2.1 KiB
Ruby
97 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
require 'rubygems/installer'
|
|
require 'rubygems/resolver'
|
|
|
|
class TestGemResolverLockSpecification < Gem::TestCase
|
|
def setup
|
|
super
|
|
|
|
@LS = Gem::Resolver::LockSpecification
|
|
|
|
@source = Gem::Source.new @gem_repo
|
|
@set = Gem::Resolver::LockSet.new [@source]
|
|
end
|
|
|
|
def test_initialize
|
|
spec = @LS.new @set, 'a', v(2), [@source], Gem::Platform::RUBY
|
|
|
|
assert_equal 'a', spec.name
|
|
assert_equal v(2), spec.version
|
|
assert_equal Gem::Platform::RUBY, spec.platform
|
|
|
|
assert_equal @source, spec.source
|
|
end
|
|
|
|
def test_add_dependency
|
|
l_spec = @LS.new @set, 'a', v(2), [@source], Gem::Platform::RUBY
|
|
|
|
b_dep = dep('b', '>= 0')
|
|
|
|
l_spec.add_dependency b_dep
|
|
|
|
assert_equal [b_dep], l_spec.dependencies
|
|
end
|
|
|
|
def test_install
|
|
spec_fetcher do |fetcher|
|
|
fetcher.download 'a', 2
|
|
end
|
|
|
|
spec = @LS.new @set, 'a', v(2), [@source], Gem::Platform::RUBY
|
|
|
|
called = false
|
|
|
|
spec.install({}) do |installer|
|
|
called = installer
|
|
end
|
|
|
|
refute_nil called
|
|
end
|
|
|
|
def test_install_installed
|
|
spec = @LS.new @set, 'a', v(2), [@source], Gem::Platform::RUBY
|
|
|
|
FileUtils.touch File.join(@gemhome, 'specifications', spec.spec.spec_name)
|
|
|
|
called = false
|
|
|
|
spec.install({}) do |installer|
|
|
called = installer
|
|
end
|
|
|
|
assert_nil called
|
|
end
|
|
|
|
def test_spec
|
|
version = v(2)
|
|
|
|
l_spec = @LS.new @set, 'a', version, [@source], Gem::Platform::RUBY
|
|
|
|
b_dep = dep 'b', '>= 0'
|
|
c_dep = dep 'c', '~> 1'
|
|
|
|
l_spec.add_dependency b_dep
|
|
l_spec.add_dependency c_dep
|
|
|
|
spec = l_spec.spec
|
|
|
|
assert_equal 'a', spec.name
|
|
assert_equal version, spec.version
|
|
assert_equal Gem::Platform::RUBY, spec.platform
|
|
|
|
assert_equal [b_dep, c_dep], l_spec.spec.dependencies
|
|
end
|
|
|
|
def test_spec_loaded
|
|
real_spec = util_spec 'a', 2
|
|
install_specs real_spec
|
|
real_spec.activate
|
|
|
|
version = v(2)
|
|
|
|
l_spec = @LS.new @set, 'a', version, [@source], Gem::Platform::RUBY
|
|
|
|
assert_same real_spec, l_spec.spec
|
|
end
|
|
end
|