/usr/lib/python3/dist-packages/mockito/mocking.py is in python3-mockito 0.5.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Copyright (c) 2008-2013 Szczepan Faber, Serhiy Oplakanets, Herr Kaste
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import inspect
from . import invocation
from .mock_registry import mock_registry
import warnings
__all__ = ['mock', 'Mock']
class _Dummy(object): pass
class TestDouble(object): pass
class mock(TestDouble):
def __init__(self, mocked_obj=None, strict=True):
self.invocations = []
self.stubbed_invocations = []
self.original_methods = []
self.stubbing = None
self.verification = None
if mocked_obj is None:
mocked_obj = _Dummy()
strict = False
self.mocked_obj = mocked_obj
self.strict = strict
self.stubbing_real_object = False
mock_registry.register(self)
def __getattr__(self, method_name):
if self.stubbing is not None:
return invocation.StubbedInvocation(self, method_name)
if self.verification is not None:
return invocation.VerifiableInvocation(self, method_name)
return invocation.RememberedInvocation(self, method_name)
def remember(self, invocation):
self.invocations.insert(0, invocation)
def finish_stubbing(self, stubbed_invocation):
self.stubbed_invocations.insert(0, stubbed_invocation)
self.stubbing = None
def expect_stubbing(self):
self.stubbing = True
def pull_verification(self):
v = self.verification
self.verification = None
return v
def has_method(self, method_name):
return hasattr(self.mocked_obj, method_name)
def get_method(self, method_name):
return self.mocked_obj.__dict__.get(method_name)
def set_method(self, method_name, new_method):
setattr(self.mocked_obj, method_name, new_method)
def replace_method(self, method_name, original_method):
def new_mocked_method(*args, **kwargs):
# we throw away the first argument, if it's either self or cls
if inspect.isclass(self.mocked_obj) and not isinstance(original_method, staticmethod):
args = args[1:]
call = self.__getattr__(method_name) # that is: invocation.RememberedInvocation(self, method_name)
return call(*args, **kwargs)
if isinstance(original_method, staticmethod):
new_mocked_method = staticmethod(new_mocked_method)
elif isinstance(original_method, classmethod):
new_mocked_method = classmethod(new_mocked_method)
self.set_method(method_name, new_mocked_method)
def stub(self, method_name):
original_method = self.get_method(method_name)
original = (method_name, original_method)
self.original_methods.append(original)
# If we're trying to stub real object(not a generated mock), then we should patch object to use our mock method.
# TODO: Polymorphism was invented long time ago. Refactor this.
if self.stubbing_real_object:
self.replace_method(method_name, original_method)
def unstub(self):
while self.original_methods:
method_name, original_method = self.original_methods.pop()
self.set_method(method_name, original_method)
def Mock(*args, **kwargs):
'''A ``mock``() alias.
Alias for compatibility. To be removed in version 1.0.
'''
warnings.warn("\n`Mock()` is deprecated, please use `mock()` (lower 'm') instead.", DeprecationWarning)
return mock(*args, **kwargs)
|