Skip to content

Commit 7cc4cec

Browse files
authoredJun 24, 2022
Add async_stub method (#296)
1 parent 6030ef2 commit 7cc4cec

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed
 

‎CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Releases
22
========
33

44

5+
3.8.0 (unreleased)
6+
------------------
7+
* Add ``MockerFixture.async_mock`` method. Thanks `@PerchunPak`_ for the PR.
8+
9+
.. _@PerchunPak: https://github.com/PerchunPak
10+
511
3.7.0 (2022-01-28)
612
------------------
713

‎docs/usage.rst

+4
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,7 @@ It may receive an optional name that is shown in its ``repr``, useful for debugg
110110
111111
foo(stub)
112112
stub.assert_called_once_with('foo', 'bar')
113+
114+
.. seealso::
115+
116+
``async_stub`` method, which actually the same as ``stub`` but makes async stub.

‎src/pytest_mock/plugin.py

+19
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727

2828
_T = TypeVar("_T")
2929

30+
if sys.version_info[:2] > (3, 7):
31+
AsyncMockType = unittest.mock.AsyncMock
32+
else:
33+
import mock
34+
AsyncMockType = mock.AsyncMock
35+
3036

3137
class PytestMockWarning(UserWarning):
3238
"""Base class for all warnings emitted by pytest-mock."""
@@ -159,6 +165,19 @@ def stub(self, name: Optional[str] = None) -> unittest.mock.MagicMock:
159165
self.mock_module.MagicMock(spec=lambda *args, **kwargs: None, name=name),
160166
)
161167

168+
def async_stub(self, name: Optional[str] = None) -> AsyncMockType:
169+
"""
170+
Create a async stub method. It accepts any arguments. Ideal to register to
171+
callbacks in tests.
172+
173+
:param name: the constructed stub's name as used in repr
174+
:return: Stub object.
175+
"""
176+
return cast(
177+
unittest.mock.AsyncMock,
178+
self.mock_module.AsyncMock(spec=lambda *args, **kwargs: None, name=name),
179+
)
180+
162181
class _Patcher:
163182
"""
164183
Object to provide the same interface as mock.patch, mock.patch.object,

‎tests/test_pytest_mock.py

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
# Python 3.8 changed the output formatting (bpo-35500), which has been ported to mock 3.0
2727
NEW_FORMATTING = sys.version_info >= (3, 8)
2828

29+
if sys.version_info[:2] >= (3, 8):
30+
from unittest.mock import AsyncMock
31+
2932

3033
@pytest.fixture
3134
def needs_assert_rewrite(pytestconfig):
@@ -232,6 +235,10 @@ def test_failure_message_with_no_name(self, mocker: MagicMock) -> None:
232235
@pytest.mark.parametrize("name", (None, "", "f", "The Castle of aaarrrrggh"))
233236
def test_failure_message_with_name(self, mocker: MagicMock, name: str) -> None:
234237
self.__test_failure_message(mocker, name=name)
238+
239+
@pytest.mark.skipif(sys.version_info[:2] < (3, 8), reason="This Python version doesn't have `AsyncMock`.")
240+
def test_async_stub_type(self, mocker: MockerFixture) -> None:
241+
assert isinstance(mocker.async_stub(), AsyncMock)
235242

236243

237244
def test_instance_method_spy(mocker: MockerFixture) -> None:

0 commit comments

Comments
 (0)
Please sign in to comment.