使用 Python 3.4 asyncio
库为代码编写单元测试的最佳方式是什么?假设我想测试一个 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
指令,之后在执行任何断言之前返回。这使得测试总是成功的。
是否有一个预构建的测试运行程序能够处理这样的异步代码?