blob: d91b8bb1eb7e7bf928e50735f88266f62fdf64b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import StringIO
from pathod 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()
|