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
|
from __future__ import annotations
import unittest.mock
import pytest
START = object()
END = object()
RETVAL = object()
@pytest.fixture(scope="module")
def mock():
return unittest.mock.Mock(return_value=RETVAL)
@pytest.fixture
async def async_gen_fixture(mock):
try:
yield mock(START)
except Exception as e:
mock(e)
else:
mock(END)
@pytest.mark.asyncio
async def test_async_gen_fixture(async_gen_fixture, mock):
assert mock.called
assert mock.call_args_list[-1] == unittest.mock.call(START)
assert async_gen_fixture is RETVAL
@pytest.mark.asyncio
async def test_async_gen_fixture_finalized(mock):
try:
assert mock.called
assert mock.call_args_list[-1] == unittest.mock.call(END)
finally:
mock.reset_mock()
class TestAsyncGenFixtureMethod:
is_same_instance = False
@pytest.fixture(autouse=True)
async def async_gen_fixture_method(self):
self.is_same_instance = True
yield None
@pytest.mark.asyncio
async def test_async_gen_fixture_method(self):
assert self.is_same_instance
|