0

我应该怎么做来测试login协程?

class Client:
    def __init__(self, config=None):
        self.config = config or ('0.0.0.0', 8080)
        self.reader = None
        self.writer = None

        self.connection = asyncio.create_task(self._connect())

    async def _connect(self):
        self.reader, self.writer = await asyncio.open_connection(*self.config)

    async def login(self, username, password):
        await self.connection  # 2

        md5 = hashlib.md5()
        md5.update(username.encode(ENCODING) + password.encode(ENCODING))
        hash_ = md5.hexdigest()

        # `construct` returns message, in bytes, based on parameters.
        login_message = construct(1, username, password, 182, hash_, 157)
        self.writer.write(login_message)  # 1
        await self.writer.drain()

更具体地说,我想测试登录消息是否始终以正确的格式发送(1),也许还有在发送消息之前应该先建立连接的事实(2)。此外,如果这很重要,我无法运行服务器的本地副本。

这可能吗?我什至应该测试这个吗?

我正在使用pytest,我尝试使用一个名为的库pytest-asyncio,但我只是不明白如何测试这样的东西。

4

0 回答 0