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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# frozen_string_literal: true
require_relative "helper"
class TestGemGemRunner < Gem::TestCase
def setup
@orig_gem_home = ENV["GEM_HOME"]
ENV["GEM_HOME"] = @gemhome
require "rubygems/command"
@orig_args = Gem::Command.build_args
@orig_specific_extra_args = Gem::Command.specific_extra_args_hash.dup
@orig_extra_args = Gem::Command.extra_args.dup
super
require "rubygems/gem_runner"
@runner = Gem::GemRunner.new
end
def teardown
super
Gem::Command.build_args = @orig_args
Gem::Command.specific_extra_args_hash = @orig_specific_extra_args
Gem::Command.extra_args = @orig_extra_args
ENV["GEM_HOME"] = @orig_gem_home
end
def test_do_configuration
Gem.clear_paths
temp_conf = File.join @tempdir, ".gemrc"
other_gem_path = File.join @tempdir, "other_gem_path"
other_gem_home = File.join @tempdir, "other_gem_home"
Gem.ensure_gem_subdirectories other_gem_path
Gem.ensure_gem_subdirectories other_gem_home
File.open temp_conf, "w" do |fp|
fp.puts "gem: --commands"
fp.puts "gemhome: #{other_gem_home}"
fp.puts "gempath:"
fp.puts " - #{other_gem_path}"
fp.puts "rdoc: --all"
end
gr = Gem::GemRunner.new
gr.send :do_configuration, %W[--config-file #{temp_conf}]
assert_equal [other_gem_path, other_gem_home], Gem.path
assert_equal %w[--commands], Gem::Command.extra_args
end
def test_extract_build_args
args = %w[]
assert_equal [], @runner.extract_build_args(args)
assert_equal %w[], args
args = %w[foo]
assert_equal [], @runner.extract_build_args(args)
assert_equal %w[foo], args
args = %w[--foo]
assert_equal [], @runner.extract_build_args(args)
assert_equal %w[--foo], args
args = %w[--foo --]
assert_equal [], @runner.extract_build_args(args)
assert_equal %w[--foo], args
args = %w[--foo -- --bar]
assert_equal %w[--bar], @runner.extract_build_args(args)
assert_equal %w[--foo], args
end
def test_query_is_deprecated
args = %w[query]
use_ui @ui do
@runner.run(args)
end
assert_match(/WARNING: query command is deprecated. It will be removed in Rubygems [0-9]+/, @ui.error)
assert_match(/WARNING: It is recommended that you use `gem search` or `gem list` instead/, @ui.error)
end
def test_info_succeeds
args = %w[info]
use_ui @ui do
@runner.run(args)
end
assert_empty @ui.error
end
def test_list_succeeds
args = %w[list]
use_ui @ui do
@runner.run(args)
end
assert_empty @ui.error
end
def test_search_succeeds
args = %w[search]
use_ui @ui do
@runner.run(args)
end
assert_empty @ui.error
end
end
|