使用Python 3.4asyncio
库编写代码的单元测试的最佳方法是什么?假设我要测试一个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
条指令为止,然后在执行任何断言之前返回该指令。这导致测试始终成功。
是否有一个预构建的测试运行器能够处理这样的异步代码?
loop.run_until_complete()
代替yield from
。另请参阅asyncio.test_utils
。