asyncio
使用 Python 3.4库为代码编写单元测试的最佳方法是什么?假设我想测试一个 TCP 客户端 ( SocketConnection
):
import asyncio
import unittest
class TestSocketConnection(unittest.TestCase):
def setUp(self):
self.mock_server = MockServer("localhost", 1337)
self.socket_connection = SocketConnection("localhost", 1337)
@asyncio.coroutine
def test_sends_handshake_after_connect(self):
yield from self.socket_connection.connect()
self.assertTrue(self.mock_server.received_handshake())
当使用默认测试运行器运行此测试用例时,测试将始终成功,因为该方法只执行到第一yield from
条指令,之后它在执行任何断言之前返回。这会导致测试始终成功。
是否有能够处理这样的异步代码的预构建测试运行器?