22
22
also see this file.
25
from cStringIO import StringIO
25
from StringIO import StringIO
27
27
from bzrlib import (
28
28
branch as _mod_branch,
40
class TestDefaultFormat(tests.TestCase):
35
from bzrlib.branch import (
39
BranchReferenceFormat,
44
_run_with_write_locked_target,
46
from bzrlib.bzrdir import (BzrDirMetaFormat1, BzrDirMeta1,
48
from bzrlib.errors import (NotBranchError,
51
UnsupportedFormatError,
54
from bzrlib.tests import TestCase, TestCaseWithTransport
55
from bzrlib.transport import get_transport
58
class TestDefaultFormat(TestCase):
42
60
def test_default_format(self):
43
61
# update this if you change the default branch format
44
self.assertIsInstance(_mod_branch.BranchFormat.get_default_format(),
45
_mod_branch.BzrBranchFormat7)
62
self.assertIsInstance(BranchFormat.get_default_format(),
47
65
def test_default_format_is_same_as_bzrdir_default(self):
48
66
# XXX: it might be nice if there was only one place the default was
49
67
# set, but at the moment that's not true -- mbp 20070814 --
50
68
# https://bugs.launchpad.net/bzr/+bug/132376
52
_mod_branch.BranchFormat.get_default_format(),
53
bzrdir.BzrDirFormat.get_default_format().get_branch_format())
69
self.assertEqual(BranchFormat.get_default_format(),
70
BzrDirFormat.get_default_format().get_branch_format())
55
72
def test_get_set_default_format(self):
56
73
# set the format and then set it back again
57
old_format = _mod_branch.BranchFormat.get_default_format()
58
_mod_branch.BranchFormat.set_default_format(SampleBranchFormat())
74
old_format = BranchFormat.get_default_format()
75
BranchFormat.set_default_format(SampleBranchFormat())
60
77
# the default branch format is used by the meta dir format
61
78
# which is not the default bzrdir format at this point
62
dir = bzrdir.BzrDirMetaFormat1().initialize('memory:///')
79
dir = BzrDirMetaFormat1().initialize('memory:///')
63
80
result = dir.create_branch()
64
81
self.assertEqual(result, 'A branch')
66
_mod_branch.BranchFormat.set_default_format(old_format)
67
self.assertEqual(old_format,
68
_mod_branch.BranchFormat.get_default_format())
71
class TestBranchFormat5(tests.TestCaseWithTransport):
83
BranchFormat.set_default_format(old_format)
84
self.assertEqual(old_format, BranchFormat.get_default_format())
87
class TestBranchFormat5(TestCaseWithTransport):
72
88
"""Tests specific to branch format 5"""
74
90
def test_branch_format_5_uses_lockdir(self):
75
91
url = self.get_url()
76
bdir = bzrdir.BzrDirMetaFormat1().initialize(url)
77
bdir.create_repository()
78
branch = bdir.create_branch()
92
bzrdir = BzrDirMetaFormat1().initialize(url)
93
bzrdir.create_repository()
94
branch = bzrdir.create_branch()
79
95
t = self.get_transport()
80
96
self.log("branch instance is %r" % branch)
81
self.assert_(isinstance(branch, _mod_branch.BzrBranch5))
97
self.assert_(isinstance(branch, BzrBranch5))
82
98
self.assertIsDirectory('.', t)
83
99
self.assertIsDirectory('.bzr/branch', t)
84
100
self.assertIsDirectory('.bzr/branch/lock', t)
85
101
branch.lock_write()
86
self.addCleanup(branch.unlock)
87
self.assertIsDirectory('.bzr/branch/lock/held', t)
103
self.assertIsDirectory('.bzr/branch/lock/held', t)
89
107
def test_set_push_location(self):
90
conf = config.LocationConfig.from_string('# comment\n', '.', save=True)
108
from bzrlib.config import (locations_config_filename,
109
ensure_config_dir_exists)
110
ensure_config_dir_exists()
111
fn = locations_config_filename()
112
# write correct newlines to locations.conf
113
# by default ConfigObj uses native line-endings for new files
114
# but uses already existing line-endings if file is not empty
117
f.write('# comment\n')
92
121
branch = self.make_branch('.', format='knit')
93
122
branch.set_push_location('foo')
113
142
"""See BzrBranchFormat.get_format_string()."""
114
143
return "Sample branch format."
116
def initialize(self, a_bzrdir, name=None):
145
def initialize(self, a_bzrdir):
117
146
"""Format 4 branches cannot be created."""
118
t = a_bzrdir.get_branch_transport(self, name=name)
147
t = a_bzrdir.get_branch_transport(self)
119
148
t.put_bytes('format', self.get_format_string())
120
149
return 'A branch'
122
151
def is_supported(self):
125
def open(self, transport, name=None, _found=False, ignore_fallbacks=False):
154
def open(self, transport, _found=False, ignore_fallbacks=False):
126
155
return "opened branch."
129
# Demonstrating how lazy loading is often implemented:
130
# A constant string is created.
131
SampleSupportedBranchFormatString = "Sample supported branch format."
133
# And the format class can then reference the constant to avoid skew.
134
class SampleSupportedBranchFormat(_mod_branch.BranchFormat):
135
"""A sample supported format."""
137
def get_format_string(self):
138
"""See BzrBranchFormat.get_format_string()."""
139
return SampleSupportedBranchFormatString
141
def initialize(self, a_bzrdir, name=None):
142
t = a_bzrdir.get_branch_transport(self, name=name)
143
t.put_bytes('format', self.get_format_string())
146
def open(self, transport, name=None, _found=False, ignore_fallbacks=False):
147
return "opened supported branch."
150
class TestBzrBranchFormat(tests.TestCaseWithTransport):
158
class TestBzrBranchFormat(TestCaseWithTransport):
151
159
"""Tests for the BzrBranchFormat facility."""
153
161
def test_find_format(self):
159
167
dir = format._matchingbzrdir.initialize(url)
160
168
dir.create_repository()
161
169
format.initialize(dir)
162
found_format = _mod_branch.BranchFormat.find_format(dir)
170
found_format = BranchFormat.find_format(dir)
163
171
self.failUnless(isinstance(found_format, format.__class__))
164
check_format(_mod_branch.BzrBranchFormat5(), "bar")
166
def test_find_format_factory(self):
167
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
168
SampleSupportedBranchFormat().initialize(dir)
169
factory = _mod_branch.MetaDirBranchFormatFactory(
170
SampleSupportedBranchFormatString,
171
"bzrlib.tests.test_branch", "SampleSupportedBranchFormat")
172
_mod_branch.BranchFormat.register_format(factory)
173
self.addCleanup(_mod_branch.BranchFormat.unregister_format, factory)
174
b = _mod_branch.Branch.open(self.get_url())
175
self.assertEqual(b, "opened supported branch.")
172
check_format(BzrBranchFormat5(), "bar")
177
174
def test_find_format_not_branch(self):
178
175
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
179
self.assertRaises(errors.NotBranchError,
180
_mod_branch.BranchFormat.find_format,
176
self.assertRaises(NotBranchError,
177
BranchFormat.find_format,
183
180
def test_find_format_unknown_format(self):
184
181
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
185
182
SampleBranchFormat().initialize(dir)
186
self.assertRaises(errors.UnknownFormatError,
187
_mod_branch.BranchFormat.find_format,
183
self.assertRaises(UnknownFormatError,
184
BranchFormat.find_format,
190
187
def test_register_unregister_format(self):
195
192
format.initialize(dir)
196
193
# register a format for it.
197
_mod_branch.BranchFormat.register_format(format)
194
BranchFormat.register_format(format)
198
195
# which branch.Open will refuse (not supported)
199
self.assertRaises(errors.UnsupportedFormatError,
200
_mod_branch.Branch.open, self.get_url())
196
self.assertRaises(UnsupportedFormatError, Branch.open, self.get_url())
201
197
self.make_branch_and_tree('foo')
202
198
# but open_downlevel will work
205
bzrdir.BzrDir.open(self.get_url()).open_branch(unsupported=True))
199
self.assertEqual(format.open(dir), bzrdir.BzrDir.open(self.get_url()).open_branch(unsupported=True))
206
200
# unregister the format
207
_mod_branch.BranchFormat.unregister_format(format)
201
BranchFormat.unregister_format(format)
208
202
self.make_branch_and_tree('bar')
211
#Used by TestMetaDirBranchFormatFactory
212
FakeLazyFormat = None
215
class TestMetaDirBranchFormatFactory(tests.TestCase):
217
def test_get_format_string_does_not_load(self):
218
"""Formats have a static format string."""
219
factory = _mod_branch.MetaDirBranchFormatFactory("yo", None, None)
220
self.assertEqual("yo", factory.get_format_string())
222
def test_call_loads(self):
223
# __call__ is used by the network_format_registry interface to get a
225
global FakeLazyFormat
227
factory = _mod_branch.MetaDirBranchFormatFactory(None,
228
"bzrlib.tests.test_branch", "FakeLazyFormat")
229
self.assertRaises(AttributeError, factory)
231
def test_call_returns_call_of_referenced_object(self):
232
global FakeLazyFormat
233
FakeLazyFormat = lambda:'called'
234
factory = _mod_branch.MetaDirBranchFormatFactory(None,
235
"bzrlib.tests.test_branch", "FakeLazyFormat")
236
self.assertEqual('called', factory())
239
205
class TestBranch67(object):
240
206
"""Common tests for both branch 6 and 7 which are mostly the same."""
470
435
branch.lock_write()
471
436
branch.set_reference_info('file-id', 'path2', 'location2')
473
doppelganger = _mod_branch.Branch.open('branch')
438
doppelganger = Branch.open('branch')
474
439
doppelganger.set_reference_info('file-id', 'path3', 'location3')
475
440
self.assertEqual(('path3', 'location3'),
476
441
branch.get_reference_info('file-id'))
478
class TestBranchReference(tests.TestCaseWithTransport):
443
class TestBranchReference(TestCaseWithTransport):
479
444
"""Tests for the branch reference facility."""
481
446
def test_create_open_reference(self):
482
447
bzrdirformat = bzrdir.BzrDirMetaFormat1()
483
t = transport.get_transport(self.get_url('.'))
448
t = get_transport(self.get_url('.'))
485
450
dir = bzrdirformat.initialize(self.get_url('repo'))
486
451
dir.create_repository()
487
452
target_branch = dir.create_branch()
488
453
t.mkdir('branch')
489
454
branch_dir = bzrdirformat.initialize(self.get_url('branch'))
490
made_branch = _mod_branch.BranchReferenceFormat().initialize(
491
branch_dir, target_branch=target_branch)
455
made_branch = BranchReferenceFormat().initialize(branch_dir, target_branch)
492
456
self.assertEqual(made_branch.base, target_branch.base)
493
457
opened_branch = branch_dir.open_branch()
494
458
self.assertEqual(opened_branch.base, target_branch.base)
505
469
_mod_branch.BranchReferenceFormat().get_reference(checkout.bzrdir))
508
class TestHooks(tests.TestCaseWithTransport):
472
class TestHooks(TestCase):
510
474
def test_constructor(self):
511
475
"""Check that creating a BranchHooks instance has the right defaults."""
512
hooks = _mod_branch.BranchHooks()
476
hooks = BranchHooks()
513
477
self.assertTrue("set_rh" in hooks, "set_rh not in %s" % hooks)
514
478
self.assertTrue("post_push" in hooks, "post_push not in %s" % hooks)
515
479
self.assertTrue("post_commit" in hooks, "post_commit not in %s" % hooks)
516
480
self.assertTrue("pre_commit" in hooks, "pre_commit not in %s" % hooks)
517
481
self.assertTrue("post_pull" in hooks, "post_pull not in %s" % hooks)
518
self.assertTrue("post_uncommit" in hooks,
519
"post_uncommit not in %s" % hooks)
482
self.assertTrue("post_uncommit" in hooks, "post_uncommit not in %s" % hooks)
520
483
self.assertTrue("post_change_branch_tip" in hooks,
521
484
"post_change_branch_tip not in %s" % hooks)
522
self.assertTrue("post_branch_init" in hooks,
523
"post_branch_init not in %s" % hooks)
524
self.assertTrue("post_switch" in hooks,
525
"post_switch not in %s" % hooks)
527
486
def test_installed_hooks_are_BranchHooks(self):
528
487
"""The installed hooks object should be a BranchHooks."""
529
488
# the installed hooks are saved in self._preserved_hooks.
530
489
self.assertIsInstance(self._preserved_hooks[_mod_branch.Branch][1],
531
_mod_branch.BranchHooks)
533
def test_post_branch_init_hook(self):
535
_mod_branch.Branch.hooks.install_named_hook('post_branch_init',
537
self.assertLength(0, calls)
538
branch = self.make_branch('a')
539
self.assertLength(1, calls)
541
self.assertIsInstance(params, _mod_branch.BranchInitHookParams)
542
self.assertTrue(hasattr(params, 'bzrdir'))
543
self.assertTrue(hasattr(params, 'branch'))
545
def test_post_branch_init_hook_repr(self):
547
_mod_branch.Branch.hooks.install_named_hook('post_branch_init',
548
lambda params: param_reprs.append(repr(params)), None)
549
branch = self.make_branch('a')
550
self.assertLength(1, param_reprs)
551
param_repr = param_reprs[0]
552
self.assertStartsWith(param_repr, '<BranchInitHookParams of ')
554
def test_post_switch_hook(self):
555
from bzrlib import switch
557
_mod_branch.Branch.hooks.install_named_hook('post_switch',
559
tree = self.make_branch_and_tree('branch-1')
560
self.build_tree(['branch-1/file-1'])
563
to_branch = tree.bzrdir.sprout('branch-2').open_branch()
564
self.build_tree(['branch-1/file-2'])
566
tree.remove('file-1')
568
checkout = tree.branch.create_checkout('checkout')
569
self.assertLength(0, calls)
570
switch.switch(checkout.bzrdir, to_branch)
571
self.assertLength(1, calls)
573
self.assertIsInstance(params, _mod_branch.SwitchHookParams)
574
self.assertTrue(hasattr(params, 'to_branch'))
575
self.assertTrue(hasattr(params, 'revision_id'))
578
class TestBranchOptions(tests.TestCaseWithTransport):
581
super(TestBranchOptions, self).setUp()
582
self.branch = self.make_branch('.')
583
self.config = self.branch.get_config()
585
def check_append_revisions_only(self, expected_value, value=None):
586
"""Set append_revisions_only in config and check its interpretation."""
587
if value is not None:
588
self.config.set_user_option('append_revisions_only', value)
589
self.assertEqual(expected_value,
590
self.branch._get_append_revisions_only())
592
def test_valid_append_revisions_only(self):
593
self.assertEquals(None,
594
self.config.get_user_option('append_revisions_only'))
595
self.check_append_revisions_only(None)
596
self.check_append_revisions_only(False, 'False')
597
self.check_append_revisions_only(True, 'True')
598
# The following values will cause compatibility problems on projects
599
# using older bzr versions (<2.2) but are accepted
600
self.check_append_revisions_only(False, 'false')
601
self.check_append_revisions_only(True, 'true')
603
def test_invalid_append_revisions_only(self):
604
"""Ensure warning is noted on invalid settings"""
607
self.warnings.append(args[0] % args[1:])
608
self.overrideAttr(trace, 'warning', warning)
609
self.check_append_revisions_only(None, 'not-a-bool')
610
self.assertLength(1, self.warnings)
612
'Value "not-a-bool" is not a boolean for "append_revisions_only"',
616
class TestPullResult(tests.TestCase):
493
class TestPullResult(TestCase):
618
495
def test_pull_result_to_int(self):
619
496
# to support old code, the pull result can be used as an int
620
r = _mod_branch.PullResult()
623
500
# this usage of results is not recommended for new code (because it
624
501
# doesn't describe very well what happened), but for api stability
625
502
# it's still supported
626
self.assertEqual(self.applyDeprecated(
627
symbol_versioning.deprecated_in((2, 3, 0)),
631
def test_report_changed(self):
632
r = _mod_branch.PullResult()
633
r.old_revid = "old-revid"
635
r.new_revid = "new-revid"
639
self.assertEqual("Now on revision 20.\n", f.getvalue())
641
def test_report_unchanged(self):
642
r = _mod_branch.PullResult()
643
r.old_revid = "same-revid"
644
r.new_revid = "same-revid"
647
self.assertEqual("No revisions to pull.\n", f.getvalue())
503
a = "%d revisions pulled" % r
504
self.assertEqual(a, "10 revisions pulled")
650
508
class _StubLockable(object):
696
554
def test_exception_unlocks_and_propagates(self):
697
555
lockable = _StubLockable(self._calls)
698
556
self.assertRaises(_ErrorFromCallable,
699
_mod_branch._run_with_write_locked_target,
700
lockable, self.func_that_raises)
557
_run_with_write_locked_target, lockable, self.func_that_raises)
701
558
self.assertEqual(['lock_write', 'func called', 'unlock'], self._calls)
703
560
def test_callable_succeeds_but_error_during_unlock(self):
704
561
lockable = _StubLockable(self._calls, unlock_exc=_ErrorFromUnlock())
705
562
self.assertRaises(_ErrorFromUnlock,
706
_mod_branch._run_with_write_locked_target,
707
lockable, self.func_that_returns_ok)
563
_run_with_write_locked_target, lockable, self.func_that_returns_ok)
708
564
self.assertEqual(['lock_write', 'func called', 'unlock'], self._calls)
710
566
def test_error_during_unlock_does_not_mask_original_error(self):
711
567
lockable = _StubLockable(self._calls, unlock_exc=_ErrorFromUnlock())
712
568
self.assertRaises(_ErrorFromCallable,
713
_mod_branch._run_with_write_locked_target,
714
lockable, self.func_that_raises)
569
_run_with_write_locked_target, lockable, self.func_that_raises)
715
570
self.assertEqual(['lock_write', 'func called', 'unlock'], self._calls)