77
89
# try to push, which should raise a BoundBranchConnectionFailure.
78
90
self.assertRaises(errors.BoundBranchConnectionFailure,
79
91
other.branch.push, checkout.branch)
93
def test_push_uses_read_lock(self):
94
"""Push should only need a read lock on the source side."""
95
source = self.make_branch_and_tree('source')
96
target = self.make_branch('target')
98
self.build_tree(['source/a'])
102
source.branch.lock_read()
106
source.branch.push(target, stop_revision=source.last_revision())
110
source.branch.unlock()
112
def test_push_within_repository(self):
113
"""Push from one branch to another inside the same repository."""
115
repo = self.make_repository('repo', shared=True)
116
except (errors.IncompatibleFormat, errors.UninitializableFormat):
117
# This Branch format cannot create shared repositories
119
# This is a little bit trickier because make_branch_and_tree will not
120
# re-use a shared repository.
121
a_bzrdir = self.make_bzrdir('repo/tree')
123
a_branch = self.branch_format.initialize(a_bzrdir)
124
except (errors.UninitializableFormat):
125
# Cannot create these branches
127
tree = a_branch.bzrdir.create_workingtree()
128
self.build_tree(['repo/tree/a'])
132
to_bzrdir = self.make_bzrdir('repo/branch')
133
to_branch = self.branch_format.initialize(to_bzrdir)
134
tree.branch.push(to_branch)
136
self.assertEqual(tree.branch.last_revision(),
137
to_branch.last_revision())
140
class TestPushHook(TestCaseWithBranch):
144
TestCaseWithBranch.setUp(self)
146
def capture_post_push_hook(self, source, local, master, old_revno,
147
old_revid, new_revno, new_revid):
148
"""Capture post push hook calls to self.hook_calls.
150
The call is logged, as is some state of the two branches.
153
local_locked = local.is_locked()
154
local_base = local.base
158
self.hook_calls.append(
159
('post_push', source, local_base, master.base, old_revno, old_revid,
160
new_revno, new_revid, source.is_locked(), local_locked,
163
def test_post_push_empty_history(self):
164
target = self.make_branch('target')
165
source = self.make_branch('source')
166
Branch.hooks.install_hook('post_push', self.capture_post_push_hook)
168
# with nothing there we should still get a notification, and
169
# have both branches locked at the notification time.
171
('post_push', source, None, target.base, 0, NULL_REVISION,
172
0, NULL_REVISION, True, None, True)
176
def test_post_push_bound_branch(self):
177
# pushing to a bound branch should pass in the master branch to the
178
# hook, allowing the correct number of emails to be sent, while still
179
# allowing hooks that want to modify the target to do so to both
181
target = self.make_branch('target')
182
local = self.make_branch('local')
185
except errors.UpgradeRequired:
186
# cant bind this format, the test is irrelevant.
188
source = self.make_branch('source')
189
Branch.hooks.install_hook('post_push', self.capture_post_push_hook)
191
# with nothing there we should still get a notification, and
192
# have both branches locked at the notification time.
194
('post_push', source, local.base, target.base, 0, NULL_REVISION,
195
0, NULL_REVISION, True, True, True)
199
def test_post_push_nonempty_history(self):
200
target = self.make_branch_and_memory_tree('target')
203
rev1 = target.commit('rev 1')
205
sourcedir = target.bzrdir.clone(self.get_url('source'))
206
source = MemoryTree.create_on_branch(sourcedir.open_branch())
207
rev2 = source.commit('rev 2')
208
Branch.hooks.install_hook('post_push', self.capture_post_push_hook)
209
source.branch.push(target.branch)
210
# with nothing there we should still get a notification, and
211
# have both branches locked at the notification time.
213
('post_push', source.branch, None, target.branch.base, 1, rev1,
214
2, rev2, True, None, True)