2016-02-01 15:43:26 +03:00
|
|
|
# frozen_string_literal: true
|
2023-03-17 12:36:42 +03:00
|
|
|
|
2021-06-02 06:32:47 +03:00
|
|
|
require_relative "helper"
|
2007-11-10 10:48:56 +03:00
|
|
|
require "rubygems/commands/specification_command"
|
|
|
|
|
2011-01-29 02:46:47 +03:00
|
|
|
class TestGemCommandsSpecificationCommand < Gem::TestCase
|
2007-11-10 10:48:56 +03:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::SpecificationCommand.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute
|
2013-11-12 04:16:41 +04:00
|
|
|
foo = util_spec "foo"
|
2011-06-01 07:45:05 +04:00
|
|
|
|
|
|
|
install_specs foo
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/Gem::Specification/, @ui.output)
|
|
|
|
assert_match(/name: foo/, @ui.output)
|
2007-11-10 10:48:56 +03:00
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_all
|
2015-07-02 00:50:14 +03:00
|
|
|
install_specs util_spec "foo", "0.0.1"
|
|
|
|
install_specs util_spec "foo", "0.0.2"
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:all] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/Gem::Specification/, @ui.output)
|
|
|
|
assert_match(/name: foo/, @ui.output)
|
|
|
|
assert_match(/version: 0.0.1/, @ui.output)
|
|
|
|
assert_match(/version: 0.0.2/, @ui.output)
|
2007-11-10 10:48:56 +03:00
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
|
2012-04-18 04:04:12 +04:00
|
|
|
def test_execute_all_conflicts_with_version
|
2013-11-12 04:16:41 +04:00
|
|
|
util_spec "foo", "0.0.1"
|
|
|
|
util_spec "foo", "0.0.2"
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:all] = true
|
|
|
|
@cmd.options[:version] = "1"
|
|
|
|
|
2021-05-11 06:25:46 +03:00
|
|
|
assert_raise Gem::MockGemUi::TermError do
|
2012-04-18 04:04:12 +04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "", @ui.output
|
|
|
|
assert_equal "ERROR: Specify --all or -v, not both\n", @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def test_execute_bad_name
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
2021-05-11 06:25:46 +03:00
|
|
|
assert_raise Gem::MockGemUi::TermError do
|
2007-11-10 10:48:56 +03:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "", @ui.output
|
2012-11-29 10:52:18 +04:00
|
|
|
assert_equal "ERROR: No gem matching 'foo (>= 0)' found\n", @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_bad_name_with_version
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:version] = "1.3.2"
|
|
|
|
|
2021-05-11 06:25:46 +03:00
|
|
|
assert_raise Gem::MockGemUi::TermError do
|
2012-11-29 10:52:18 +04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "", @ui.output
|
|
|
|
assert_equal "ERROR: No gem matching 'foo (= 1.3.2)' found\n", @ui.error
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_exact_match
|
2015-07-02 00:50:14 +03:00
|
|
|
install_specs util_spec "foo"
|
|
|
|
install_specs util_spec "foo_bar"
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/Gem::Specification/, @ui.output)
|
|
|
|
assert_match(/name: foo/, @ui.output)
|
2007-11-10 10:48:56 +03:00
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def test_execute_field
|
2018-05-30 16:01:35 +03:00
|
|
|
foo = util_spec "foo", "2"
|
2011-06-01 07:45:05 +04:00
|
|
|
|
|
|
|
install_specs foo
|
2009-06-10 01:38:59 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo name]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2021-05-17 05:59:59 +03:00
|
|
|
assert_equal "foo", load_yaml(@ui.output)
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
|
|
|
|
2012-11-29 10:52:18 +04:00
|
|
|
def test_execute_file
|
2013-11-12 04:16:41 +04:00
|
|
|
foo = util_spec "foo" do |s|
|
2012-11-29 10:52:18 +04:00
|
|
|
s.files = %w[lib/code.rb]
|
|
|
|
end
|
|
|
|
|
|
|
|
util_build_gem foo
|
|
|
|
|
|
|
|
@cmd.options[:args] = [foo.cache_file]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/Gem::Specification/, @ui.output)
|
|
|
|
assert_match(/name: foo/, @ui.output)
|
2012-11-29 10:52:18 +04:00
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def test_execute_marshal
|
2018-05-30 16:01:35 +03:00
|
|
|
foo = util_spec "foo", "2"
|
2011-06-01 07:45:05 +04:00
|
|
|
|
|
|
|
install_specs foo
|
2009-06-10 01:38:59 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:format] = :marshal
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal foo, Marshal.load(@ui.output)
|
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def test_execute_remote
|
2013-11-10 21:51:40 +04:00
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.spec "foo", 1
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2020-03-24 21:51:43 +03:00
|
|
|
assert_match %r{\A--- !ruby/object:Gem::Specification}, @ui.output
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/name: foo/, @ui.output)
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2012-04-18 04:04:12 +04:00
|
|
|
def test_execute_remote_with_version
|
2013-11-10 21:51:40 +04:00
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.spec "foo", "1"
|
|
|
|
fetcher.spec "foo", "2"
|
|
|
|
end
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:version] = "1"
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
spec = Gem::Specification.from_yaml @ui.output
|
|
|
|
|
|
|
|
assert_equal Gem::Version.new("1"), spec.version
|
|
|
|
end
|
|
|
|
|
2020-12-08 10:33:39 +03:00
|
|
|
def test_execute_remote_with_version_and_platform
|
|
|
|
original_platforms = Gem.platforms.dup
|
|
|
|
|
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.spec "foo", "1"
|
|
|
|
fetcher.spec "foo", "1" do |s|
|
|
|
|
s.platform = "x86_64-linux"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:version] = "1"
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
@cmd.options[:added_platform] = true
|
|
|
|
Gem.platforms = [Gem::Platform::RUBY, Gem::Platform.new("x86_64-linux")]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
spec = Gem::Specification.from_yaml @ui.output
|
|
|
|
|
|
|
|
assert_equal Gem::Version.new("1"), spec.version
|
|
|
|
assert_equal Gem::Platform.new("x86_64-linux"), spec.platform
|
|
|
|
ensure
|
|
|
|
Gem.platforms = original_platforms
|
|
|
|
end
|
|
|
|
|
2012-04-18 04:04:12 +04:00
|
|
|
def test_execute_remote_without_prerelease
|
2013-11-10 21:51:40 +04:00
|
|
|
spec_fetcher do |fetcher|
|
2013-11-12 04:16:41 +04:00
|
|
|
fetcher.spec "foo", "2.0.0"
|
|
|
|
fetcher.spec "foo", "2.0.1.pre"
|
2013-11-10 21:51:40 +04:00
|
|
|
end
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2020-03-24 21:51:43 +03:00
|
|
|
assert_match %r{\A--- !ruby/object:Gem::Specification}, @ui.output
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/name: foo/, @ui.output)
|
2012-04-18 04:04:12 +04:00
|
|
|
|
2021-05-17 05:59:59 +03:00
|
|
|
spec = load_yaml @ui.output
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
assert_equal Gem::Version.new("2.0.0"), spec.version
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_remote_with_prerelease
|
2013-11-10 21:51:40 +04:00
|
|
|
spec_fetcher do |fetcher|
|
2013-11-12 04:16:41 +04:00
|
|
|
fetcher.spec "foo", "2.0.0"
|
|
|
|
fetcher.spec "foo", "2.0.1.pre"
|
2013-11-10 21:51:40 +04:00
|
|
|
end
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
@cmd.options[:prerelease] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2020-03-24 21:51:43 +03:00
|
|
|
assert_match %r{\A--- !ruby/object:Gem::Specification}, @ui.output
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/name: foo/, @ui.output)
|
2012-04-18 04:04:12 +04:00
|
|
|
|
2021-05-17 05:59:59 +03:00
|
|
|
spec = load_yaml @ui.output
|
2012-04-18 04:04:12 +04:00
|
|
|
|
|
|
|
assert_equal Gem::Version.new("2.0.1.pre"), spec.version
|
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def test_execute_ruby
|
2013-11-12 04:16:41 +04:00
|
|
|
foo = util_spec "foo"
|
2011-06-01 07:45:05 +04:00
|
|
|
|
|
|
|
install_specs foo
|
2009-06-10 01:38:59 +04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:format] = :ruby
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/Gem::Specification.new/, @ui.output)
|
|
|
|
assert_match(/s.name = "foo"/, @ui.output)
|
2009-06-10 01:38:59 +04:00
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|