/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4763.2.4 by John Arbash Meinel
merge bzr.2.1 in preparation for NEWS entry.
1
# Copyright (C) 2009, 2010 Canonical Ltd
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
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 branch.push behaviour."""
18
5317.1.1 by Robert Collins
Make the interbranch test_no_get_parent_map_after_insert_stream test work for looms - a little ugly, will want a generic hook-out to foreign formats in some form, at some point.
19
from testtools.matchers import (
20
    Equals,
21
    MatchesAny,
22
    )
23
6624 by Jelmer Vernooij
Merge Python3 porting work ('py3 pokes')
24
from ... import (
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
25
    branch,
4332.3.35 by Robert Collins
Fix failing tests.
26
    check,
6472.2.2 by Jelmer Vernooij
Use controldir rather than bzrdir in a couple more places.
27
    controldir,
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
28
    errors,
29
    push,
30
    tests,
6670.4.1 by Jelmer Vernooij
Update imports.
31
    )
32
from ...bzr import (
33
    branch as bzrbranch,
5863.4.2 by Jelmer Vernooij
Fix test.
34
    vf_repository,
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
35
    )
6624 by Jelmer Vernooij
Merge Python3 porting work ('py3 pokes')
36
from ...branch import Branch
37
from ...controldir import ControlDir
38
from ...memorytree import MemoryTree
39
from ...revision import NULL_REVISION
40
from ...sixish import (
6621.22.2 by Martin
Use BytesIO or StringIO from bzrlib.sixish
41
    BytesIO,
42
    )
6670.4.16 by Jelmer Vernooij
Move smart to breezy.bzr.
43
from ...bzr.smart.repository import SmartServerRepositoryGetParentMap
6624 by Jelmer Vernooij
Merge Python3 porting work ('py3 pokes')
44
from . import (
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
45
    TestCaseWithInterBranch,
46
    )
6624 by Jelmer Vernooij
Merge Python3 porting work ('py3 pokes')
47
from .. import test_server
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
48
49
4211.1.6 by Jelmer Vernooij
Review from Ian.
50
# These tests are based on similar tests in 
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
51
# breezy.tests.per_branch.test_push.
4211.1.6 by Jelmer Vernooij
Review from Ian.
52
53
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
54
class TestPush(TestCaseWithInterBranch):
55
56
    def test_push_convergence_simple(self):
57
        # when revisions are pushed, the left-most accessible parents must
58
        # become the revision-history.
59
        mine = self.make_from_branch_and_tree('mine')
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
60
        mine.commit('1st post', allow_pointless=True)
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
61
        other = self.sprout_to(mine.controldir, 'other').open_workingtree()
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
62
        m1 = other.commit('my change', allow_pointless=True)
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
63
        mine.merge_from_branch(other.branch)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
64
        p2 = mine.commit('merge my change')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
65
        result = mine.branch.push(other.branch)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
66
        self.assertEqual(p2, other.branch.last_revision())
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
67
        # result object contains some structured data
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
68
        self.assertEqual(result.old_revid, m1)
69
        self.assertEqual(result.new_revid, p2)
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
70
71
    def test_push_merged_indirect(self):
72
        # it should be possible to do a push from one branch into another
73
        # when the tip of the target was merged into the source branch
74
        # via a third branch - so its buried in the ancestry and is not
75
        # directly accessible.
76
        mine = self.make_from_branch_and_tree('mine')
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
77
        p1 = mine.commit('1st post', allow_pointless=True)
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
78
        target = self.sprout_to(mine.controldir, 'target').open_workingtree()
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
79
        m1 = target.commit('my change', allow_pointless=True)
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
80
        other = self.sprout_to(mine.controldir, 'other').open_workingtree()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
81
        other.merge_from_branch(target.branch)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
82
        o2 = other.commit('merge my change')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
83
        mine.merge_from_branch(other.branch)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
84
        p2 = mine.commit('merge other')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
85
        mine.branch.push(target.branch)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
86
        self.assertEqual(p2, target.branch.last_revision())
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
87
88
    def test_push_to_checkout_updates_master(self):
89
        """Pushing into a checkout updates the checkout and the master branch"""
90
        master_tree = self.make_to_branch_and_tree('master')
91
        checkout = self.make_to_branch_and_tree('checkout')
92
        try:
93
            checkout.branch.bind(master_tree.branch)
94
        except errors.UpgradeRequired:
95
            # cant bind this format, the test is irrelevant.
96
            return
97
        rev1 = checkout.commit('master')
98
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
99
        other_bzrdir = self.sprout_from(master_tree.branch.controldir, 'other')
4211.1.5 by Jelmer Vernooij
Fix copyright year, number of columns used.
100
        other = other_bzrdir.open_workingtree()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
101
        rev2 = other.commit('other commit')
102
        # now push, which should update both checkout and master.
103
        other.branch.push(checkout.branch)
6165.4.6 by Jelmer Vernooij
Avoid more uses of revision_history.
104
        self.assertEqual(rev2, checkout.branch.last_revision())
105
        self.assertEqual(rev2, master_tree.branch.last_revision())
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
106
107
    def test_push_raises_specific_error_on_master_connection_error(self):
108
        master_tree = self.make_to_branch_and_tree('master')
109
        checkout = self.make_to_branch_and_tree('checkout')
110
        try:
111
            checkout.branch.bind(master_tree.branch)
112
        except errors.UpgradeRequired:
113
            # cant bind this format, the test is irrelevant.
114
            return
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
115
        other_bzrdir = self.sprout_from(master_tree.branch.controldir, 'other')
4211.1.5 by Jelmer Vernooij
Fix copyright year, number of columns used.
116
        other = other_bzrdir.open_workingtree()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
117
        # move the branch out of the way on disk to cause a connection
118
        # error.
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
119
        master_tree.controldir.destroy_branch()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
120
        # try to push, which should raise a BoundBranchConnectionFailure.
121
        self.assertRaises(errors.BoundBranchConnectionFailure,
122
                other.branch.push, checkout.branch)
123
124
    def test_push_uses_read_lock(self):
125
        """Push should only need a read lock on the source side."""
126
        source = self.make_from_branch_and_tree('source')
127
        target = self.make_to_branch('target')
128
129
        self.build_tree(['source/a'])
130
        source.add(['a'])
131
        source.commit('a')
132
133
        source.branch.lock_read()
134
        try:
135
            target.lock_write()
136
            try:
137
                source.branch.push(target, stop_revision=source.last_revision())
138
            finally:
139
                target.unlock()
140
        finally:
141
            source.branch.unlock()
142
143
    def test_push_within_repository(self):
144
        """Push from one branch to another inside the same repository."""
145
        try:
146
            repo = self.make_repository('repo', shared=True)
147
        except (errors.IncompatibleFormat, errors.UninitializableFormat):
148
            # This Branch format cannot create shared repositories
149
            return
5297.2.2 by Robert Collins
Fixup tests in per_interbranch not being strict about making the from format the configured one.
150
        # This is a little bit trickier because make_from_branch_and_tree will not
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
151
        # re-use a shared repository.
152
        try:
153
            a_branch = self.make_from_branch('repo/tree')
154
        except (errors.UninitializableFormat):
155
            # Cannot create these branches
156
            return
157
        try:
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
158
            tree = a_branch.controldir.create_workingtree()
6127.1.9 by Jelmer Vernooij
Add lightweight option to _get_checkout_format().
159
        except errors.UnsupportedOperation:
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
160
            self.assertFalse(a_branch.controldir._format.supports_workingtrees)
6127.1.9 by Jelmer Vernooij
Add lightweight option to _get_checkout_format().
161
            tree = a_branch.create_checkout('repo/tree', lightweight=True)
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
162
        except errors.NotLocalUrl:
5017.3.41 by Vincent Ladeuil
-s bt.per_interbranch passing
163
            if self.vfs_transport_factory is test_server.LocalURLServer:
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
164
                # the branch is colocated on disk, we cannot create a checkout.
165
                # hopefully callers will expect this.
6472.2.2 by Jelmer Vernooij
Use controldir rather than bzrdir in a couple more places.
166
                local_controldir = controldir.ControlDir.open(self.get_vfs_only_url('repo/tree'))
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
167
                tree = local_controldir.create_workingtree()
168
            else:
169
                tree = a_branch.create_checkout('repo/tree', lightweight=True)
170
        self.build_tree(['repo/tree/a'])
171
        tree.add(['a'])
172
        tree.commit('a')
173
174
        to_branch = self.make_to_branch('repo/branch')
175
        tree.branch.push(to_branch)
176
177
        self.assertEqual(tree.branch.last_revision(),
178
                         to_branch.last_revision())
179
180
    def test_push_overwrite_of_non_tip_with_stop_revision(self):
181
        """Combining the stop_revision and overwrite options works.
182
183
        This was <https://bugs.launchpad.net/bzr/+bug/234229>.
184
        """
185
        source = self.make_from_branch_and_tree('source')
186
        target = self.make_to_branch('target')
187
188
        source.commit('1st commit')
189
        source.branch.push(target)
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
190
        rev2 = source.commit('2nd commit')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
191
        source.commit('3rd commit')
192
6747.3.1 by Jelmer Vernooij
Avoid more uses of revision_id.
193
        source.branch.push(target, stop_revision=rev2, overwrite=True)
194
        self.assertEqual(rev2, target.last_revision())
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
195
196
    def test_push_with_default_stacking_does_not_create_broken_branch(self):
197
        """Pushing a new standalone branch works even when there's a default
198
        stacking policy at the destination.
199
200
        The new branch will preserve the repo format (even if it isn't the
201
        default for the branch), and will be stacked when the repo format
202
        allows (which means that the branch format isn't necessarly preserved).
203
        """
6653.1.1 by Jelmer Vernooij
Split bzr branch code out into breezy.bzrbranch.
204
        if isinstance(self.branch_format_from, bzrbranch.BranchReferenceFormat):
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
205
            # This test could in principle apply to BranchReferenceFormat, but
206
            # make_branch_builder doesn't support it.
207
            raise tests.TestSkipped(
208
                "BranchBuilder can't make reference branches.")
209
        # Make a branch called "local" in a stackable repository
210
        # The branch has 3 revisions:
211
        #   - rev-1, adds a file
212
        #   - rev-2, no changes
213
        #   - rev-3, modifies the file.
214
        repo = self.make_repository('repo', shared=True, format='1.6')
215
        builder = self.make_from_branch_builder('repo/local')
216
        builder.start_series()
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
217
        builder.build_snapshot(None, [
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
218
            ('add', ('', 'root-id', 'directory', '')),
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
219
            ('add', ('filename', 'f-id', 'file', 'content\n'))],
220
            revision_id='rev-1')
221
        builder.build_snapshot(['rev-1'], [], revision_id='rev-2')
222
        builder.build_snapshot(['rev-2'],
223
            [('modify', ('f-id', 'new-content\n'))], revision_id='rev-3')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
224
        builder.finish_series()
225
        trunk = builder.get_branch()
226
        # Sprout rev-1 to "trunk", so that we can stack on it.
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
227
        trunk.controldir.sprout(self.get_url('trunk'), revision_id='rev-1')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
228
        # Set a default stacking policy so that new branches will automatically
229
        # stack on trunk.
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
230
        self.make_controldir('.').get_config().set_default_stack_on('trunk')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
231
        # Push rev-2 to a new branch "remote".  It will be stacked on "trunk".
6621.22.2 by Martin
Use BytesIO or StringIO from bzrlib.sixish
232
        output = BytesIO()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
233
        push._show_push_branch(trunk, 'rev-2', self.get_url('remote'), output)
234
        # Push rev-3 onto "remote".  If "remote" not stacked and is missing the
235
        # fulltext record for f-id @ rev-1, then this will fail.
236
        remote_branch = Branch.open(self.get_url('remote'))
237
        trunk.push(remote_branch)
4332.3.35 by Robert Collins
Fix failing tests.
238
        check.check_dwim(remote_branch.base, False, True, True)
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
239
240
    def test_no_get_parent_map_after_insert_stream(self):
241
        # Effort test for bug 331823
242
        self.setup_smart_server_with_call_log()
243
        # Make a local branch with four revisions.  Four revisions because:
244
        # one to push, one there for _walk_to_common_revisions to find, one we
245
        # don't want to access, one for luck :)
6653.1.1 by Jelmer Vernooij
Split bzr branch code out into breezy.bzrbranch.
246
        if isinstance(self.branch_format_from, bzrbranch.BranchReferenceFormat):
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
247
            # This test could in principle apply to BranchReferenceFormat, but
248
            # make_branch_builder doesn't support it.
249
            raise tests.TestSkipped(
250
                "BranchBuilder can't make reference branches.")
251
        try:
252
            builder = self.make_from_branch_builder('local')
253
        except (errors.TransportNotPossible, errors.UninitializableFormat):
254
            raise tests.TestNotApplicable('format not directly constructable')
255
        builder.start_series()
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
256
        builder.build_snapshot(None, [
257
            ('add', ('', 'root-id', 'directory', ''))],
258
            revision_id='first')
259
        builder.build_snapshot(['first'], [], revision_id='second')
260
        builder.build_snapshot(['second'], [], revision_id='third')
261
        builder.build_snapshot(['third'], [], revision_id='fourth')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
262
        builder.finish_series()
263
        local = branch.Branch.open(self.get_vfs_only_url('local'))
264
        # Initial push of three revisions
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
265
        remote_bzrdir = local.controldir.sprout(
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
266
            self.get_url('remote'), revision_id='third')
267
        remote = remote_bzrdir.open_branch()
268
        # Push fourth revision
269
        self.reset_smart_call_log()
270
        self.disableOptimisticGetParentMap()
271
        self.assertFalse(local.is_locked())
272
        local.push(remote)
273
        hpss_call_names = [item.call.method for item in self.hpss_calls]
4476.3.82 by Andrew Bennetts
Mention another bug fix in NEWS, and update verb name, comments, and NEWS additions for landing on 1.19 rather than 1.18.
274
        self.assertTrue('Repository.insert_stream_1.19' in hpss_call_names)
4476.3.18 by Andrew Bennetts
Update some tests that were expecting the pre-1.17 insert_stream verb.
275
        insert_stream_idx = hpss_call_names.index(
4476.3.82 by Andrew Bennetts
Mention another bug fix in NEWS, and update verb name, comments, and NEWS additions for landing on 1.19 rather than 1.18.
276
            'Repository.insert_stream_1.19')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
277
        calls_after_insert_stream = hpss_call_names[insert_stream_idx:]
278
        # After inserting the stream the client has no reason to query the
279
        # remote graph any further.
5317.1.1 by Robert Collins
Make the interbranch test_no_get_parent_map_after_insert_stream test work for looms - a little ugly, will want a generic hook-out to foreign formats in some form, at some point.
280
        bzr_core_trace = Equals(
281
            ['Repository.insert_stream_1.19', 'Repository.insert_stream_1.19',
6282.6.33 by Jelmer Vernooij
Fix some tests.
282
             'Branch.set_last_revision_info', 'Branch.unlock'])
5317.1.1 by Robert Collins
Make the interbranch test_no_get_parent_map_after_insert_stream test work for looms - a little ugly, will want a generic hook-out to foreign formats in some form, at some point.
283
        bzr_loom_trace = Equals(
284
            ['Repository.insert_stream_1.19', 'Repository.insert_stream_1.19',
6282.6.33 by Jelmer Vernooij
Fix some tests.
285
             'Branch.set_last_revision_info', 'get', 'Branch.unlock'])
5317.1.1 by Robert Collins
Make the interbranch test_no_get_parent_map_after_insert_stream test work for looms - a little ugly, will want a generic hook-out to foreign formats in some form, at some point.
286
        self.assertThat(calls_after_insert_stream,
287
            MatchesAny(bzr_core_trace, bzr_loom_trace))
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
288
289
    def disableOptimisticGetParentMap(self):
290
        # Tweak some class variables to stop remote get_parent_map calls asking
291
        # for or receiving more data than the caller asked for.
5863.4.2 by Jelmer Vernooij
Fix test.
292
        self.overrideAttr(vf_repository.InterVersionedFileRepository,
4985.1.5 by Vincent Ladeuil
Deploying the new overrideAttr facility further reduces the complexity
293
                          '_walk_to_common_revisions_batch_size', 1)
294
        self.overrideAttr(SmartServerRepositoryGetParentMap,
295
                            'no_extra_results', True)
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
296
297
298
class TestPushHook(TestCaseWithInterBranch):
299
300
    def setUp(self):
301
        self.hook_calls = []
6552.1.4 by Vincent Ladeuil
Remaining tests matching setup(self) that can be rewritten with super().
302
        super(TestPushHook, self).setUp()
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
303
304
    def capture_post_push_hook(self, result):
305
        """Capture post push hook calls to self.hook_calls.
306
307
        The call is logged, as is some state of the two branches.
308
        """
309
        if result.local_branch:
310
            local_locked = result.local_branch.is_locked()
311
            local_base = result.local_branch.base
312
        else:
313
            local_locked = None
314
            local_base = None
315
        self.hook_calls.append(
316
            ('post_push', result.source_branch, local_base,
317
             result.master_branch.base,
318
             result.old_revno, result.old_revid,
319
             result.new_revno, result.new_revid,
320
             result.source_branch.is_locked(), local_locked,
321
             result.master_branch.is_locked()))
322
323
    def test_post_push_empty_history(self):
324
        target = self.make_to_branch('target')
325
        source = self.make_from_branch('source')
326
        Branch.hooks.install_named_hook('post_push',
327
                                        self.capture_post_push_hook, None)
328
        source.push(target)
329
        # with nothing there we should still get a notification, and
330
        # have both branches locked at the notification time.
331
        self.assertEqual([
332
            ('post_push', source, None, target.base, 0, NULL_REVISION,
333
             0, NULL_REVISION, True, None, True)
334
            ],
335
            self.hook_calls)
336
337
    def test_post_push_bound_branch(self):
338
        # pushing to a bound branch should pass in the master branch to the
339
        # hook, allowing the correct number of emails to be sent, while still
340
        # allowing hooks that want to modify the target to do so to both
341
        # instances.
342
        target = self.make_to_branch('target')
343
        local = self.make_from_branch('local')
344
        try:
345
            local.bind(target)
346
        except errors.UpgradeRequired:
347
            # We can't bind this format to itself- typically it is the local
348
            # branch that doesn't support binding.  As of May 2007
349
            # remotebranches can't be bound.  Let's instead make a new local
350
            # branch of the default type, which does allow binding.
351
            # See https://bugs.launchpad.net/bzr/+bug/112020
6472.2.2 by Jelmer Vernooij
Use controldir rather than bzrdir in a couple more places.
352
            local = ControlDir.create_branch_convenience('local2')
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
353
            local.bind(target)
354
        source = self.make_from_branch('source')
355
        Branch.hooks.install_named_hook('post_push',
356
                                        self.capture_post_push_hook, None)
357
        source.push(local)
358
        # with nothing there we should still get a notification, and
359
        # have both branches locked at the notification time.
360
        self.assertEqual([
361
            ('post_push', source, local.base, target.base, 0, NULL_REVISION,
362
             0, NULL_REVISION, True, True, True)
363
            ],
364
            self.hook_calls)
365
366
    def test_post_push_nonempty_history(self):
367
        target = self.make_to_branch_and_tree('target')
368
        target.lock_write()
369
        target.add('')
370
        rev1 = target.commit('rev 1')
371
        target.unlock()
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
372
        sourcedir = target.branch.controldir.clone(self.get_url('source'))
4211.1.4 by Jelmer Vernooij
add InterBranch.push() tests.
373
        source = MemoryTree.create_on_branch(sourcedir.open_branch())
374
        rev2 = source.commit('rev 2')
375
        Branch.hooks.install_named_hook('post_push',
376
                                        self.capture_post_push_hook, None)
377
        source.branch.push(target.branch)
378
        # with nothing there we should still get a notification, and
379
        # have both branches locked at the notification time.
380
        self.assertEqual([
381
            ('post_push', source.branch, None, target.branch.base, 1, rev1,
382
             2, rev2, True, None, True)
383
            ],
384
            self.hook_calls)