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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Copyright 2015 Rackspace Hosting.
#
# Author: Eric Larson <eric.larson@rackspace.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from unittest.mock import Mock
from unittest.mock import patch
from oslo_config import cfg
from stevedore.extension import Extension
from stevedore.hook import HookManager
from designate.hookpoints import BaseHook
from designate.hookpoints import hook_point
from designate.tests import TestCase
class AddHook(BaseHook):
OPTS = [
cfg.Opt('bar'),
]
@property
def bar(self):
return cfg.CONF[self.group].bar
def hook(self, *args, **kw):
return self.hook_target(*args, **kw) + 1
def get_hook_manager(*hooks):
hooks = hooks or [AddHook]
group = 'hook_point:foo'
ext = [
Extension('designate_hook', 'foo', hook, hook(group))
for hook in hooks
]
return HookManager.make_test_instance(ext, 'designate_hook')
def inc(num):
return num + 1
class TestHookpoints(TestCase):
def setUp(self):
TestCase.setUp(self)
group = 'hook_point:foo'
self.CONF.register_group(cfg.OptGroup(group))
self.CONF.register_opts(BaseHook.OPTS, group=group)
def test_no_hookpoint_is_noop(self):
def doit(self, name):
return 'done: %s' % name
self.assertEqual(doit, hook_point('foo')(doit))
def test_hook_is_decorator(self):
hp = hook_point('foo')
hp.hook_manager = Mock(return_value=get_hook_manager())
assert hp(inc)(1) == 3
def test_apply_N_hooks(self):
hp = hook_point('foo')
hp.hook_manager = Mock(return_value=get_hook_manager(AddHook, AddHook))
assert hp(inc)(1) == 4
def test_hook_init(self):
hp = hook_point('foo')
# Make sure we set up our object when the hook point is
# applied to a function / method.
hp.find_name = Mock(return_value='foo.bar.baz')
hp.hook_manager = Mock(return_value=get_hook_manager())
hp.find_config = Mock(return_value={'enabled': True})
hp.update_config_opts = Mock()
hp(inc)
self.assertEqual(hp.name, 'foo.bar.baz')
self.assertEqual(hp.group, 'hook_point:foo.bar.baz')
hp.update_config_opts.assert_called_with(hp.group, hp.hooks)
class TestHookpointsConfigOpts(TestCase):
"""Make sure hooks add the necessary config opts.
"""
def test_hook_adds_config_opts(self):
hp = hook_point('foo')
hp.hook_manager = Mock(return_value=get_hook_manager())
hp(inc)
assert hp.group in self.CONF.keys()
class TestHookpointsEnabling(TestCase):
def setUp(self):
TestCase.setUp(self)
# NOTE: The options need to be added here via the test classes
# CONF in order to fall through
group = 'hook_point:foo'
self.CONF.register_group(cfg.OptGroup(group))
self.CONF.register_opts(BaseHook.OPTS, group=group)
@patch.object(hook_point, 'hook_manager',
Mock(return_value=get_hook_manager()))
def test_hook_disabled(self):
hp = hook_point('foo')
result_func = hp(inc)
# We should now have a config option we can set to disabled
self.config(disabled=True, group='hook_point:foo')
# The result is 2 so no extra add hook was applied
self.assertEqual(result_func(1), 2)
@patch.object(hook_point, 'hook_manager',
Mock(return_value=get_hook_manager()))
def test_hook_enabled_when_config_key_exists(self):
hp = hook_point('foo')
hp(inc)
# Add our config
self.config(bar='from config', group='hook_point:foo')
# reapply our hook
result_func = hp(inc)
# The result is 3 so the extra add hook was applied
self.assertEqual(result_func(1), 3)
|