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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++
require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
require 'rubygems/config_file'
class TestGemConfigFile < RubyGemTestCase
def setup
super
@temp_conf = File.join @tempdir, '.gemrc'
@cfg_args = %W[--config-file #{@temp_conf}]
@orig_SYSTEM_WIDE_CONFIG_FILE = Gem::ConfigFile::SYSTEM_WIDE_CONFIG_FILE
Gem::ConfigFile.send :remove_const, :SYSTEM_WIDE_CONFIG_FILE
Gem::ConfigFile.send :const_set, :SYSTEM_WIDE_CONFIG_FILE,
File.join(@tempdir, 'system-gemrc')
Gem::ConfigFile::OPERATING_SYSTEM_DEFAULTS.clear
Gem::ConfigFile::PLATFORM_DEFAULTS.clear
util_config_file
end
def teardown
Gem::ConfigFile::OPERATING_SYSTEM_DEFAULTS.clear
Gem::ConfigFile::PLATFORM_DEFAULTS.clear
Gem::ConfigFile.send :remove_const, :SYSTEM_WIDE_CONFIG_FILE
Gem::ConfigFile.send :const_set, :SYSTEM_WIDE_CONFIG_FILE,
@orig_SYSTEM_WIDE_CONFIG_FILE
super
end
def test_initialize
assert_equal @temp_conf, @cfg.config_file_name
assert_equal false, @cfg.backtrace
assert_equal true, @cfg.update_sources
assert_equal false, @cfg.benchmark
assert_equal Gem::ConfigFile::DEFAULT_BULK_THRESHOLD, @cfg.bulk_threshold
assert_equal true, @cfg.verbose
assert_equal [@gem_repo], Gem.sources
File.open @temp_conf, 'w' do |fp|
fp.puts ":backtrace: true"
fp.puts ":update_sources: false"
fp.puts ":benchmark: true"
fp.puts ":bulk_threshold: 10"
fp.puts ":verbose: false"
fp.puts ":sources:"
fp.puts " - http://more-gems.example.com"
fp.puts "install: --wrappers"
fp.puts ":gempath:"
fp.puts "- /usr/ruby/1.8/lib/ruby/gems/1.8"
fp.puts "- /var/ruby/1.8/gem_home"
end
util_config_file
assert_equal true, @cfg.backtrace
assert_equal true, @cfg.benchmark
assert_equal 10, @cfg.bulk_threshold
assert_equal false, @cfg.verbose
assert_equal false, @cfg.update_sources
assert_equal %w[http://more-gems.example.com], Gem.sources
assert_equal '--wrappers', @cfg[:install]
assert_equal(['/usr/ruby/1.8/lib/ruby/gems/1.8', '/var/ruby/1.8/gem_home'],
@cfg.path)
end
def test_initialize_handle_arguments_config_file
util_config_file %W[--config-file #{@temp_conf}]
assert_equal @temp_conf, @cfg.config_file_name
end
def test_initialize_handle_arguments_config_file_with_other_params
util_config_file %W[--config-file #{@temp_conf} --backtrace]
assert_equal @temp_conf, @cfg.config_file_name
end
def test_initialize_handle_arguments_config_file_equals
util_config_file %W[--config-file=#{@temp_conf}]
assert_equal @temp_conf, @cfg.config_file_name
end
def test_initialize_operating_system_override
Gem::ConfigFile::OPERATING_SYSTEM_DEFAULTS[:bulk_threshold] = 1
Gem::ConfigFile::OPERATING_SYSTEM_DEFAULTS['install'] = '--no-env-shebang'
Gem::ConfigFile::PLATFORM_DEFAULTS[:bulk_threshold] = 2
util_config_file
assert_equal 2, @cfg.bulk_threshold
assert_equal '--no-env-shebang', @cfg[:install]
end
def test_initialize_platform_override
Gem::ConfigFile::PLATFORM_DEFAULTS[:bulk_threshold] = 2
Gem::ConfigFile::PLATFORM_DEFAULTS['install'] = '--no-env-shebang'
File.open Gem::ConfigFile::SYSTEM_WIDE_CONFIG_FILE, 'w' do |fp|
fp.puts ":bulk_threshold: 3"
end
util_config_file
assert_equal 3, @cfg.bulk_threshold
assert_equal '--no-env-shebang', @cfg[:install]
end
def test_initialize_system_wide_override
File.open Gem::ConfigFile::SYSTEM_WIDE_CONFIG_FILE, 'w' do |fp|
fp.puts ":backtrace: false"
fp.puts ":bulk_threshold: 2048"
end
File.open @temp_conf, 'w' do |fp|
fp.puts ":backtrace: true"
end
util_config_file
assert_equal 2048, @cfg.bulk_threshold
assert_equal true, @cfg.backtrace
end
def test_handle_arguments
args = %w[--backtrace --bunch --of --args here]
@cfg.handle_arguments args
assert_equal %w[--bunch --of --args here], @cfg.args
end
def test_handle_arguments_backtrace
assert_equal false, @cfg.backtrace
args = %w[--backtrace]
@cfg.handle_arguments args
assert_equal true, @cfg.backtrace
end
def test_handle_arguments_benchmark
assert_equal false, @cfg.benchmark
args = %w[--benchmark]
@cfg.handle_arguments args
assert_equal true, @cfg.benchmark
end
def test_handle_arguments_debug
old_dollar_DEBUG = $DEBUG
assert_equal false, $DEBUG
args = %w[--debug]
@cfg.handle_arguments args
assert_equal true, $DEBUG
ensure
$DEBUG = old_dollar_DEBUG
end
def test_handle_arguments_override
File.open @temp_conf, 'w' do |fp|
fp.puts ":benchmark: false"
end
util_config_file %W[--benchmark --config-file=#{@temp_conf}]
assert_equal true, @cfg.benchmark
end
def test_handle_arguments_traceback
assert_equal false, @cfg.backtrace
args = %w[--traceback]
@cfg.handle_arguments args
assert_equal true, @cfg.backtrace
end
def test_really_verbose
assert_equal false, @cfg.really_verbose
@cfg.verbose = true
assert_equal false, @cfg.really_verbose
@cfg.verbose = 1
assert_equal true, @cfg.really_verbose
end
def test_write
@cfg.backtrace = true
@cfg.benchmark = true
@cfg.update_sources = false
@cfg.bulk_threshold = 10
@cfg.verbose = false
Gem.sources.replace %w[http://more-gems.example.com]
@cfg[:install] = '--wrappers'
@cfg.write
util_config_file
# These should not be written out to the config file.
assert_equal false, @cfg.backtrace, 'backtrace'
assert_equal false, @cfg.benchmark, 'benchmark'
assert_equal Gem::ConfigFile::DEFAULT_BULK_THRESHOLD, @cfg.bulk_threshold,
'bulk_threshold'
assert_equal true, @cfg.update_sources, 'update_sources'
assert_equal true, @cfg.verbose, 'verbose'
assert_equal '--wrappers', @cfg[:install], 'install'
# this should be written out to the config file.
assert_equal %w[http://more-gems.example.com], Gem.sources
end
def test_write_from_hash
File.open @temp_conf, 'w' do |fp|
fp.puts ":backtrace: true"
fp.puts ":benchmark: true"
fp.puts ":bulk_threshold: 10"
fp.puts ":update_sources: false"
fp.puts ":verbose: false"
fp.puts ":sources:"
fp.puts " - http://more-gems.example.com"
fp.puts "install: --wrappers"
end
util_config_file
@cfg.backtrace = :junk
@cfg.benchmark = :junk
@cfg.update_sources = :junk
@cfg.bulk_threshold = 20
@cfg.verbose = :junk
Gem.sources.replace %w[http://even-more-gems.example.com]
@cfg[:install] = '--wrappers --no-rdoc'
@cfg.write
util_config_file
# These should not be written out to the config file
assert_equal true, @cfg.backtrace, 'backtrace'
assert_equal true, @cfg.benchmark, 'benchmark'
assert_equal 10, @cfg.bulk_threshold, 'bulk_threshold'
assert_equal false, @cfg.update_sources, 'update_sources'
assert_equal false, @cfg.verbose, 'verbose'
assert_equal '--wrappers --no-rdoc', @cfg[:install], 'install'
assert_equal %w[http://even-more-gems.example.com], Gem.sources
end
def util_config_file(args = @cfg_args)
@cfg = Gem::ConfigFile.new args
end
end
|