mitmproxy/test/pathod/test_log.py

26 lines
480 B
Python
Raw Normal View History

2016-10-17 03:38:31 +00:00
import io
2016-02-16 19:59:33 +00:00
from pathod import log
from mitmproxy import exceptions
2015-06-04 08:36:50 +00:00
2016-05-28 04:56:12 +00:00
2016-10-17 03:38:31 +00:00
class DummyIO(io.StringIO):
2015-06-18 16:12:11 +00:00
2015-06-04 08:36:50 +00:00
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, True, rw, rw)
2015-06-04 08:36:50 +00:00
try:
with l.ctx() as lg:
2015-06-08 02:01:04 +00:00
lg("Test")
except exceptions.TcpDisconnect:
2015-06-04 08:36:50 +00:00
pass
2015-06-08 02:01:04 +00:00
assert "Test" in outf.getvalue()