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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
# Copyright (C) 2005 by Canonical Ltd
# Authors: Robert Collins <robert.collins@canonical.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Tests for finding and reading the bzr config file[s]."""
# import system imports here
from ConfigParser import ConfigParser
from cStringIO import StringIO
import os
import sys
#import bzrlib specific imports here
import bzrlib.config as config
import bzrlib.errors as errors
from bzrlib.selftest import TestCase, TestCaseInTempDir
sample_config_text = ("[DEFAULT]\n"
"email=Robert Collins <robertc@example.com>\n"
"editor=vim\n"
"gpg_signing_command=gnome-gpg\n")
sample_branches_text = ("[http://www.example.com]\n"
"# Top level policy\n"
"email=Robert Collins <robertc@example.org>\n"
"[http://www.example.com/useglobal]\n"
"# different project, forces global lookup\n"
"recurse=false\n"
"[/b/]\n"
"# test trailing / matching with no children\n"
"[/a/]\n"
"# test trailing / matching\n"
"[/a/*]\n"
"#subdirs will match but not the parent\n"
"recurse=False\n"
"[/a/c]\n"
"#testing explicit beats globs\n")
class InstrumentedConfigParser(object):
"""A config parser look-enough-alike to record calls made to it."""
def __init__(self):
self._calls = []
def read(self, filenames):
self._calls.append(('read', filenames))
class FakeBranch(object):
def __init__(self):
self.base = "http://example.com/branches/demo"
self.email = 'Robert Collins <robertc@example.net>\n'
def controlfile(self, filename, mode):
if filename != 'email':
raise NotImplementedError
if self.email is not None:
return StringIO(self.email)
raise errors.NoSuchFile
class InstrumentedConfig(config.Config):
"""An instrumented config that supplies stubs for template methods."""
def __init__(self):
super(InstrumentedConfig, self).__init__()
self._calls = []
self._signatures = config.CHECK_NEVER
def _get_user_id(self):
self._calls.append('_get_user_id')
return "Robert Collins <robert.collins@example.org>"
def _get_signature_checking(self):
self._calls.append('_get_signature_checking')
return self._signatures
class TestConfig(TestCase):
def test_constructs(self):
config.Config()
def test_no_default_editor(self):
self.assertRaises(NotImplementedError, config.Config().get_editor)
def test_user_email(self):
my_config = InstrumentedConfig()
self.assertEqual('robert.collins@example.org', my_config.user_email())
self.assertEqual(['_get_user_id'], my_config._calls)
def test_username(self):
my_config = InstrumentedConfig()
self.assertEqual('Robert Collins <robert.collins@example.org>',
my_config.username())
self.assertEqual(['_get_user_id'], my_config._calls)
def test_signatures_default(self):
my_config = config.Config()
self.assertEqual(config.CHECK_IF_POSSIBLE,
my_config.signature_checking())
def test_signatures_template_method(self):
my_config = InstrumentedConfig()
self.assertEqual(config.CHECK_NEVER, my_config.signature_checking())
self.assertEqual(['_get_signature_checking'], my_config._calls)
def test_signatures_template_method_none(self):
my_config = InstrumentedConfig()
my_config._signatures = None
self.assertEqual(config.CHECK_IF_POSSIBLE,
my_config.signature_checking())
self.assertEqual(['_get_signature_checking'], my_config._calls)
class TestConfigPath(TestCase):
def setUp(self):
super(TestConfigPath, self).setUp()
self.oldenv = os.environ.get('HOME', None)
os.environ['HOME'] = '/home/bogus'
def tearDown(self):
os.environ['HOME'] = self.oldenv
def test_config_dir(self):
self.assertEqual(config.config_dir(), '/home/bogus/.bazaar')
def test_config_filename(self):
self.assertEqual(config.config_filename(),
'/home/bogus/.bazaar/bazaar.conf')
def test_branches_config_filename(self):
self.assertEqual(config.branches_config_filename(),
'/home/bogus/.bazaar/branches.conf')
class TestGetConfig(TestCase):
def test_constructs(self):
my_config = config.GlobalConfig()
def test_from_fp(self):
config_file = StringIO(sample_config_text)
my_config = config.GlobalConfig()
self.failUnless(
isinstance(my_config._get_config_parser(file=config_file),
ConfigParser))
def test_cached(self):
config_file = StringIO(sample_config_text)
my_config = config.GlobalConfig()
parser = my_config._get_config_parser(file=config_file)
self.failUnless(my_config._get_config_parser() is parser)
def test_calls_read_filenames(self):
# replace the class that is constructured, to check its parameters
oldparserclass = config.ConfigParser
config.ConfigParser = InstrumentedConfigParser
my_config = config.GlobalConfig()
try:
parser = my_config._get_config_parser()
finally:
config.ConfigParser = oldparserclass
self.failUnless(isinstance(parser, InstrumentedConfigParser))
self.assertEqual(parser._calls, [('read', [config.config_filename()])])
class TestBranchConfig(TestCaseInTempDir):
def test_constructs(self):
branch = FakeBranch()
my_config = config.BranchConfig(branch)
self.assertRaises(TypeError, config.BranchConfig)
def test_get_location_config(self):
branch = FakeBranch()
my_config = config.BranchConfig(branch)
location_config = my_config._get_location_config()
self.assertEqual(branch.base, location_config.location)
self.failUnless(location_config is my_config._get_location_config())
class TestConfigItems(TestCase):
def setUp(self):
super(TestConfigItems, self).setUp()
self.bzr_email = os.environ.get('BZREMAIL')
if self.bzr_email is not None:
del os.environ['BZREMAIL']
self.email = os.environ.get('EMAIL')
if self.email is not None:
del os.environ['EMAIL']
self.oldenv = os.environ.get('HOME', None)
os.environ['HOME'] = os.getcwd()
def tearDown(self):
os.environ['HOME'] = self.oldenv
if os.environ.get('BZREMAIL') is not None:
del os.environ['BZREMAIL']
if self.bzr_email is not None:
os.environ['BZREMAIL'] = self.bzr_email
if self.email is not None:
os.environ['EMAIL'] = self.email
super(TestConfigItems, self).tearDown()
class TestGlobalConfigItems(TestConfigItems):
def test_user_id(self):
config_file = StringIO(sample_config_text)
my_config = config.GlobalConfig()
my_config._parser = my_config._get_config_parser(file=config_file)
self.assertEqual("Robert Collins <robertc@example.com>",
my_config._get_user_id())
def test_absent_user_id(self):
config_file = StringIO("")
my_config = config.GlobalConfig()
my_config._parser = my_config._get_config_parser(file=config_file)
self.assertEqual(None, my_config._get_user_id())
def test_configured_editor(self):
config_file = StringIO(sample_config_text)
my_config = config.GlobalConfig()
my_config._parser = my_config._get_config_parser(file=config_file)
self.assertEqual("vim", my_config.get_editor())
class TestLocationConfig(TestConfigItems):
def test_constructs(self):
my_config = config.LocationConfig('http://example.com')
self.assertRaises(TypeError, config.LocationConfig)
def test_cached(self):
config_file = StringIO(sample_config_text)
my_config = config.LocationConfig('http://example.com')
parser = my_config._get_branches_config_parser(file=config_file)
self.failUnless(my_config._get_branches_config_parser() is parser)
def test_branches_from_fp(self):
config_file = StringIO(sample_config_text)
my_config = config.LocationConfig('http://example.com')
self.failUnless(isinstance(
my_config._get_branches_config_parser(file=config_file),
ConfigParser))
def test_branch_calls_read_filenames(self):
# replace the class that is constructured, to check its parameters
oldparserclass = config.ConfigParser
config.ConfigParser = InstrumentedConfigParser
my_config = config.LocationConfig('http://www.example.com')
try:
parser = my_config._get_branches_config_parser()
finally:
config.ConfigParser = oldparserclass
self.failUnless(isinstance(parser, InstrumentedConfigParser))
self.assertEqual(parser._calls, [('read', [config.branches_config_filename()])])
def test_get_global_config(self):
my_config = config.LocationConfig('http://example.com')
global_config = my_config._get_global_config()
self.failUnless(isinstance(global_config, config.GlobalConfig))
self.failUnless(global_config is my_config._get_global_config())
def test__get_section_no_match(self):
self.get_location_config('/')
self.assertEqual(None, self.my_config._get_section())
def test__get_section_exact(self):
self.get_location_config('http://www.example.com')
self.assertEqual('http://www.example.com',
self.my_config._get_section())
def test__get_section_suffix_does_not(self):
self.get_location_config('http://www.example.com-com')
self.assertEqual(None, self.my_config._get_section())
def test__get_section_subdir_recursive(self):
self.get_location_config('http://www.example.com/com')
self.assertEqual('http://www.example.com',
self.my_config._get_section())
def test__get_section_subdir_matches(self):
self.get_location_config('http://www.example.com/useglobal')
self.assertEqual('http://www.example.com/useglobal',
self.my_config._get_section())
def test__get_section_subdir_nonrecursive(self):
self.get_location_config(
'http://www.example.com/useglobal/childbranch')
self.assertEqual('http://www.example.com',
self.my_config._get_section())
def test__get_section_subdir_trailing_slash(self):
self.get_location_config('/b')
self.assertEqual('/b/', self.my_config._get_section())
def test__get_section_subdir_child(self):
self.get_location_config('/a/foo')
self.assertEqual('/a/*', self.my_config._get_section())
def test__get_section_subdir_child_child(self):
self.get_location_config('/a/foo/bar')
self.assertEqual('/a/', self.my_config._get_section())
def test__get_section_explicit_over_glob(self):
self.get_location_config('/a/c')
self.assertEqual('/a/c', self.my_config._get_section())
def get_location_config(self, location):
global_file = StringIO(sample_config_text)
branches_file = StringIO(sample_branches_text)
self.my_config = config.LocationConfig(location)
self.my_config._get_branches_config_parser(branches_file)
self.my_config._get_global_config()._get_config_parser(global_file)
def test_location_without_username(self):
self.get_location_config('http://www.example.com/useglobal')
self.assertEqual('Robert Collins <robertc@example.com>',
self.my_config.username())
def test_location_not_listed(self):
self.get_location_config('/home/robertc/sources')
self.assertEqual('Robert Collins <robertc@example.com>',
self.my_config.username())
def test_overriding_location(self):
self.get_location_config('http://www.example.com/foo')
self.assertEqual('Robert Collins <robertc@example.org>',
self.my_config.username())
#> signatures=check-if-available
#> signatures=require
#> signatures=ignore
class TestBranchConfigItems(TestConfigItems):
def test_user_id(self):
branch = FakeBranch()
my_config = config.BranchConfig(branch)
self.assertEqual("Robert Collins <robertc@example.net>",
my_config._get_user_id())
branch.email = "John"
self.assertEqual("John", my_config._get_user_id())
def test_not_set_in_branch(self):
branch = FakeBranch()
my_config = config.BranchConfig(branch)
branch.email = None
config_file = StringIO(sample_config_text)
(my_config._get_location_config().
_get_global_config()._get_config_parser(config_file))
self.assertEqual("Robert Collins <robertc@example.com>",
my_config._get_user_id())
branch.email = "John"
self.assertEqual("John", my_config._get_user_id())
def test_BZREMAIL_OVERRIDES(self):
os.environ['BZREMAIL'] = "Robert Collins <robertc@example.org>"
branch = FakeBranch()
my_config = config.BranchConfig(branch)
self.assertEqual("Robert Collins <robertc@example.org>",
my_config.username())
|