2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/commands/dependency_command'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsDependencyCommand < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::DependencyCommand.new
|
|
|
|
@cmd.options[:domain] = :local
|
2008-06-17 18:04:18 -04:00
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
util_setup_fake_fetcher true
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute
|
|
|
|
quick_gem 'foo' do |gem|
|
2007-12-20 03:39:12 -05:00
|
|
|
gem.add_dependency 'bar', '> 1'
|
2010-02-21 21:52:35 -05:00
|
|
|
gem.add_dependency 'baz', '> 1'
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2011-03-07 03:44:45 -05:00
|
|
|
assert_equal "Gem foo-2\n bar (> 1)\n baz (> 1)\n\n",
|
2010-02-21 21:52:35 -05:00
|
|
|
@ui.output
|
2007-11-10 02:48:56 -05:00
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
def test_execute_no_args
|
|
|
|
@cmd.options[:args] = []
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EOF
|
|
|
|
Gem a-1
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
Gem a-2.a
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
Gem a-2
|
|
|
|
|
2009-12-08 02:19:09 -05:00
|
|
|
Gem a-3.a
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
Gem a_evil-9
|
|
|
|
|
|
|
|
Gem b-2
|
|
|
|
|
|
|
|
Gem c-1.2
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
Gem dep_x-1
|
|
|
|
x (>= 1)
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
Gem pl-1-x86-linux
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
Gem x-1
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
assert_equal expected, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
def test_execute_no_match
|
|
|
|
@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
|
|
|
|
|
2008-06-17 18:04:18 -04:00
|
|
|
assert_equal "No gems found matching foo (>= 0)\n", @ui.output
|
2007-11-10 02:48:56 -05:00
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_pipe_format
|
2011-03-07 03:44:45 -05:00
|
|
|
quick_spec 'foo' do |gem|
|
2007-12-20 03:39:12 -05:00
|
|
|
gem.add_dependency 'bar', '> 1'
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:pipe_format] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2007-12-20 03:39:12 -05:00
|
|
|
assert_equal "bar --version '> 1'\n", @ui.output
|
2007-11-10 02:48:56 -05:00
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
def test_execute_regexp
|
|
|
|
@cmd.options[:args] = %w[/[ab]/]
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EOF
|
|
|
|
Gem a-1
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
Gem a-2.a
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
Gem a-2
|
|
|
|
|
2009-12-08 02:19:09 -05:00
|
|
|
Gem a-3.a
|
|
|
|
|
2008-06-19 14:15:26 -04:00
|
|
|
Gem a_evil-9
|
|
|
|
|
|
|
|
Gem b-2
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
assert_equal expected, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
def test_execute_reverse
|
2011-03-07 03:44:45 -05:00
|
|
|
# FIX: this shouldn't need to write out, but fails if you switch it
|
2007-11-10 02:48:56 -05:00
|
|
|
quick_gem 'foo' do |gem|
|
2007-12-20 03:39:12 -05:00
|
|
|
gem.add_dependency 'bar', '> 1'
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
quick_gem 'baz' do |gem|
|
|
|
|
gem.add_dependency 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:reverse_dependencies] = true
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EOF
|
2007-12-20 03:39:12 -05:00
|
|
|
Gem foo-2
|
2011-03-07 03:44:45 -05:00
|
|
|
bar (> 1)
|
2007-11-10 02:48:56 -05:00
|
|
|
Used by
|
2011-03-07 03:44:45 -05:00
|
|
|
baz-2 (foo (>= 0))
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
assert_equal expected, @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2008-06-17 18:04:18 -04:00
|
|
|
def test_execute_reverse_remote
|
|
|
|
@cmd.options[:args] = %w[foo]
|
|
|
|
@cmd.options[:reverse_dependencies] = true
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
assert_raises Gem::MockGemUi::TermError do
|
2008-06-17 18:04:18 -04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EOF
|
|
|
|
ERROR: Only reverse dependencies for local gems are supported.
|
|
|
|
EOF
|
|
|
|
|
|
|
|
assert_equal '', @ui.output
|
|
|
|
assert_equal expected, @ui.error
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
def test_execute_remote
|
|
|
|
foo = quick_gem 'foo' do |gem|
|
2007-12-20 03:39:12 -05:00
|
|
|
gem.add_dependency 'bar', '> 1'
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
2011-03-07 03:44:45 -05:00
|
|
|
assert_equal "Gem foo-2\n bar (> 1)\n\n", @ui.output
|
2007-11-10 02:48:56 -05:00
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
def test_execute_remote_version
|
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
|
|
|
util_setup_spec_fetcher @a1, @a2
|
|
|
|
|
|
|
|
@cmd.options[:args] = %w[a]
|
|
|
|
@cmd.options[:domain] = :remote
|
|
|
|
@cmd.options[:version] = req '= 1'
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "Gem a-1\n\n", @ui.output
|
|
|
|
assert_equal '', @ui.error
|
|
|
|
end
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
def test_execute_prerelease
|
2008-06-17 18:04:18 -04:00
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
util_clear_gems
|
2010-02-21 21:52:35 -05:00
|
|
|
util_setup_spec_fetcher @a2_pre
|
2008-06-17 18:04:18 -04:00
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
@cmd.options[:args] = %w[a]
|
2008-06-17 18:04:18 -04:00
|
|
|
@cmd.options[:domain] = :remote
|
2010-02-21 21:52:35 -05:00
|
|
|
@cmd.options[:prerelease] = true
|
2008-06-17 18:04:18 -04:00
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
|
2010-02-21 21:52:35 -05:00
|
|
|
assert_equal "Gem a-2.a\n\n", @ui.output
|
|
|
|
assert_equal '', @ui.error
|
2008-06-17 18:04:18 -04:00
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|