summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_commands_query_command.rb
blob: 4430ccfd33709333060dec0c7f1ee3f634706a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
require 'test/unit'
require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
require 'rubygems/commands/query_command'

class TestGemCommandsQueryCommand < RubyGemTestCase

  def setup
    super

    @foo_gem = quick_gem 'foo' do |spec|
      spec.summary = 'This is a lot of text.  ' * 5
    end
    @foo_gem_p = quick_gem 'foo' do |spec|
      spec.summary = 'This is a lot of text.  ' * 5
      spec.platform = Gem::Platform::CURRENT
    end
    @bar_gem = quick_gem 'bar'

    @cmd = Gem::Commands::QueryCommand.new
  end

  def test_execute
    util_setup_source_info_cache @foo_gem, @foo_gem_p

    @cmd.handle_options %w[-r]

    use_ui @ui do
      @cmd.execute
    end

    expected = <<-EOF

*** REMOTE GEMS ***

foo (2)
    EOF

    assert_equal expected, @ui.output
    assert_equal '', @ui.error
  end

  def test_execute_details
    util_setup_source_info_cache @foo_gem

    @cmd.handle_options %w[-r -d]

    use_ui @ui do
      @cmd.execute
    end

    expected = <<-EOF

*** REMOTE GEMS ***

foo (2)
    This is a lot of text.  This is a lot of text.  This is a lot of
    text.  This is a lot of text.  This is a lot of text.
    EOF

    assert_equal expected, @ui.output
    assert_equal '', @ui.error
  end

  def test_execute_no_versions
    util_setup_source_info_cache @foo_gem, @bar_gem

    @cmd.handle_options %w[-r --no-versions]

    use_ui @ui do
      @cmd.execute
    end

    expected = <<-EOF

*** REMOTE GEMS ***

bar
foo
    EOF

    assert_equal expected, @ui.output
    assert_equal '', @ui.error
  end

end