summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorinfohash <46137868+infohash@users.noreply.github.com>2024-03-08 19:14:32 (GMT)
committerGitHub <noreply@github.com>2024-03-08 19:14:32 (GMT)
commit735fc2cbbcf875c359021b5b2af7f4c29f4cf66d (patch)
tree1dabd0f3ea328367d4f0864f9b7c2e6ee86ecd2c /Lib
parent7db871e4fa48eef20ea22414b226998f83facfd6 (diff)
downloadcpython-735fc2cbbcf875c359021b5b2af7f4c29f4cf66d.zip
cpython-735fc2cbbcf875c359021b5b2af7f4c29f4cf66d.tar.gz
cpython-735fc2cbbcf875c359021b5b2af7f4c29f4cf66d.tar.bz2
gh-75988: Fix issues with autospec ignoring wrapped object (#115223)
* set default return value of functional types as _mock_return_value * added test of wrapping child attributes * added backward compatibility with explicit return * added docs on the order of precedence * added test to check default return_value
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_unittest/testmock/testmock.py67
-rw-r--r--Lib/unittest/mock.py13
2 files changed, 78 insertions, 2 deletions
diff --git a/Lib/test/test_unittest/testmock/testmock.py b/Lib/test/test_unittest/testmock/testmock.py
index 1725406..b81b304 100644
--- a/Lib/test/test_unittest/testmock/testmock.py
+++ b/Lib/test/test_unittest/testmock/testmock.py
@@ -245,6 +245,65 @@ class MockTest(unittest.TestCase):
with mock.patch('builtins.open', mock.mock_open()):
mock.mock_open() # should still be valid with open() mocked
+ def test_create_autospec_wraps_class(self):
+ """Autospec a class with wraps & test if the call is passed to the
+ wrapped object."""
+ result = "real result"
+
+ class Result:
+ def get_result(self):
+ return result
+ class_mock = create_autospec(spec=Result, wraps=Result)
+ # Have to reassign the return_value to DEFAULT to return the real
+ # result (actual instance of "Result") when the mock is called.
+ class_mock.return_value = mock.DEFAULT
+ self.assertEqual(class_mock().get_result(), result)
+ # Autospec should also wrap child attributes of parent.
+ self.assertEqual(class_mock.get_result._mock_wraps, Result.get_result)
+
+ def test_create_autospec_instance_wraps_class(self):
+ """Autospec a class instance with wraps & test if the call is passed
+ to the wrapped object."""
+ result = "real result"
+
+ class Result:
+ @staticmethod
+ def get_result():
+ """This is a static method because when the mocked instance of
+ 'Result' will call this method, it won't be able to consume
+ 'self' argument."""
+ return result
+ instance_mock = create_autospec(spec=Result, instance=True, wraps=Result)
+ # Have to reassign the return_value to DEFAULT to return the real
+ # result from "Result.get_result" when the mocked instance of "Result"
+ # calls "get_result".
+ instance_mock.get_result.return_value = mock.DEFAULT
+ self.assertEqual(instance_mock.get_result(), result)
+ # Autospec should also wrap child attributes of the instance.
+ self.assertEqual(instance_mock.get_result._mock_wraps, Result.get_result)
+
+ def test_create_autospec_wraps_function_type(self):
+ """Autospec a function or a method with wraps & test if the call is
+ passed to the wrapped object."""
+ result = "real result"
+
+ class Result:
+ def get_result(self):
+ return result
+ func_mock = create_autospec(spec=Result.get_result, wraps=Result.get_result)
+ self.assertEqual(func_mock(Result()), result)
+
+ def test_explicit_return_value_even_if_mock_wraps_object(self):
+ """If the mock has an explicit return_value set then calls are not
+ passed to the wrapped object and the return_value is returned instead.
+ """
+ def my_func():
+ return None
+ func_mock = create_autospec(spec=my_func, wraps=my_func)
+ return_value = "explicit return value"
+ func_mock.return_value = return_value
+ self.assertEqual(func_mock(), return_value)
+
def test_explicit_parent(self):
parent = Mock()
mock1 = Mock(parent=parent, return_value=None)
@@ -622,6 +681,14 @@ class MockTest(unittest.TestCase):
real = Mock()
mock = Mock(wraps=real)
+ # If "Mock" wraps an object, just accessing its
+ # "return_value" ("NonCallableMock.__get_return_value") should not
+ # trigger its descriptor ("NonCallableMock.__set_return_value") so
+ # the default "return_value" should always be "sentinel.DEFAULT".
+ self.assertEqual(mock.return_value, DEFAULT)
+ # It will not be "sentinel.DEFAULT" if the mock is not wrapping any
+ # object.
+ self.assertNotEqual(real.return_value, DEFAULT)
self.assertEqual(mock(), real())
real.reset_mock()
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index 93f4d97..1799e9b 100644
--- a/Lib/unittest/mock.py
+++ b/Lib/unittest/mock.py
@@ -573,7 +573,7 @@ class NonCallableMock(Base):
if self._mock_delegate is not None:
ret = self._mock_delegate.return_value
- if ret is DEFAULT:
+ if ret is DEFAULT and self._mock_wraps is None:
ret = self._get_child_mock(
_new_parent=self, _new_name='()'
)
@@ -1234,6 +1234,9 @@ class CallableMixin(Base):
if self._mock_return_value is not DEFAULT:
return self.return_value
+ if self._mock_delegate and self._mock_delegate.return_value is not DEFAULT:
+ return self.return_value
+
if self._mock_wraps is not None:
return self._mock_wraps(*args, **kwargs)
@@ -2785,9 +2788,12 @@ def create_autospec(spec, spec_set=False, instance=False, _parent=None,
if _parent is not None and not instance:
_parent._mock_children[_name] = mock
+ wrapped = kwargs.get('wraps')
+
if is_type and not instance and 'return_value' not in kwargs:
mock.return_value = create_autospec(spec, spec_set, instance=True,
- _name='()', _parent=mock)
+ _name='()', _parent=mock,
+ wraps=wrapped)
for entry in dir(spec):
if _is_magic(entry):
@@ -2809,6 +2815,9 @@ def create_autospec(spec, spec_set=False, instance=False, _parent=None,
continue
kwargs = {'spec': original}
+ # Wrap child attributes also.
+ if wrapped and hasattr(wrapped, entry):
+ kwargs.update(wraps=original)
if spec_set:
kwargs = {'spec_set': original}