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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
require 'rubygems/test_case'
require 'rubygems/local_remote_options'
require 'rubygems/command'
class TestGemLocalRemoteOptions < Gem::TestCase
def setup
super
@cmd = Gem::Command.new 'dummy', 'dummy'
@cmd.extend Gem::LocalRemoteOptions
end
def test_add_local_remote_options
@cmd.add_local_remote_options
args = %w[-l -r -b -B 10 --source http://gems.example.com -p --update-sources]
assert @cmd.handles?(args)
end
def test_both_eh
assert_equal false, @cmd.both?
@cmd.options[:domain] = :local
assert_equal false, @cmd.both?
@cmd.options[:domain] = :both
assert_equal true, @cmd.both?
end
def test_clear_sources_option
@cmd.add_local_remote_options
s = URI.parse "http://only-gems.example.com/"
@cmd.handle_options %W[--clear-sources --source #{s}]
assert_equal [s.to_s], Gem.sources
end
def test_clear_sources_option_idiot_proof
spec_fetcher
@cmd.add_local_remote_options
@cmd.handle_options %W[--clear-sources]
assert_equal Gem.default_sources, Gem.sources
end
def test_local_eh
assert_equal false, @cmd.local?
@cmd.options[:domain] = :local
assert_equal true, @cmd.local?
@cmd.options[:domain] = :both
assert_equal true, @cmd.local?
end
def test_remote_eh
assert_equal false, @cmd.remote?
@cmd.options[:domain] = :remote
assert_equal true, @cmd.remote?
@cmd.options[:domain] = :both
assert_equal true, @cmd.remote?
end
def test_source_option
@cmd.add_source_option
s1 = URI.parse 'http://more-gems.example.com/'
s2 = URI.parse 'http://even-more-gems.example.com/'
s3 = URI.parse 'http://other-gems.example.com/some_subdir'
s4 = URI.parse 'http://more-gems.example.com/' # Intentional duplicate
original_sources = Gem.sources.dup
@cmd.handle_options %W[--source #{s1} --source #{s2} --source #{s3} --source #{s4}]
original_sources << s1.to_s
original_sources << s2.to_s
original_sources << "#{s3}/"
assert_equal original_sources, Gem.sources
end
def test_short_source_option
@cmd.add_source_option
original_sources = Gem.sources.dup
source = URI.parse 'http://more-gems.example.com/'
@cmd.handle_options %W[-s #{source}]
original_sources << source
assert_equal original_sources, Gem.sources
end
def test_update_sources_option
@cmd.add_update_sources_option
Gem.configuration.update_sources = false
@cmd.handle_options %W[--update-sources]
assert_equal true, Gem.configuration.update_sources
@cmd.handle_options %W[--no-update-sources]
assert_equal false, Gem.configuration.update_sources
end
def test_source_option_bad
@cmd.add_source_option
s1 = 'htp://more-gems.example.com'
assert_raises OptionParser::InvalidArgument do
@cmd.handle_options %W[--source #{s1}]
end
assert_equal [@gem_repo], Gem.sources
end
end
|