~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_hooks.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-17 07:05:37 UTC
  • mfrom: (4152.1.2 branch.stacked.streams)
  • Revision ID: pqm@pqm.ubuntu.com-20090317070537-zaud24vjs2szna87
(robertc) Add client-side streaming from stacked branches (over
        bzr:// protocols) when the sort order is compatible with doing
        that. (Robert Collins, Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2010 Canonical Ltd
 
1
# Copyright (C) 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for the core Hooks logic."""
18
18
 
19
 
from bzrlib import (
20
 
    branch,
21
 
    errors,
22
 
    tests,
23
 
    )
 
19
from bzrlib import branch, errors
24
20
from bzrlib.hooks import (
25
21
    HookPoint,
26
22
    Hooks,
28
24
    known_hooks_key_to_object,
29
25
    known_hooks_key_to_parent_and_attribute,
30
26
    )
31
 
 
32
 
 
33
 
class TestHooks(tests.TestCase):
 
27
from bzrlib.errors import (
 
28
    UnknownHook,
 
29
    )
 
30
 
 
31
from bzrlib.symbol_versioning import one_five
 
32
from bzrlib.tests import TestCase
 
33
 
 
34
 
 
35
class TestHooks(TestCase):
34
36
 
35
37
    def test_create_hook_first(self):
36
38
        hooks = Hooks()
79
81
            "~~~~~~~~~~~~~~~\n"
80
82
            "\n"
81
83
            "Introduced in: 1.4\n"
 
84
            "Deprecated in: Not deprecated\n"
82
85
            "\n"
83
86
            "Invoked after the tip of a branch changes. Called with a\n"
84
87
            "ChangeBranchTipParams object.\n"
87
90
            "~~~~~~~~~~~~~~\n"
88
91
            "\n"
89
92
            "Introduced in: 1.6\n"
 
93
            "Deprecated in: Not deprecated\n"
90
94
            "\n"
91
95
            "Invoked before the tip of a branch changes. Called with a\n"
92
96
            "ChangeBranchTipParams object. Hooks should raise TipChangeRejected to\n"
93
97
            "signal that a tip change is not permitted.\n", hooks.docs())
94
98
 
 
99
    def test_install_hook_raises_unknown_hook(self):
 
100
        """install_hook should raise UnknownHook if a hook is unknown."""
 
101
        hooks = Hooks()
 
102
        self.assertRaises(UnknownHook, self.applyDeprecated, one_five,
 
103
                          hooks.install_hook, 'silly', None)
 
104
 
 
105
    def test_install_hook_appends_known_hook(self):
 
106
        """install_hook should append the callable for known hooks."""
 
107
        hooks = Hooks()
 
108
        hooks['set_rh'] = []
 
109
        self.applyDeprecated(one_five, hooks.install_hook, 'set_rh', None)
 
110
        self.assertEqual(hooks['set_rh'], [None])
 
111
 
95
112
    def test_install_named_hook_raises_unknown_hook(self):
96
113
        hooks = Hooks()
97
 
        self.assertRaises(errors.UnknownHook, hooks.install_named_hook, 'silly',
 
114
        self.assertRaises(UnknownHook, hooks.install_named_hook, 'silly',
98
115
                          None, "")
99
116
 
100
117
    def test_install_named_hook_appends_known_hook(self):
109
126
        hooks.install_named_hook('set_rh', None, "demo")
110
127
        self.assertEqual("demo", hooks.get_hook_name(None))
111
128
 
112
 
 
113
 
class TestHook(tests.TestCase):
 
129
    def test_name_hook_and_retrieve_name(self):
 
130
        """name_hook puts the name in the names mapping."""
 
131
        hooks = Hooks()
 
132
        hooks['set_rh'] = []
 
133
        self.applyDeprecated(one_five, hooks.install_hook, 'set_rh', None)
 
134
        hooks.name_hook(None, 'demo')
 
135
        self.assertEqual("demo", hooks.get_hook_name(None))
 
136
 
 
137
    def test_get_unnamed_hook_name_is_unnamed(self):
 
138
        hooks = Hooks()
 
139
        hooks['set_rh'] = []
 
140
        self.applyDeprecated(one_five, hooks.install_hook, 'set_rh', None)
 
141
        self.assertEqual("No hook name", hooks.get_hook_name(None))
 
142
 
 
143
 
 
144
class TestHook(TestCase):
114
145
 
115
146
    def test___init__(self):
116
147
        doc = ("Invoked after changing the tip of a branch object. Called with"
130
161
            "~~~~~~~~~~~~~~~\n"
131
162
            "\n"
132
163
            "Introduced in: 0.15\n"
 
164
            "Deprecated in: Not deprecated\n"
133
165
            "\n"
134
166
            "Invoked after changing the tip of a branch object. Called with a\n"
135
167
            "bzrlib.branch.PostChangeBranchTipParams object\n", hook.docs())
153
185
            callback_repr, repr(hook))
154
186
 
155
187
 
156
 
class TestHookRegistry(tests.TestCase):
 
188
class TestHookRegistry(TestCase):
157
189
 
158
190
    def test_items_are_reasonable_keys(self):
159
191
        # All the items in the known_hooks registry need to map from
160
192
        # (module_name, member_name) tuples to the callable used to get an
161
 
        # empty Hooks for that attribute. This is used to support the test
 
193
        # empty Hooks of for that attribute. This is used to support the test
162
194
        # suite which needs to generate empty hooks (and HookPoints) to ensure
163
195
        # isolation and prevent tests failing spuriously.
164
196
        for key, factory in known_hooks.items():
169
201
            new_hooks = factory()
170
202
            self.assertIsInstance(obj, Hooks)
171
203
            self.assertEqual(type(obj), type(new_hooks))
172
 
            self.assertEqual("No hook name", new_hooks.get_hook_name(None))
173
204
 
174
205
    def test_known_hooks_key_to_object(self):
175
206
        self.assertIs(branch.Branch.hooks,