1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright (C) 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Tests that branch classes implement hook callouts correctly."""
from bzrlib.branch import Branch
from bzrlib.tests import TestCaseWithMemoryTransport
class TestSetRevisionHistoryHook(TestCaseWithMemoryTransport):
def setUp(self):
self.hook_calls = []
TestCaseWithMemoryTransport.setUp(self)
def capture_set_rh_hook(self, branch, rev_history):
"""Capture post set-rh hook calls to self.hook_calls.
The call is logged, as is some state of the branch.
"""
self.hook_calls.append(
('set_rh', branch, rev_history, branch.is_locked()))
def test_set_rh_empty_history(self):
branch = self.make_branch('source')
Branch.hooks.install_hook('set_rh', self.capture_set_rh_hook)
branch.set_revision_history([])
self.assertEqual(self.hook_calls,
[('set_rh', branch, [], True)])
def test_set_rh_nonempty_history(self):
tree = self.make_branch_and_memory_tree('source')
tree.lock_write()
tree.add('')
tree.commit('empty commit', rev_id='foo')
tree.unlock()
branch = tree.branch
Branch.hooks.install_hook('set_rh', self.capture_set_rh_hook)
branch.set_revision_history(['f\xc2\xb5'])
self.assertEqual(self.hook_calls,
[('set_rh', branch, ['f\xc2\xb5'], True)])
def test_set_rh_branch_is_locked(self):
branch = self.make_branch('source')
Branch.hooks.install_hook('set_rh', self.capture_set_rh_hook)
branch.set_revision_history([])
self.assertEqual(self.hook_calls,
[('set_rh', branch, [], True)])
def test_set_rh_calls_all_hooks_no_errors(self):
branch = self.make_branch('source')
Branch.hooks.install_hook('set_rh', self.capture_set_rh_hook)
Branch.hooks.install_hook('set_rh', self.capture_set_rh_hook)
branch.set_revision_history([])
self.assertEqual(self.hook_calls,
[('set_rh', branch, [], True),
('set_rh', branch, [], True),
])
|