~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 19:15:58 UTC
  • mfrom: (6388 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6404.
  • Revision ID: jelmer@canonical.com-20111219191558-p1k7cvhjq8l6v2gm
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006-2011 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Tests for the Branch facility that are not interface  tests.
 
18
 
 
19
For interface tests see `tests/per_branch/*.py`.
 
20
 
 
21
For concrete class tests see this file, and for meta-branch tests
 
22
also see this file.
 
23
"""
 
24
 
 
25
from cStringIO import StringIO
 
26
 
 
27
from bzrlib import (
 
28
    branch as _mod_branch,
 
29
    bzrdir,
 
30
    config,
 
31
    errors,
 
32
    symbol_versioning,
 
33
    tests,
 
34
    trace,
 
35
    urlutils,
 
36
    )
 
37
 
 
38
 
 
39
class TestDefaultFormat(tests.TestCase):
 
40
 
 
41
    def test_default_format(self):
 
42
        # update this if you change the default branch format
 
43
        self.assertIsInstance(_mod_branch.format_registry.get_default(),
 
44
                _mod_branch.BzrBranchFormat7)
 
45
 
 
46
    def test_default_format_is_same_as_bzrdir_default(self):
 
47
        # XXX: it might be nice if there was only one place the default was
 
48
        # set, but at the moment that's not true -- mbp 20070814 --
 
49
        # https://bugs.launchpad.net/bzr/+bug/132376
 
50
        self.assertEqual(
 
51
            _mod_branch.format_registry.get_default(),
 
52
            bzrdir.BzrDirFormat.get_default_format().get_branch_format())
 
53
 
 
54
    def test_get_set_default_format(self):
 
55
        # set the format and then set it back again
 
56
        old_format = _mod_branch.format_registry.get_default()
 
57
        _mod_branch.format_registry.set_default(SampleBranchFormat())
 
58
        try:
 
59
            # the default branch format is used by the meta dir format
 
60
            # which is not the default bzrdir format at this point
 
61
            dir = bzrdir.BzrDirMetaFormat1().initialize('memory:///')
 
62
            result = dir.create_branch()
 
63
            self.assertEqual(result, 'A branch')
 
64
        finally:
 
65
            _mod_branch.format_registry.set_default(old_format)
 
66
        self.assertEqual(old_format,
 
67
                         _mod_branch.format_registry.get_default())
 
68
 
 
69
 
 
70
class TestBranchFormat5(tests.TestCaseWithTransport):
 
71
    """Tests specific to branch format 5"""
 
72
 
 
73
    def test_branch_format_5_uses_lockdir(self):
 
74
        url = self.get_url()
 
75
        bdir = bzrdir.BzrDirMetaFormat1().initialize(url)
 
76
        bdir.create_repository()
 
77
        branch = _mod_branch.BzrBranchFormat5().initialize(bdir)
 
78
        t = self.get_transport()
 
79
        self.log("branch instance is %r" % branch)
 
80
        self.assert_(isinstance(branch, _mod_branch.BzrBranch5))
 
81
        self.assertIsDirectory('.', t)
 
82
        self.assertIsDirectory('.bzr/branch', t)
 
83
        self.assertIsDirectory('.bzr/branch/lock', t)
 
84
        branch.lock_write()
 
85
        self.addCleanup(branch.unlock)
 
86
        self.assertIsDirectory('.bzr/branch/lock/held', t)
 
87
 
 
88
    def test_set_push_location(self):
 
89
        conf = config.LocationConfig.from_string('# comment\n', '.', save=True)
 
90
 
 
91
        branch = self.make_branch('.', format='knit')
 
92
        branch.set_push_location('foo')
 
93
        local_path = urlutils.local_path_from_url(branch.base[:-1])
 
94
        self.assertFileEqual("# comment\n"
 
95
                             "[%s]\n"
 
96
                             "push_location = foo\n"
 
97
                             "push_location:policy = norecurse\n" % local_path,
 
98
                             config.locations_config_filename())
 
99
 
 
100
    # TODO RBC 20051029 test getting a push location from a branch in a
 
101
    # recursive section - that is, it appends the branch name.
 
102
 
 
103
 
 
104
class SampleBranchFormat(_mod_branch.BranchFormatMetadir):
 
105
    """A sample format
 
106
 
 
107
    this format is initializable, unsupported to aid in testing the
 
108
    open and open_downlevel routines.
 
109
    """
 
110
 
 
111
    @classmethod
 
112
    def get_format_string(cls):
 
113
        """See BzrBranchFormat.get_format_string()."""
 
114
        return "Sample branch format."
 
115
 
 
116
    def initialize(self, a_bzrdir, name=None, repository=None,
 
117
                   append_revisions_only=None):
 
118
        """Format 4 branches cannot be created."""
 
119
        t = a_bzrdir.get_branch_transport(self, name=name)
 
120
        t.put_bytes('format', self.get_format_string())
 
121
        return 'A branch'
 
122
 
 
123
    def is_supported(self):
 
124
        return False
 
125
 
 
126
    def open(self, transport, name=None, _found=False, ignore_fallbacks=False,
 
127
             possible_transports=None):
 
128
        return "opened branch."
 
129
 
 
130
 
 
131
# Demonstrating how lazy loading is often implemented:
 
132
# A constant string is created.
 
133
SampleSupportedBranchFormatString = "Sample supported branch format."
 
134
 
 
135
# And the format class can then reference the constant to avoid skew.
 
136
class SampleSupportedBranchFormat(_mod_branch.BranchFormatMetadir):
 
137
    """A sample supported format."""
 
138
 
 
139
    @classmethod
 
140
    def get_format_string(cls):
 
141
        """See BzrBranchFormat.get_format_string()."""
 
142
        return SampleSupportedBranchFormatString
 
143
 
 
144
    def initialize(self, a_bzrdir, name=None, append_revisions_only=None):
 
145
        t = a_bzrdir.get_branch_transport(self, name=name)
 
146
        t.put_bytes('format', self.get_format_string())
 
147
        return 'A branch'
 
148
 
 
149
    def open(self, transport, name=None, _found=False, ignore_fallbacks=False,
 
150
             possible_transports=None):
 
151
        return "opened supported branch."
 
152
 
 
153
 
 
154
class SampleExtraBranchFormat(_mod_branch.BranchFormat):
 
155
    """A sample format that is not usable in a metadir."""
 
156
 
 
157
    def get_format_string(self):
 
158
        # This format is not usable in a metadir.
 
159
        return None
 
160
 
 
161
    def network_name(self):
 
162
        # Network name always has to be provided.
 
163
        return "extra"
 
164
 
 
165
    def initialize(self, a_bzrdir, name=None):
 
166
        raise NotImplementedError(self.initialize)
 
167
 
 
168
    def open(self, transport, name=None, _found=False, ignore_fallbacks=False,
 
169
             possible_transports=None):
 
170
        raise NotImplementedError(self.open)
 
171
 
 
172
 
 
173
class TestBzrBranchFormat(tests.TestCaseWithTransport):
 
174
    """Tests for the BzrBranchFormat facility."""
 
175
 
 
176
    def test_find_format(self):
 
177
        # is the right format object found for a branch?
 
178
        # create a branch with a few known format objects.
 
179
        # this is not quite the same as
 
180
        self.build_tree(["foo/", "bar/"])
 
181
        def check_format(format, url):
 
182
            dir = format._matchingbzrdir.initialize(url)
 
183
            dir.create_repository()
 
184
            format.initialize(dir)
 
185
            found_format = _mod_branch.BranchFormatMetadir.find_format(dir)
 
186
            self.assertIsInstance(found_format, format.__class__)
 
187
        check_format(_mod_branch.BzrBranchFormat5(), "bar")
 
188
 
 
189
    def test_find_format_factory(self):
 
190
        dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
191
        SampleSupportedBranchFormat().initialize(dir)
 
192
        factory = _mod_branch.MetaDirBranchFormatFactory(
 
193
            SampleSupportedBranchFormatString,
 
194
            "bzrlib.tests.test_branch", "SampleSupportedBranchFormat")
 
195
        _mod_branch.format_registry.register(factory)
 
196
        self.addCleanup(_mod_branch.format_registry.remove, factory)
 
197
        b = _mod_branch.Branch.open(self.get_url())
 
198
        self.assertEqual(b, "opened supported branch.")
 
199
 
 
200
    def test_from_string(self):
 
201
        self.assertIsInstance(
 
202
            SampleBranchFormat.from_string("Sample branch format."),
 
203
            SampleBranchFormat)
 
204
        self.assertRaises(ValueError,
 
205
            SampleBranchFormat.from_string, "Different branch format.")
 
206
 
 
207
    def test_find_format_not_branch(self):
 
208
        dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
209
        self.assertRaises(errors.NotBranchError,
 
210
                          _mod_branch.BranchFormatMetadir.find_format,
 
211
                          dir)
 
212
 
 
213
    def test_find_format_unknown_format(self):
 
214
        dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
215
        SampleBranchFormat().initialize(dir)
 
216
        self.assertRaises(errors.UnknownFormatError,
 
217
                          _mod_branch.BranchFormatMetadir.find_format,
 
218
                          dir)
 
219
 
 
220
    def test_find_format_with_features(self):
 
221
        tree = self.make_branch_and_tree('.', format='2a')
 
222
        tree.branch.control_transport.put_bytes('format',
 
223
            tree.branch._format.get_format_string() +
 
224
            "optional feature name\n")
 
225
        found_format = _mod_branch.BranchFormatMetadir.find_format(tree.bzrdir)
 
226
        self.assertIsInstance(found_format, _mod_branch.BranchFormatMetadir)
 
227
        self.assertEquals(found_format.features.get("name"), "optional")
 
228
 
 
229
    def test_register_unregister_format(self):
 
230
        # Test the deprecated format registration functions
 
231
        format = SampleBranchFormat()
 
232
        # make a control dir
 
233
        dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
234
        # make a branch
 
235
        format.initialize(dir)
 
236
        # register a format for it.
 
237
        self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
 
238
            _mod_branch.BranchFormat.register_format, format)
 
239
        # which branch.Open will refuse (not supported)
 
240
        self.assertRaises(errors.UnsupportedFormatError,
 
241
                          _mod_branch.Branch.open, self.get_url())
 
242
        self.make_branch_and_tree('foo')
 
243
        # but open_downlevel will work
 
244
        self.assertEqual(
 
245
            format.open(dir),
 
246
            bzrdir.BzrDir.open(self.get_url()).open_branch(unsupported=True))
 
247
        # unregister the format
 
248
        self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
 
249
            _mod_branch.BranchFormat.unregister_format, format)
 
250
        self.make_branch_and_tree('bar')
 
251
 
 
252
 
 
253
class TestBranchFormatRegistry(tests.TestCase):
 
254
 
 
255
    def setUp(self):
 
256
        super(TestBranchFormatRegistry, self).setUp()
 
257
        self.registry = _mod_branch.BranchFormatRegistry()
 
258
 
 
259
    def test_default(self):
 
260
        self.assertIs(None, self.registry.get_default())
 
261
        format = SampleBranchFormat()
 
262
        self.registry.set_default(format)
 
263
        self.assertEquals(format, self.registry.get_default())
 
264
 
 
265
    def test_register_unregister_format(self):
 
266
        format = SampleBranchFormat()
 
267
        self.registry.register(format)
 
268
        self.assertEquals(format,
 
269
            self.registry.get("Sample branch format."))
 
270
        self.registry.remove(format)
 
271
        self.assertRaises(KeyError, self.registry.get,
 
272
            "Sample branch format.")
 
273
 
 
274
    def test_get_all(self):
 
275
        format = SampleBranchFormat()
 
276
        self.assertEquals([], self.registry._get_all())
 
277
        self.registry.register(format)
 
278
        self.assertEquals([format], self.registry._get_all())
 
279
 
 
280
    def test_register_extra(self):
 
281
        format = SampleExtraBranchFormat()
 
282
        self.assertEquals([], self.registry._get_all())
 
283
        self.registry.register_extra(format)
 
284
        self.assertEquals([format], self.registry._get_all())
 
285
 
 
286
    def test_register_extra_lazy(self):
 
287
        self.assertEquals([], self.registry._get_all())
 
288
        self.registry.register_extra_lazy("bzrlib.tests.test_branch",
 
289
            "SampleExtraBranchFormat")
 
290
        formats = self.registry._get_all()
 
291
        self.assertEquals(1, len(formats))
 
292
        self.assertIsInstance(formats[0], SampleExtraBranchFormat)
 
293
 
 
294
 
 
295
#Used by TestMetaDirBranchFormatFactory 
 
296
FakeLazyFormat = None
 
297
 
 
298
 
 
299
class TestMetaDirBranchFormatFactory(tests.TestCase):
 
300
 
 
301
    def test_get_format_string_does_not_load(self):
 
302
        """Formats have a static format string."""
 
303
        factory = _mod_branch.MetaDirBranchFormatFactory("yo", None, None)
 
304
        self.assertEqual("yo", factory.get_format_string())
 
305
 
 
306
    def test_call_loads(self):
 
307
        # __call__ is used by the network_format_registry interface to get a
 
308
        # Format.
 
309
        global FakeLazyFormat
 
310
        del FakeLazyFormat
 
311
        factory = _mod_branch.MetaDirBranchFormatFactory(None,
 
312
            "bzrlib.tests.test_branch", "FakeLazyFormat")
 
313
        self.assertRaises(AttributeError, factory)
 
314
 
 
315
    def test_call_returns_call_of_referenced_object(self):
 
316
        global FakeLazyFormat
 
317
        FakeLazyFormat = lambda:'called'
 
318
        factory = _mod_branch.MetaDirBranchFormatFactory(None,
 
319
            "bzrlib.tests.test_branch", "FakeLazyFormat")
 
320
        self.assertEqual('called', factory())
 
321
 
 
322
 
 
323
class TestBranch67(object):
 
324
    """Common tests for both branch 6 and 7 which are mostly the same."""
 
325
 
 
326
    def get_format_name(self):
 
327
        raise NotImplementedError(self.get_format_name)
 
328
 
 
329
    def get_format_name_subtree(self):
 
330
        raise NotImplementedError(self.get_format_name)
 
331
 
 
332
    def get_class(self):
 
333
        raise NotImplementedError(self.get_class)
 
334
 
 
335
    def test_creation(self):
 
336
        format = bzrdir.BzrDirMetaFormat1()
 
337
        format.set_branch_format(_mod_branch.BzrBranchFormat6())
 
338
        branch = self.make_branch('a', format=format)
 
339
        self.assertIsInstance(branch, self.get_class())
 
340
        branch = self.make_branch('b', format=self.get_format_name())
 
341
        self.assertIsInstance(branch, self.get_class())
 
342
        branch = _mod_branch.Branch.open('a')
 
343
        self.assertIsInstance(branch, self.get_class())
 
344
 
 
345
    def test_layout(self):
 
346
        branch = self.make_branch('a', format=self.get_format_name())
 
347
        self.assertPathExists('a/.bzr/branch/last-revision')
 
348
        self.assertPathDoesNotExist('a/.bzr/branch/revision-history')
 
349
        self.assertPathDoesNotExist('a/.bzr/branch/references')
 
350
 
 
351
    def test_config(self):
 
352
        """Ensure that all configuration data is stored in the branch"""
 
353
        branch = self.make_branch('a', format=self.get_format_name())
 
354
        branch.set_parent('http://example.com')
 
355
        self.assertPathDoesNotExist('a/.bzr/branch/parent')
 
356
        self.assertEqual('http://example.com', branch.get_parent())
 
357
        branch.set_push_location('sftp://example.com')
 
358
        config = branch.get_config()._get_branch_data_config()
 
359
        self.assertEqual('sftp://example.com',
 
360
                         config.get_user_option('push_location'))
 
361
        branch.set_bound_location('ftp://example.com')
 
362
        self.assertPathDoesNotExist('a/.bzr/branch/bound')
 
363
        self.assertEqual('ftp://example.com', branch.get_bound_location())
 
364
 
 
365
    def test_set_revision_history(self):
 
366
        builder = self.make_branch_builder('.', format=self.get_format_name())
 
367
        builder.build_snapshot('foo', None,
 
368
            [('add', ('', None, 'directory', None))],
 
369
            message='foo')
 
370
        builder.build_snapshot('bar', None, [], message='bar')
 
371
        branch = builder.get_branch()
 
372
        branch.lock_write()
 
373
        self.addCleanup(branch.unlock)
 
374
        self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
 
375
            branch.set_revision_history, ['foo', 'bar'])
 
376
        self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
 
377
                branch.set_revision_history, ['foo'])
 
378
        self.assertRaises(errors.NotLefthandHistory,
 
379
            self.applyDeprecated, symbol_versioning.deprecated_in((2, 4, 0)),
 
380
            branch.set_revision_history, ['bar'])
 
381
 
 
382
    def do_checkout_test(self, lightweight=False):
 
383
        tree = self.make_branch_and_tree('source',
 
384
            format=self.get_format_name_subtree())
 
385
        subtree = self.make_branch_and_tree('source/subtree',
 
386
            format=self.get_format_name_subtree())
 
387
        subsubtree = self.make_branch_and_tree('source/subtree/subsubtree',
 
388
            format=self.get_format_name_subtree())
 
389
        self.build_tree(['source/subtree/file',
 
390
                         'source/subtree/subsubtree/file'])
 
391
        subsubtree.add('file')
 
392
        subtree.add('file')
 
393
        subtree.add_reference(subsubtree)
 
394
        tree.add_reference(subtree)
 
395
        tree.commit('a revision')
 
396
        subtree.commit('a subtree file')
 
397
        subsubtree.commit('a subsubtree file')
 
398
        tree.branch.create_checkout('target', lightweight=lightweight)
 
399
        self.assertPathExists('target')
 
400
        self.assertPathExists('target/subtree')
 
401
        self.assertPathExists('target/subtree/file')
 
402
        self.assertPathExists('target/subtree/subsubtree/file')
 
403
        subbranch = _mod_branch.Branch.open('target/subtree/subsubtree')
 
404
        if lightweight:
 
405
            self.assertEndsWith(subbranch.base, 'source/subtree/subsubtree/')
 
406
        else:
 
407
            self.assertEndsWith(subbranch.base, 'target/subtree/subsubtree/')
 
408
 
 
409
    def test_checkout_with_references(self):
 
410
        self.do_checkout_test()
 
411
 
 
412
    def test_light_checkout_with_references(self):
 
413
        self.do_checkout_test(lightweight=True)
 
414
 
 
415
    def test_set_push(self):
 
416
        branch = self.make_branch('source', format=self.get_format_name())
 
417
        branch.get_config().set_user_option('push_location', 'old',
 
418
            store=config.STORE_LOCATION)
 
419
        warnings = []
 
420
        def warning(*args):
 
421
            warnings.append(args[0] % args[1:])
 
422
        _warning = trace.warning
 
423
        trace.warning = warning
 
424
        try:
 
425
            branch.set_push_location('new')
 
426
        finally:
 
427
            trace.warning = _warning
 
428
        self.assertEqual(warnings[0], 'Value "new" is masked by "old" from '
 
429
                         'locations.conf')
 
430
 
 
431
 
 
432
class TestBranch6(TestBranch67, tests.TestCaseWithTransport):
 
433
 
 
434
    def get_class(self):
 
435
        return _mod_branch.BzrBranch6
 
436
 
 
437
    def get_format_name(self):
 
438
        return "dirstate-tags"
 
439
 
 
440
    def get_format_name_subtree(self):
 
441
        return "dirstate-with-subtree"
 
442
 
 
443
    def test_set_stacked_on_url_errors(self):
 
444
        branch = self.make_branch('a', format=self.get_format_name())
 
445
        self.assertRaises(errors.UnstackableBranchFormat,
 
446
            branch.set_stacked_on_url, None)
 
447
 
 
448
    def test_default_stacked_location(self):
 
449
        branch = self.make_branch('a', format=self.get_format_name())
 
450
        self.assertRaises(errors.UnstackableBranchFormat, branch.get_stacked_on_url)
 
451
 
 
452
 
 
453
class TestBranch7(TestBranch67, tests.TestCaseWithTransport):
 
454
 
 
455
    def get_class(self):
 
456
        return _mod_branch.BzrBranch7
 
457
 
 
458
    def get_format_name(self):
 
459
        return "1.9"
 
460
 
 
461
    def get_format_name_subtree(self):
 
462
        return "development-subtree"
 
463
 
 
464
    def test_set_stacked_on_url_unstackable_repo(self):
 
465
        repo = self.make_repository('a', format='dirstate-tags')
 
466
        control = repo.bzrdir
 
467
        branch = _mod_branch.BzrBranchFormat7().initialize(control)
 
468
        target = self.make_branch('b')
 
469
        self.assertRaises(errors.UnstackableRepositoryFormat,
 
470
            branch.set_stacked_on_url, target.base)
 
471
 
 
472
    def test_clone_stacked_on_unstackable_repo(self):
 
473
        repo = self.make_repository('a', format='dirstate-tags')
 
474
        control = repo.bzrdir
 
475
        branch = _mod_branch.BzrBranchFormat7().initialize(control)
 
476
        # Calling clone should not raise UnstackableRepositoryFormat.
 
477
        cloned_bzrdir = control.clone('cloned')
 
478
 
 
479
    def _test_default_stacked_location(self):
 
480
        branch = self.make_branch('a', format=self.get_format_name())
 
481
        self.assertRaises(errors.NotStacked, branch.get_stacked_on_url)
 
482
 
 
483
    def test_stack_and_unstack(self):
 
484
        branch = self.make_branch('a', format=self.get_format_name())
 
485
        target = self.make_branch_and_tree('b', format=self.get_format_name())
 
486
        branch.set_stacked_on_url(target.branch.base)
 
487
        self.assertEqual(target.branch.base, branch.get_stacked_on_url())
 
488
        revid = target.commit('foo')
 
489
        self.assertTrue(branch.repository.has_revision(revid))
 
490
        branch.set_stacked_on_url(None)
 
491
        self.assertRaises(errors.NotStacked, branch.get_stacked_on_url)
 
492
        self.assertFalse(branch.repository.has_revision(revid))
 
493
 
 
494
    def test_open_opens_stacked_reference(self):
 
495
        branch = self.make_branch('a', format=self.get_format_name())
 
496
        target = self.make_branch_and_tree('b', format=self.get_format_name())
 
497
        branch.set_stacked_on_url(target.branch.base)
 
498
        branch = branch.bzrdir.open_branch()
 
499
        revid = target.commit('foo')
 
500
        self.assertTrue(branch.repository.has_revision(revid))
 
501
 
 
502
 
 
503
class BzrBranch8(tests.TestCaseWithTransport):
 
504
 
 
505
    def make_branch(self, location, format=None):
 
506
        if format is None:
 
507
            format = bzrdir.format_registry.make_bzrdir('1.9')
 
508
            format.set_branch_format(_mod_branch.BzrBranchFormat8())
 
509
        return tests.TestCaseWithTransport.make_branch(
 
510
            self, location, format=format)
 
511
 
 
512
    def create_branch_with_reference(self):
 
513
        branch = self.make_branch('branch')
 
514
        branch._set_all_reference_info({'file-id': ('path', 'location')})
 
515
        return branch
 
516
 
 
517
    @staticmethod
 
518
    def instrument_branch(branch, gets):
 
519
        old_get = branch._transport.get
 
520
        def get(*args, **kwargs):
 
521
            gets.append((args, kwargs))
 
522
            return old_get(*args, **kwargs)
 
523
        branch._transport.get = get
 
524
 
 
525
    def test_reference_info_caching_read_locked(self):
 
526
        gets = []
 
527
        branch = self.create_branch_with_reference()
 
528
        branch.lock_read()
 
529
        self.addCleanup(branch.unlock)
 
530
        self.instrument_branch(branch, gets)
 
531
        branch.get_reference_info('file-id')
 
532
        branch.get_reference_info('file-id')
 
533
        self.assertEqual(1, len(gets))
 
534
 
 
535
    def test_reference_info_caching_read_unlocked(self):
 
536
        gets = []
 
537
        branch = self.create_branch_with_reference()
 
538
        self.instrument_branch(branch, gets)
 
539
        branch.get_reference_info('file-id')
 
540
        branch.get_reference_info('file-id')
 
541
        self.assertEqual(2, len(gets))
 
542
 
 
543
    def test_reference_info_caching_write_locked(self):
 
544
        gets = []
 
545
        branch = self.make_branch('branch')
 
546
        branch.lock_write()
 
547
        self.instrument_branch(branch, gets)
 
548
        self.addCleanup(branch.unlock)
 
549
        branch._set_all_reference_info({'file-id': ('path2', 'location2')})
 
550
        path, location = branch.get_reference_info('file-id')
 
551
        self.assertEqual(0, len(gets))
 
552
        self.assertEqual('path2', path)
 
553
        self.assertEqual('location2', location)
 
554
 
 
555
    def test_reference_info_caches_cleared(self):
 
556
        branch = self.make_branch('branch')
 
557
        branch.lock_write()
 
558
        branch.set_reference_info('file-id', 'path2', 'location2')
 
559
        branch.unlock()
 
560
        doppelganger = _mod_branch.Branch.open('branch')
 
561
        doppelganger.set_reference_info('file-id', 'path3', 'location3')
 
562
        self.assertEqual(('path3', 'location3'),
 
563
                         branch.get_reference_info('file-id'))
 
564
 
 
565
    def _recordParentMapCalls(self, repo):
 
566
        self._parent_map_calls = []
 
567
        orig_get_parent_map = repo.revisions.get_parent_map
 
568
        def get_parent_map(q):
 
569
            q = list(q)
 
570
            self._parent_map_calls.extend([e[0] for e in q])
 
571
            return orig_get_parent_map(q)
 
572
        repo.revisions.get_parent_map = get_parent_map
 
573
 
 
574
 
 
575
class TestBranchReference(tests.TestCaseWithTransport):
 
576
    """Tests for the branch reference facility."""
 
577
 
 
578
    def test_create_open_reference(self):
 
579
        bzrdirformat = bzrdir.BzrDirMetaFormat1()
 
580
        t = self.get_transport()
 
581
        t.mkdir('repo')
 
582
        dir = bzrdirformat.initialize(self.get_url('repo'))
 
583
        dir.create_repository()
 
584
        target_branch = dir.create_branch()
 
585
        t.mkdir('branch')
 
586
        branch_dir = bzrdirformat.initialize(self.get_url('branch'))
 
587
        made_branch = _mod_branch.BranchReferenceFormat().initialize(
 
588
            branch_dir, target_branch=target_branch)
 
589
        self.assertEqual(made_branch.base, target_branch.base)
 
590
        opened_branch = branch_dir.open_branch()
 
591
        self.assertEqual(opened_branch.base, target_branch.base)
 
592
 
 
593
    def test_get_reference(self):
 
594
        """For a BranchReference, get_reference should reutrn the location."""
 
595
        branch = self.make_branch('target')
 
596
        checkout = branch.create_checkout('checkout', lightweight=True)
 
597
        reference_url = branch.bzrdir.root_transport.abspath('') + '/'
 
598
        # if the api for create_checkout changes to return different checkout types
 
599
        # then this file read will fail.
 
600
        self.assertFileEqual(reference_url, 'checkout/.bzr/branch/location')
 
601
        self.assertEqual(reference_url,
 
602
            _mod_branch.BranchReferenceFormat().get_reference(checkout.bzrdir))
 
603
 
 
604
 
 
605
class TestHooks(tests.TestCaseWithTransport):
 
606
 
 
607
    def test_constructor(self):
 
608
        """Check that creating a BranchHooks instance has the right defaults."""
 
609
        hooks = _mod_branch.BranchHooks()
 
610
        self.assertTrue("set_rh" in hooks, "set_rh not in %s" % hooks)
 
611
        self.assertTrue("post_push" in hooks, "post_push not in %s" % hooks)
 
612
        self.assertTrue("post_commit" in hooks, "post_commit not in %s" % hooks)
 
613
        self.assertTrue("pre_commit" in hooks, "pre_commit not in %s" % hooks)
 
614
        self.assertTrue("post_pull" in hooks, "post_pull not in %s" % hooks)
 
615
        self.assertTrue("post_uncommit" in hooks,
 
616
                        "post_uncommit not in %s" % hooks)
 
617
        self.assertTrue("post_change_branch_tip" in hooks,
 
618
                        "post_change_branch_tip not in %s" % hooks)
 
619
        self.assertTrue("post_branch_init" in hooks,
 
620
                        "post_branch_init not in %s" % hooks)
 
621
        self.assertTrue("post_switch" in hooks,
 
622
                        "post_switch not in %s" % hooks)
 
623
 
 
624
    def test_installed_hooks_are_BranchHooks(self):
 
625
        """The installed hooks object should be a BranchHooks."""
 
626
        # the installed hooks are saved in self._preserved_hooks.
 
627
        self.assertIsInstance(self._preserved_hooks[_mod_branch.Branch][1],
 
628
                              _mod_branch.BranchHooks)
 
629
 
 
630
    def test_post_branch_init_hook(self):
 
631
        calls = []
 
632
        _mod_branch.Branch.hooks.install_named_hook('post_branch_init',
 
633
            calls.append, None)
 
634
        self.assertLength(0, calls)
 
635
        branch = self.make_branch('a')
 
636
        self.assertLength(1, calls)
 
637
        params = calls[0]
 
638
        self.assertIsInstance(params, _mod_branch.BranchInitHookParams)
 
639
        self.assertTrue(hasattr(params, 'bzrdir'))
 
640
        self.assertTrue(hasattr(params, 'branch'))
 
641
 
 
642
    def test_post_branch_init_hook_repr(self):
 
643
        param_reprs = []
 
644
        _mod_branch.Branch.hooks.install_named_hook('post_branch_init',
 
645
            lambda params: param_reprs.append(repr(params)), None)
 
646
        branch = self.make_branch('a')
 
647
        self.assertLength(1, param_reprs)
 
648
        param_repr = param_reprs[0]
 
649
        self.assertStartsWith(param_repr, '<BranchInitHookParams of ')
 
650
 
 
651
    def test_post_switch_hook(self):
 
652
        from bzrlib import switch
 
653
        calls = []
 
654
        _mod_branch.Branch.hooks.install_named_hook('post_switch',
 
655
            calls.append, None)
 
656
        tree = self.make_branch_and_tree('branch-1')
 
657
        self.build_tree(['branch-1/file-1'])
 
658
        tree.add('file-1')
 
659
        tree.commit('rev1')
 
660
        to_branch = tree.bzrdir.sprout('branch-2').open_branch()
 
661
        self.build_tree(['branch-1/file-2'])
 
662
        tree.add('file-2')
 
663
        tree.remove('file-1')
 
664
        tree.commit('rev2')
 
665
        checkout = tree.branch.create_checkout('checkout')
 
666
        self.assertLength(0, calls)
 
667
        switch.switch(checkout.bzrdir, to_branch)
 
668
        self.assertLength(1, calls)
 
669
        params = calls[0]
 
670
        self.assertIsInstance(params, _mod_branch.SwitchHookParams)
 
671
        self.assertTrue(hasattr(params, 'to_branch'))
 
672
        self.assertTrue(hasattr(params, 'revision_id'))
 
673
 
 
674
 
 
675
class TestBranchOptions(tests.TestCaseWithTransport):
 
676
 
 
677
    def setUp(self):
 
678
        super(TestBranchOptions, self).setUp()
 
679
        self.branch = self.make_branch('.')
 
680
        self.config_stack = self.branch.get_config_stack()
 
681
 
 
682
    def check_append_revisions_only(self, expected_value, value=None):
 
683
        """Set append_revisions_only in config and check its interpretation."""
 
684
        if value is not None:
 
685
            self.config_stack.set('append_revisions_only', value)
 
686
        self.assertEqual(expected_value,
 
687
                         self.branch.get_append_revisions_only())
 
688
 
 
689
    def test_valid_append_revisions_only(self):
 
690
        self.assertEquals(None,
 
691
                          self.config_stack.get('append_revisions_only'))
 
692
        self.check_append_revisions_only(None)
 
693
        self.check_append_revisions_only(False, 'False')
 
694
        self.check_append_revisions_only(True, 'True')
 
695
        # The following values will cause compatibility problems on projects
 
696
        # using older bzr versions (<2.2) but are accepted
 
697
        self.check_append_revisions_only(False, 'false')
 
698
        self.check_append_revisions_only(True, 'true')
 
699
 
 
700
    def test_invalid_append_revisions_only(self):
 
701
        """Ensure warning is noted on invalid settings"""
 
702
        self.warnings = []
 
703
        def warning(*args):
 
704
            self.warnings.append(args[0] % args[1:])
 
705
        self.overrideAttr(trace, 'warning', warning)
 
706
        self.check_append_revisions_only(None, 'not-a-bool')
 
707
        self.assertLength(1, self.warnings)
 
708
        self.assertEqual(
 
709
            'Value "not-a-bool" is not valid for "append_revisions_only"',
 
710
            self.warnings[0])
 
711
 
 
712
 
 
713
class TestPullResult(tests.TestCase):
 
714
 
 
715
    def test_pull_result_to_int(self):
 
716
        # to support old code, the pull result can be used as an int
 
717
        r = _mod_branch.PullResult()
 
718
        r.old_revno = 10
 
719
        r.new_revno = 20
 
720
        # this usage of results is not recommended for new code (because it
 
721
        # doesn't describe very well what happened), but for api stability
 
722
        # it's still supported
 
723
        self.assertEqual(self.applyDeprecated(
 
724
            symbol_versioning.deprecated_in((2, 3, 0)),
 
725
            r.__int__),
 
726
            10)
 
727
 
 
728
    def test_report_changed(self):
 
729
        r = _mod_branch.PullResult()
 
730
        r.old_revid = "old-revid"
 
731
        r.old_revno = 10
 
732
        r.new_revid = "new-revid"
 
733
        r.new_revno = 20
 
734
        f = StringIO()
 
735
        r.report(f)
 
736
        self.assertEqual("Now on revision 20.\n", f.getvalue())
 
737
        self.assertEqual("Now on revision 20.\n", f.getvalue())
 
738
 
 
739
    def test_report_unchanged(self):
 
740
        r = _mod_branch.PullResult()
 
741
        r.old_revid = "same-revid"
 
742
        r.new_revid = "same-revid"
 
743
        f = StringIO()
 
744
        r.report(f)
 
745
        self.assertEqual("No revisions or tags to pull.\n", f.getvalue())