2016-10-17 03:38:31 +00:00
|
|
|
import io
|
|
|
|
|
2016-02-16 19:59:33 +00:00
|
|
|
from pathod import log
|
2016-10-19 22:27:05 +00:00
|
|
|
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()
|
2016-06-09 22:47:28 +00:00
|
|
|
l = log.ConnectionLogger(outf, False, True, rw, rw)
|
2015-06-04 08:36:50 +00:00
|
|
|
try:
|
2015-06-28 00:16:02 +00:00
|
|
|
with l.ctx() as lg:
|
2015-06-08 02:01:04 +00:00
|
|
|
lg("Test")
|
2016-10-19 22:27:05 +00:00
|
|
|
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()
|