/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Vincent Ladeuil
  • Date: 2009-07-10 07:43:15 UTC
  • mto: (4529.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4530.
  • Revision ID: v.ladeuil+lp@free.fr-20090710074315-tfbke0r54hk2af6o
Fix TZ-dependent tests.

* bzrlib/tests/test_annotate.py:
(TestAnnotate.create_merged_trees,
TestAnnotate.create_deeply_merged_trees): Isolate from timezone.

* bzrlib/branchbuilder.py:
(BranchBuilder.build_snapshot): timezone is useful to build
TZ-independent tests .

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2008 Canonical Ltd
 
2
#   Authors: Robert Collins <robert.collins@canonical.com>
2
3
#
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
25
26
    branch,
26
27
    bzrdir,
27
28
    config,
28
 
    diff,
29
29
    errors,
30
30
    osutils,
31
31
    mail_client,
43
43
[DEFAULT]
44
44
email=Erik B\u00e5gfors <erik@bagfors.nu>
45
45
editor=vim
46
 
change_editor=vimdiff -of @new_path @old_path
47
46
gpg_signing_command=gnome-gpg
48
47
log_format=short
49
48
user_global_option=something
210
209
        self._calls.append('_get_signature_checking')
211
210
        return self._signatures
212
211
 
213
 
    def _get_change_editor(self):
214
 
        self._calls.append('_get_change_editor')
215
 
        return 'vimdiff -fo @new_path @old_path'
216
 
 
217
212
 
218
213
bool_config = """[DEFAULT]
219
214
active = true
320
315
        my_config = config.Config()
321
316
        self.assertEqual('long', my_config.log_format())
322
317
 
323
 
    def test_get_change_editor(self):
324
 
        my_config = InstrumentedConfig()
325
 
        change_editor = my_config.get_change_editor('old_tree', 'new_tree')
326
 
        self.assertEqual(['_get_change_editor'], my_config._calls)
327
 
        self.assertIs(diff.DiffFromTool, change_editor.__class__)
328
 
        self.assertEqual(['vimdiff', '-fo', '@new_path', '@old_path'],
329
 
                         change_editor.command_template)
330
 
 
331
318
 
332
319
class TestConfigPath(tests.TestCase):
333
320
 
334
321
    def setUp(self):
335
322
        super(TestConfigPath, self).setUp()
336
323
        os.environ['HOME'] = '/home/bogus'
337
 
        os.environ['XDG_CACHE_DIR'] = ''
338
324
        if sys.platform == 'win32':
339
325
            os.environ['BZR_HOME'] = \
340
326
                r'C:\Documents and Settings\bogus\Application Data'
362
348
        self.assertEqual(config.authentication_config_filename(),
363
349
                         self.bzr_home + '/authentication.conf')
364
350
 
365
 
    def test_xdg_cache_dir(self):
366
 
        self.assertEqual(config.xdg_cache_dir(),
367
 
            '/home/bogus/.cache')
368
 
 
369
351
 
370
352
class TestIniConfig(tests.TestCase):
371
353
 
372
 
    def make_config_parser(self, s):
373
 
        conf = config.IniBasedConfig(None)
374
 
        parser = conf._get_parser(file=StringIO(s.encode('utf-8')))
375
 
        return conf, parser
376
 
 
377
 
 
378
 
class TestIniConfigBuilding(TestIniConfig):
379
 
 
380
354
    def test_contructs(self):
381
355
        my_config = config.IniBasedConfig("nothing")
382
356
 
394
368
        self.failUnless(my_config._get_parser() is parser)
395
369
 
396
370
 
397
 
class TestGetUserOptionAs(TestIniConfig):
398
 
 
399
 
    def test_get_user_option_as_bool(self):
400
 
        conf, parser = self.make_config_parser("""
401
 
a_true_bool = true
402
 
a_false_bool = 0
403
 
an_invalid_bool = maybe
404
 
a_list = hmm, who knows ? # This is interpreted as a list !
405
 
""")
406
 
        get_bool = conf.get_user_option_as_bool
407
 
        self.assertEqual(True, get_bool('a_true_bool'))
408
 
        self.assertEqual(False, get_bool('a_false_bool'))
409
 
        warnings = []
410
 
        def warning(*args):
411
 
            warnings.append(args[0] % args[1:])
412
 
        self.overrideAttr(trace, 'warning', warning)
413
 
        msg = 'Value "%s" is not a boolean for "%s"'
414
 
        self.assertIs(None, get_bool('an_invalid_bool'))
415
 
        self.assertEquals(msg % ('maybe', 'an_invalid_bool'), warnings[0])
416
 
        warnings = []
417
 
        self.assertIs(None, get_bool('not_defined_in_this_config'))
418
 
        self.assertEquals([], warnings)
419
 
 
420
 
    def test_get_user_option_as_list(self):
421
 
        conf, parser = self.make_config_parser("""
422
 
a_list = a,b,c
423
 
length_1 = 1,
424
 
one_item = x
425
 
""")
426
 
        get_list = conf.get_user_option_as_list
427
 
        self.assertEqual(['a', 'b', 'c'], get_list('a_list'))
428
 
        self.assertEqual(['1'], get_list('length_1'))
429
 
        self.assertEqual('x', conf.get_user_option('one_item'))
430
 
        # automatically cast to list
431
 
        self.assertEqual(['x'], get_list('one_item'))
432
 
 
433
 
 
434
 
class TestSupressWarning(TestIniConfig):
435
 
 
436
 
    def make_warnings_config(self, s):
437
 
        conf, parser = self.make_config_parser(s)
438
 
        return conf.suppress_warning
439
 
 
440
 
    def test_suppress_warning_unknown(self):
441
 
        suppress_warning = self.make_warnings_config('')
442
 
        self.assertEqual(False, suppress_warning('unknown_warning'))
443
 
 
444
 
    def test_suppress_warning_known(self):
445
 
        suppress_warning = self.make_warnings_config('suppress_warnings=a,b')
446
 
        self.assertEqual(False, suppress_warning('c'))
447
 
        self.assertEqual(True, suppress_warning('a'))
448
 
        self.assertEqual(True, suppress_warning('b'))
449
 
 
450
 
 
451
371
class TestGetConfig(tests.TestCase):
452
372
 
453
373
    def test_constructs(self):
687
607
        my_config = self._get_sample_config()
688
608
        self.assertEqual(sample_long_alias, my_config.get_alias('ll'))
689
609
 
690
 
    def test_get_change_editor(self):
691
 
        my_config = self._get_sample_config()
692
 
        change_editor = my_config.get_change_editor('old', 'new')
693
 
        self.assertIs(diff.DiffFromTool, change_editor.__class__)
694
 
        self.assertEqual('vimdiff -of @new_path @old_path',
695
 
                         ' '.join(change_editor.command_template))
696
 
 
697
 
    def test_get_no_change_editor(self):
698
 
        my_config = self._get_empty_config()
699
 
        change_editor = my_config.get_change_editor('old', 'new')
700
 
        self.assertIs(None, change_editor)
701
 
 
702
610
 
703
611
class TestGlobalConfigSavingOptions(tests.TestCaseInTempDir):
704
612
 
1639
1547
"""))
1640
1548
        entered_password = 'typed-by-hand'
1641
1549
        stdout = tests.StringIOWrapper()
1642
 
        stderr = tests.StringIOWrapper()
1643
1550
        ui.ui_factory = tests.TestUIFactory(stdin=entered_password + '\n',
1644
 
                                            stdout=stdout, stderr=stderr)
 
1551
                                            stdout=stdout)
1645
1552
 
1646
1553
        # Since the password defined in the authentication config is ignored,
1647
1554
        # the user is prompted
1648
1555
        self.assertEquals(entered_password,
1649
1556
                          conf.get_password('ssh', 'bar.org', user='jim'))
1650
1557
        self.assertContainsRe(
1651
 
            self.get_log(),
 
1558
            self._get_log(keep_log_file=True),
1652
1559
            'password ignored in section \[ssh with password\]')
1653
1560
 
1654
1561
    def test_ssh_without_password_doesnt_emit_warning(self):
1661
1568
"""))
1662
1569
        entered_password = 'typed-by-hand'
1663
1570
        stdout = tests.StringIOWrapper()
1664
 
        stderr = tests.StringIOWrapper()
1665
1571
        ui.ui_factory = tests.TestUIFactory(stdin=entered_password + '\n',
1666
 
                                            stdout=stdout,
1667
 
                                            stderr=stderr)
 
1572
                                            stdout=stdout)
1668
1573
 
1669
1574
        # Since the password defined in the authentication config is ignored,
1670
1575
        # the user is prompted
1673
1578
        # No warning shoud be emitted since there is no password. We are only
1674
1579
        # providing "user".
1675
1580
        self.assertNotContainsRe(
1676
 
            self.get_log(),
 
1581
            self._get_log(keep_log_file=True),
1677
1582
            'password ignored in section \[ssh with password\]')
1678
1583
 
1679
1584
    def test_uses_fallback_stores(self):
1680
 
        self.overrideAttr(config, 'credential_store_registry',
1681
 
                          config.CredentialStoreRegistry())
 
1585
        self._old_cs_registry = config.credential_store_registry
 
1586
        def restore():
 
1587
            config.credential_store_registry = self._old_cs_registry
 
1588
        self.addCleanup(restore)
 
1589
        config.credential_store_registry = config.CredentialStoreRegistry()
1682
1590
        store = StubCredentialStore()
1683
1591
        store.add_credentials("http", "example.com", "joe", "secret")
1684
1592
        config.credential_store_registry.register("stub", store, fallback=True)