mitmproxy/test/pathod/test_log.py
2016-02-15 16:34:22 +01:00

26 lines
506 B
Python

import StringIO
from libpathod import log
from netlib.exceptions import TcpDisconnect
import netlib.tcp
class DummyIO(StringIO.StringIO):
def start_log(self, *args, **kwargs):
pass
def get_log(self, *args, **kwargs):
return ""
def test_disconnect():
outf = DummyIO()
rw = DummyIO()
l = log.ConnectionLogger(outf, False, rw, rw)
try:
with l.ctx() as lg:
lg("Test")
except TcpDisconnect:
pass
assert "Test" in outf.getvalue()