mitmproxy/test/pathod/test_log.py

26 lines
482 B
Python
Raw Normal View History

2016-02-16 19:59:33 +00:00
from pathod import log
2015-09-17 00:13:42 +00:00
from netlib.exceptions import TcpDisconnect
2015-06-04 08:36:50 +00:00
2016-05-28 07:17:26 +00:00
import six
2015-06-04 08:36:50 +00:00
2016-05-28 04:56:12 +00:00
2016-05-28 07:17:26 +00:00
class DummyIO(six.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")
2015-09-17 00:13:42 +00:00
except TcpDisconnect:
2015-06-04 08:36:50 +00:00
pass
2015-06-08 02:01:04 +00:00
assert "Test" in outf.getvalue()