【发布时间】:2018-05-16 14:44:13
【问题描述】:
我有以下 pytest 测试类:
class TestConnection(AsyncTestCase):
'''Integration test'''
@gen_test
def test_connecting_to_server(self):
'''Connecting to the TCPserver'''
client = server = None
try:
sock, port = bind_unused_port()
with NullContext():
server = EchoServer()
server.add_socket(sock)
client = IOStream(socket.socket())
#### HERE I WANT TO HAVE THE caplog FIXTURE
with ExpectLog(app_log, '.*decode.*'):
yield client.connect(('localhost', port))
yield client.write(b'hello\n')
# yield client.read_until(b'\n')
yield gen.moment
assert False
finally:
if server is not None:
server.stop()
if client is not None:
client.close()
在这个类中,ExpectLog 显然不起作用,所以在 pytest 的文档中挖掘了一天后,我发现有一个 caplog 固定装置,您可以将其插入到您的方法中以访问捕获的日志。如果我有一个添加 caplog 参数的测试函数,它似乎可以工作,但是如何使 caplog 固定装置在上述测试类的方法中可用?
【问题讨论】: