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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
# Copyright 2015, 2016 IBM Corp.
#
# All Rights Reserved.
#
# 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.
#
import abc
import fixtures
import importlib
import mock
import six
from pypowervm import traits as trt
# An anchor for traits we construct artificially so the session isn't
# garbage collected.
_mk_traits_sessions = []
def _mk_traits(local, hmc):
"""Mock a single APITraits configuration.
:param local: Should the APITraits pretend to be local? True or False.
:param hmc: Should the APITraits pretend to be running against HMC (True)
or PVM (False)?
:return: APITraits instance with the specified behavior.
"""
_sess = mock.Mock()
_sess.use_file_auth = local
_sess.mc_type = 'HMC' if hmc else 'PVM'
# Traits use a weak ref to the session to avoid a circular reference
# so anchor the mock session globally otherwise it'll be gone
# right after we return it.
global _mk_traits_sessions
_mk_traits_sessions.append(_sess)
return trt.APITraits(_sess)
LocalPVMTraits = _mk_traits(local=True, hmc=False)
RemotePVMTraits = _mk_traits(local=False, hmc=False)
RemoteHMCTraits = _mk_traits(local=False, hmc=True)
class SessionFx(fixtures.Fixture):
"""Patch pypowervm.adapter.Session."""
def __init__(self, traits=LocalPVMTraits):
"""Create Session patcher with traits.
:param traits: APITraits instance to be assigned to the .traits
attribute of the mock Session. If not specified,
sess.traits will be LocalPVMTraits. LocalPVMTraits,
RemotePVMTraits, and RemoteHMCTraits are provided below
for convenience.
:return:
"""
self.traits = traits
self._patcher = mock.patch('pypowervm.adapter.Session')
def setUp(self):
super(SessionFx, self).setUp()
self.sess = self._patcher.start()
self.addCleanup(self._patcher.stop)
self.sess.traits = self.traits
self.sess.timeout = 1200
class AdapterFx(fixtures.Fixture):
"""Patch pypowervm.adapter.Adapter."""
def __init__(self, session=None, traits=None):
"""Create Adapter and/or Session patchers with traits.
:param session: A pypowervm.adapter.Session instance or mock with which
to back this mocked Adapter. If not specified, a new
SessionFx fixture is created and used.
:param traits: APITraits instance to be assigned to the .traits
attribute of the Session and/or Adapter mock. If
not specified, LocalPVMTraits will be used. If both
session and traits are specified, the session's traits
will be overwritten with the traits parameter.
LocalPVMTraits, RemotePVMTraits, and RemoteHMCTraits are
provided below for convenience.
"""
super(AdapterFx, self).__init__()
self.session = session
if traits is None and (session is None or session.traits is None):
self.traits = LocalPVMTraits
elif traits:
self.traits = traits
else:
self.traits = session.traits
self._patcher = mock.patch('pypowervm.adapter.Adapter')
def setUp(self):
super(AdapterFx, self).setUp()
if not self.session:
self.session = self.useFixture(SessionFx(self.traits)).sess
self.adpt = self._patcher.start()
self.addCleanup(self._patcher.stop)
self.adpt.session = self.session
self.set_traits(self.traits)
def set_traits(self, traits):
# Mocked Adapter needs to see both routes to traits.
self.adpt.session.traits = traits
self.adpt.traits = traits
class SimplePatcher(object):
"""Provide a basic mocking patcher on a test fixture.
The main purpose of this class is to be used with SimplePatchingFx.
That said, the following are equivalent:
@mock.patch('path.to.method')
def test_foo(self, mock_meth):
mock_meth.return_value = 'abc'
# ...
def test_foo(self):
mock_meth = SimplePatcher(self, 'whatever', 'path.to.method',
return_value='abc').start()
# ...
"""
def __init__(self, fx, name, path, patch_object=False, side_effect=None,
return_value=None):
"""Create a patcher on a given fixture.
:param fx: The fixtures.Fixture (subclass) on which to register the
patcher.
:param name: String name for the patcher.
:param path: String python path of the object being mocked.
:param patch_object: If True, the path parameter is parsed to create a
mock.patch.object with autospec=True instead of a
regular mock.patch. For example,
patch='foo.bar.Baz.meth'
would result in
mock.patch.object(foo.bar.Baz, 'meth', autospec=True)
Note that this means the mock call will include
the instance through which it was invoked.
:param side_effect: Side effect for the mock created by this patcher.
If side_effect is supplied, return_value is
ignored.
:param return_value: Return value for the mock created by this patcher.
If side_effect is supplied, return_value is
ignored.
"""
self.fx = fx
self.name = name
if patch_object:
modname, klassname, methname = path.rsplit('.', 2)
module = importlib.import_module(modname)
klass = getattr(module, klassname)
self.patcher = mock.patch.object(klass, methname, autospec=True)
else:
self.patcher = mock.patch(path)
self.return_value = return_value
self.side_effect = side_effect
self.mock = None
def start(self):
"""Start the patcher, creating the and setting up the mock."""
self.mock = self.patcher.start()
if self.side_effect:
self.mock.side_effect = self.side_effect
else:
self.mock.return_value = self.return_value
self.fx.addCleanup(self.patcher.stop)
return self.mock
class LoggingPatcher(SimplePatcher):
"""SimplePatcher whose mock logs its name and returns a value."""
FIRST_ARG = '__MOCK_RETURNS_FIRST_ARGUMENT__'
def __init__(self, fx, name, path, patch_object=False, return_value=None):
"""Create the logging patcher.
:param fx: The fixtures.Fixture (subclass) on which to register the
patcher. Must be a fixture providing a .log(msg) method.
:param name: String name for the patcher.
:param path: String python path of the object being mocked.
:param patch_object: If True, the path parameter is parsed to create a
mock.patch.object with autospec=True instead of a
regular mock.patch. For example,
patch='foo.bar.Baz.meth'
would result in
mock.patch.object(foo.bar.Baz, 'meth', autospec=True)
Note that this means the mock call will include
the instance through which it was invoked.
:param return_value: The return value for the mocked method.
"""
def _log(*a, **k):
self.fx.log(self.name)
return a[0] if self.ret is self.FIRST_ARG and len(a) != 0 \
else self.ret
# This ignores/overrides the superclass's return_value semantic.
self.ret = return_value
super(LoggingPatcher, self).__init__(
fx, name, path, patch_object=patch_object, side_effect=_log)
@six.add_metaclass(abc.ABCMeta)
class Logger(object):
"""Base class for mixins wanting simple 'log to a list' semantics."""
def __init__(self):
"""Create a new Logger."""
super(Logger, self).__init__()
self._tx_log = []
def get_log(self):
"""Retrieve the event log.
:return: The log, a list of strings in the order they were added.
"""
return self._tx_log
def log(self, val):
"""Add a message to the log.
:param val: String value to append to the log.
"""
self._tx_log.append(val)
def reset_log(self):
"""Clear the log."""
self._tx_log = []
@six.add_metaclass(abc.ABCMeta)
class SimplePatchingFx(fixtures.Fixture):
"""Fixture base class supporting SimplePatcher.
Subclasses should invoke add_patchers from __init__ after super().__init__,
but before useFixture.
"""
def __init__(self):
"""Create the simple-patching fixture."""
super(SimplePatchingFx, self).__init__()
self.patchers = {}
def add_patchers(self, *patchers):
"""Add some number of SimplePatcher instances to the fixture.
:param patchers: Zero or more SimplePatcher instances to add.
"""
for patcher in patchers:
self.patchers[patcher.name] = patcher
def setUp(self):
"""Start the fixture and its member SimplePatchers.
This is generally invoked via useFixture and should not be called
directly.
"""
super(SimplePatchingFx, self).setUp()
for patcher in self.patchers.values():
patcher.start()
class SleepPatcher(SimplePatcher):
def __init__(self, fx, side_effect=None):
super(SleepPatcher, self).__init__(fx, 'sleep', 'time.sleep',
side_effect=side_effect)
class SleepFx(SimplePatchingFx):
"""Fixture for time.sleep."""
def __init__(self, side_effect=None):
"""Create the fixture for time.sleep."""
super(SleepFx, self).__init__()
self.add_patchers(SleepPatcher(self, side_effect=side_effect))
# Thread locking primitives are located slightly differently in py2 vs py3
SEM_ENTER = 'threading.%sSemaphore.__enter__' % ('_' if six.PY2 else '')
SEM_EXIT = 'threading.%sSemaphore.__exit__' % ('_' if six.PY2 else '')
class WrapperTaskFx(SimplePatchingFx, Logger):
"""Customizable mocking and pseudo-logging for WrapperTask primitives.
Provides LoggingPatchers for REST and locking primitives. By default,
these patchers simply log their name and return a sensible value (see
below).
However, patchers can be added, changed, or removed by name from the
fixture instance via its 'patchers' dict. In order to have effect on your
test case, such modifications must be done between fixture initialization
and useFixture. For example:
# Init the fixture, but do not start it:
wtfx = WrapperTaskFx(a_wrapper)
# An existing patcher can be modified:
upd = wtfx.patchers['update'].side_effect = SomeException()
# Or deleted:
del wtfx.patchers['refresh']
# New patchers can be added. They must be instances of SimplePatcher (or a
# subclass). Add directly to 'patchers':
wtfx.patchers['foo'] = LoggingPatcher(wtfx, 'frob', 'pypowervm.utils.frob')
# ...or use add_patchers to add more than one:
wtfx.add_patchers(p1, p2, p3)
# Finally, don't forget to start the fixture
self.useFixture(wtfx)
# Mocks can be accessed via their patchers and queried during testing as
# usual:
wtfx.patchers['foo'].mock.assert_called_with('bar', 'baz')
self.assertEqual(3, wtfx.patchers['update'].mock.call_count)
See live examples in pypowervm.tests.utils.test_transaction.TestWrapperTask
Default mocks:
'get': Mocks EntyrWrapperGetter.get.
Logs 'get'.
Returns the wrapper with which the fixture was initialized.
'refresh': Mocks EntryWrapper.refresh.
Logs 'refresh'.
Returns the wrapper with which the fixture was initialized.
'update': Mocks EntryWrapper.update.
Logs 'update'.
Returns the wrapper with which the fixture was initialized.
'lock', 'unlock': Mocks semaphore locking (oslo_concurrency.lockutils.lock
and @synchronized, ultimately threading.Semaphore)
performed by the @entry_transaction decorator.
Logs 'lock'/'unlock', respectively.
Returns None.
"""
def __init__(self, wrapper):
"""Create the fixture around a specific EntryWrapper.
:param wrapper: EntryWrapper instance to be returned by mocked
EntryWrapperGetter.get and EntryWrapper.refresh methods
"""
super(WrapperTaskFx, self).__init__()
self._wrapper = wrapper
self.add_patchers(
LoggingPatcher(
self, 'get',
'pypowervm.wrappers.entry_wrapper.EntryWrapperGetter.get',
return_value=self._wrapper),
LoggingPatcher(
self, 'refresh',
'pypowervm.wrappers.entry_wrapper.EntryWrapper.refresh',
return_value=self._wrapper),
LoggingPatcher(
self, 'update',
'pypowervm.wrappers.entry_wrapper.EntryWrapper.update',
return_value=self._wrapper),
LoggingPatcher(self, 'lock', SEM_ENTER),
LoggingPatcher(self, 'unlock', SEM_EXIT),
SleepPatcher(self)
)
class FeedTaskFx(SimplePatchingFx, Logger):
"""Customizable mocking and pseudo-logging for FeedTask primitives.
Provides LoggingPatchers for REST and locking primitives. By default,
these patchers simply log their name and return a sensible value (see
below).
However, patchers can be added, changed, or removed by name from the
fixture instance via its 'patchers' dict. In order to have effect on your
test case, such modifications must be done between fixture initialization
and useFixture. For example:
# Init the fixture, but do not start it:
ftfx = FeedTaskFx(a_feed)
# An existing patcher can be modified:
upd = ftfx.patchers['update'].side_effect = SomeException()
# Or deleted:
del ftfx.patchers['refresh']
# New patchers can be added. They must be instances of SimplePatcher (or a
# subclass). Add directly to 'patchers':
ftfx.patchers['foo'] = LoggingPatcher(ftfx, 'frob', 'pypowervm.utils.frob')
# ...or use add_patchers to add more than one:
ftfx.add_patchers(p1, p2, p3)
# Finally, don't forget to start the fixture
self.useFixture(ftfx)
# Mocks can be accessed via their patchers and queried during testing as
# usual:
ftfx.patchers['foo'].mock.assert_called_with('bar', 'baz')
self.assertEqual(3, ftfx.patchers['update'].mock.call_count)
See live examples in pypowervm.tests.utils.test_transaction.TestWrapperTask
Default mocks:
'get': Mocks FeedGetter.get.
Logs 'get'.
Returns the feed with which the fixture was initialized.
'refresh': Mocks EntryWrapper.refresh.
Logs 'refresh'.
Returns the wrapper on which the refresh method was called.
'update': Mocks EntryWrapper.update.
Logs 'update'.
Returns the wrapper on which the update method was called.
'lock', 'unlock': Mocks semaphore locking (oslo_concurrency.lockutils.lock
and @synchronized, ultimately threading.Semaphore)
performed by the @entry_transaction decorator.
Logs 'lock'/'unlock', respectively.
Returns None.
"""
def __init__(self, feed):
"""Create the fixture around a given feed.
:param feed: The feed (list of EntryWrappers) to be returned from the
mocked FeedGetter.get method.
"""
super(FeedTaskFx, self).__init__()
self._feed = feed
self.add_patchers(
LoggingPatcher(
self, 'get',
'pypowervm.wrappers.entry_wrapper.FeedGetter.get',
return_value=self._feed),
LoggingPatcher(
self, 'refresh',
'pypowervm.wrappers.entry_wrapper.EntryWrapper.refresh',
patch_object=True, return_value=LoggingPatcher.FIRST_ARG),
LoggingPatcher(
self, 'update',
'pypowervm.wrappers.entry_wrapper.EntryWrapper.update',
patch_object=True, return_value=LoggingPatcher.FIRST_ARG),
LoggingPatcher(self, 'lock', SEM_ENTER),
LoggingPatcher(self, 'unlock', SEM_EXIT),
SleepPatcher(self)
)
class LoggingFx(SimplePatchingFx):
"""Fixture for LOG.*, not to be confused with Logger/LoggingPatcher.
Provides patches and mocks for LOG.x for x in
('info', 'warning', 'debug', 'error', 'exception')
"""
def __init__(self):
"""Create the fixture for the various logging methods."""
super(LoggingFx, self).__init__()
self.add_patchers(
*(SimplePatcher(self, x, 'oslo_log.log.BaseLoggerAdapter.%s' % x)
for x in ('info', 'warning', 'debug', 'error', 'exception')))
|