2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/commands/specification_command'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsSpecificationCommand < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::SpecificationCommand.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute
|
2011-03-07 03:44:45 -05:00
|
|
|
foo = quick_spec 'foo'
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
install_specs foo
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_all
|
2011-03-07 03:44:45 -05:00
|
|
|
quick_spec 'foo', '0.0.1'
|
|
|
|
quick_spec 'foo', '0.0.2'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:all] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
assert_match %r|version: 0.0.1|, @ui.output
|
|
|
|
assert_match %r|version: 0.0.2|, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2012-04-17 20:04:12 -04:00
|
|
|
def test_execute_all_conflicts_with_version
|
|
|
|
quick_spec 'foo', '0.0.1'
|
|
|
|
quick_spec 'foo', '0.0.2'
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:all] = true
|
|
|
|
@cmd.options[:version] = "1"
|
|
|
|
|
|
|
|
assert_raises Gem::MockGemUi::TermError do
|
|
|
|
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 02:48:56 -05:00
|
|
|
def test_execute_bad_name
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
assert_raises Gem::MockGemUi::TermError do
|
2007-11-10 02:48:56 -05:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal '', @ui.output
|
2012-11-29 01:52:18 -05: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"
|
|
|
|
|
|
|
|
assert_raises Gem::MockGemUi::TermError do
|
|
|
|
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 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_exact_match
|
2011-03-07 03:44:45 -05:00
|
|
|
quick_spec 'foo'
|
|
|
|
quick_spec 'foo_bar'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
def test_execute_field
|
2011-05-31 23:45:05 -04:00
|
|
|
foo = new_spec 'foo', '2'
|
|
|
|
|
|
|
|
install_specs foo
|
2009-06-09 17:38:59 -04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo name]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
assert_equal "foo", YAML.load(@ui.output)
|
2009-06-09 17:38:59 -04:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def test_execute_file
|
|
|
|
foo = quick_spec 'foo' do |s|
|
|
|
|
s.files = %w[lib/code.rb]
|
|
|
|
end
|
|
|
|
|
|
|
|
util_build_gem foo
|
|
|
|
|
|
|
|
@cmd.options[:args] = [foo.cache_file]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
def test_execute_marshal
|
2011-05-31 23:45:05 -04:00
|
|
|
foo = new_spec 'foo', '2'
|
|
|
|
|
|
|
|
install_specs foo
|
2009-06-09 17: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 02:48:56 -05:00
|
|
|
def test_execute_remote
|
|
|
|
foo = quick_gem 'foo'
|
|
|
|
|
2008-06-17 18:04:18 -04:00
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
|
|
|
util_setup_spec_fetcher foo
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
FileUtils.rm File.join(@gemhome, 'specifications', foo.spec_name)
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2008-02-10 03:00:19 -05:00
|
|
|
assert_match %r|\A--- !ruby/object:Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2012-04-17 20:04:12 -04:00
|
|
|
def test_execute_remote_with_version
|
|
|
|
foo1 = quick_gem 'foo', "1"
|
|
|
|
foo2 = quick_gem 'foo', "2"
|
|
|
|
|
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
|
|
|
util_setup_spec_fetcher foo1, foo2
|
|
|
|
|
|
|
|
FileUtils.rm File.join(@gemhome, 'specifications', foo1.spec_name)
|
|
|
|
FileUtils.rm File.join(@gemhome, 'specifications', foo2.spec_name)
|
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
|
def test_execute_remote_without_prerelease
|
|
|
|
foo = new_spec 'foo', '2.0.0'
|
|
|
|
foo_pre = new_spec 'foo', '2.0.1.pre'
|
|
|
|
|
|
|
|
install_specs foo, foo_pre
|
|
|
|
|
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
|
|
|
util_setup_spec_fetcher foo
|
|
|
|
util_setup_spec_fetcher foo_pre
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|\A--- !ruby/object:Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
|
|
|
|
spec = YAML.load @ui.output
|
|
|
|
|
|
|
|
assert_equal Gem::Version.new("2.0.0"), spec.version
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_remote_with_prerelease
|
|
|
|
foo = new_spec 'foo', '2.0.0'
|
|
|
|
foo_pre = new_spec 'foo', '2.0.1.pre'
|
|
|
|
|
|
|
|
install_specs foo, foo_pre
|
|
|
|
|
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
|
|
|
util_setup_spec_fetcher foo
|
|
|
|
util_setup_spec_fetcher foo_pre
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
@cmd.options[:prerelease] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|\A--- !ruby/object:Gem::Specification|, @ui.output
|
|
|
|
assert_match %r|name: foo|, @ui.output
|
|
|
|
|
|
|
|
spec = YAML.load @ui.output
|
|
|
|
|
|
|
|
assert_equal Gem::Version.new("2.0.1.pre"), spec.version
|
|
|
|
end
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
def test_execute_ruby
|
2011-03-07 03:44:45 -05:00
|
|
|
foo = quick_spec 'foo'
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
install_specs foo
|
2009-06-09 17:38:59 -04:00
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:format] = :ruby
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r|Gem::Specification.new|, @ui.output
|
2011-08-25 21:10:50 -04:00
|
|
|
assert_match %r|s.name = "foo"|, @ui.output
|
2009-06-09 17:38:59 -04:00
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|