使用aiohttp和asynci时编写单元测试

2024-05-16 00:27:47 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在更新我的一个Python包,因此它是异步的(使用aiohttp而不是{})。我也在更新我的单元测试,以便它们能与新的异步版本一起工作,但是我在这方面遇到了一些麻烦。在

以下是我的软件包中的一个片段:

async def fetch(session, url):
    while True:
        try:
            async with session.get(url) as response:
                assert response.status == 200
                return await response.json()
        except Exception as error:
            pass


class FPL():
    def __init__(self, session):
        self.session = session

    async def get_user(self, user_id, return_json=False):
        url = API_URLS["user"].format(user_id)
        user = await fetch(self.session, url)

        if return_json:
            return user
        return User(user, session=self.session)

如果这样使用的话,它们似乎都起作用了:

^{pr2}$

不幸的是,我的单元测试有些问题。我想我可以做一些

def _run(coroutine):
    return asyncio.get_event_loop().run_until_complete(coroutine)


class FPLTest(unittest.TestCase):
    def setUp(self):
        session = aiohttp.ClientSession()
        self.fpl = FPL(session)

    def test_user(self):
        user = _run(self.fpl.get_user("3523615"))
        self.assertIsInstance(user, User)

        user = _run(self.fpl.get_user("3523615", True))
        self.assertIsInstance(user, dict)

if __name__ == '__main__':
    unittest.main()

它给出的错误包括

DeprecationWarning: The object should be created from async function loop=loop)

以及

ResourceWarning: Unclosed client session <aiohttp.client.ClientSession object at 0x7fbe647fd208>

我尝试过向关闭会话的_close()类添加一个FPL函数,然后从测试中调用它,但这也不起作用,仍然表示存在未关闭的客户端会话。在

有没有可能这样做,我只是做错了什么,或者我最好用asynctest或{}来代替?在

{{1}还检查了{1}的应用程序,以及如何编辑^ 1的标准测试库。不幸的是,我无法使其工作,因为AioHTTPTestCase中提供的loop从3.5起就被弃用,并引发一个错误:

class FPLTest(AioHTTPTestCase):
    def setUp(self):
        session = aiohttp.ClientSession()
        self.fpl = FPL(session)

    @unittest_run_loop
    async def test_user(self):
        user = await self.fpl.get_user("3523615")
        self.assertIsInstance(user, User)

        user = await self.fpl.get_user("3523615", True)
        self.assertIsInstance(user, dict)

给予

tests/test_fpl.py:20: DeprecationWarning: The object should be created from async function
  session = aiohttp.ClientSession()
  ...
======================================================================
ERROR: test_user (__main__.FPLTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/amos/Documents/fpl/venv/lib/python3.7/site-packages/aiohttp/test_utils.py", line 477, in new_func
    return self.loop.run_until_complete(
AttributeError: 'FPLTest' object has no attribute 'loop'

======================================================================
ERROR: test_user (__main__.FPLTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/amos/Documents/fpl/venv/lib/python3.7/site-packages/aiohttp/test_utils.py", line 451, in tearDown
    self.loop.run_until_complete(self.tearDownAsync())
AttributeError: 'FPLTest' object has no attribute 'loop'

Tags: runtestselfloopurlgetasyncreturn
1条回答
网友
1楼 · 发布于 2024-05-16 00:27:47

将pytest与aiohttp-pytest一起使用:

async def test_test_user(loop):
    async with aiohttp.ClientSession() as session:
         fpl = FPL(session)
         user = await fpl.get_user(3808385)
    assert isinstance(user, User)

现代python开发人员的格言:生命太短暂,不能不使用pytest。在

您可能还希望设置一个模拟服务器,以便在测试期间接收您的http请求,我没有一个简单的示例,但是可以看到一个完整的工作示例here。在

相关问题 更多 >