summaryrefslogtreecommitdiff
path: root/pecan
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-25 21:08:55 +0000
committerGerrit Code Review <review@openstack.org>2014-06-25 21:08:55 +0000
commit3ab38a675086426aca086dbd66bfde667ecb6ade (patch)
tree144d27740a0125a7397244528dde94c4f4f1d362 /pecan
parent6276bb093b3cfa40d949e6a29081c68bd4422956 (diff)
parent12d4a34ca4710b991805ae39a1f107594c0168ac (diff)
downloadpecan-3ab38a675086426aca086dbd66bfde667ecb6ade.tar.gz
Merge "Added inheritance for hooks from parent classes"
Diffstat (limited to 'pecan')
-rw-r--r--pecan/hooks.py13
-rw-r--r--pecan/tests/test_hooks.py72
2 files changed, 83 insertions, 2 deletions
diff --git a/pecan/hooks.py b/pecan/hooks.py
index c0f687a..57392d7 100644
--- a/pecan/hooks.py
+++ b/pecan/hooks.py
@@ -13,6 +13,10 @@ __all__ = [
def walk_controller(root_class, controller, hooks):
if not isinstance(controller, (int, dict)):
+ for hook in getattr(controller, '__hooks__', []):
+ # Append hooks from controller class definition
+ hooks.add(hook)
+
for name, value in getmembers(controller):
if name == 'controller':
continue
@@ -21,7 +25,7 @@ def walk_controller(root_class, controller, hooks):
if iscontroller(value):
for hook in hooks:
- value._pecan.setdefault('hooks', []).append(hook)
+ value._pecan.setdefault('hooks', set()).add(hook)
elif hasattr(value, '__class__'):
if name.startswith('__') and name.endswith('__'):
continue
@@ -36,7 +40,12 @@ class HookControllerMeta(type):
'''
def __init__(cls, name, bases, dict_):
- walk_controller(cls, cls, dict_.get('__hooks__', []))
+ hooks = set(dict_.get('__hooks__', []))
+ for base in bases:
+ # Add hooks from parent class and mixins
+ for hook in getattr(base, '__hooks__', []):
+ hooks.add(hook)
+ walk_controller(cls, cls, hooks)
HookController = HookControllerMeta(
diff --git a/pecan/tests/test_hooks.py b/pecan/tests/test_hooks.py
index 44963bf..8f1ca39 100644
--- a/pecan/tests/test_hooks.py
+++ b/pecan/tests/test_hooks.py
@@ -339,6 +339,78 @@ class TestHooks(PecanTestCase):
assert run_hook[4] == 'after1'
assert run_hook[5] == 'after2'
+ def test_mixin_hooks(self):
+ run_hook = []
+
+ class HelperHook(PecanHook):
+ priority = 2
+
+ def before(self, state):
+ run_hook.append('helper - before hook')
+
+ # we'll use the same hook instance to avoid duplicate calls
+ helper_hook = HelperHook()
+
+ class LastHook(PecanHook):
+ priority = 200
+
+ def before(self, state):
+ run_hook.append('last - before hook')
+
+ class SimpleHook(PecanHook):
+ priority = 1
+
+ def before(self, state):
+ run_hook.append('simple - before hook')
+
+ class HelperMixin(object):
+ __hooks__ = [helper_hook]
+
+ class LastMixin(object):
+ __hooks__ = [LastHook()]
+
+ class SubController(HookController, HelperMixin):
+ __hooks__ = [LastHook()]
+
+ @expose()
+ def index(self):
+ return "This is sub controller!"
+
+ class RootController(HookController, LastMixin):
+ __hooks__ = [SimpleHook(), helper_hook]
+
+ @expose()
+ def index(self):
+ run_hook.append('inside')
+ return 'Hello, World!'
+
+ sub = SubController()
+
+ papp = make_app(RootController())
+ app = TestApp(papp)
+ response = app.get('/')
+ assert response.status_int == 200
+ assert response.body == b_('Hello, World!')
+
+ assert len(run_hook) == 4
+ assert run_hook[0] == 'simple - before hook', run_hook[0]
+ assert run_hook[1] == 'helper - before hook', run_hook[1]
+ assert run_hook[2] == 'last - before hook', run_hook[2]
+ assert run_hook[3] == 'inside', run_hook[3]
+
+ run_hook = []
+ response = app.get('/sub/')
+ assert response.status_int == 200
+ assert response.body == b_('This is sub controller!')
+
+ assert len(run_hook) == 4, run_hook
+ assert run_hook[0] == 'simple - before hook', run_hook[0]
+ assert run_hook[1] == 'helper - before hook', run_hook[1]
+ assert run_hook[2] == 'last - before hook', run_hook[2]
+ # LastHook is invoked once again -
+ # for each different instance of the Hook in the two Controllers
+ assert run_hook[3] == 'last - before hook', run_hook[3]
+
class TestTransactionHook(PecanTestCase):
def test_transaction_hook(self):