2013-06-17 14:48:06 +00:00
|
|
|
import os
|
|
|
|
from nose.plugins.skip import SkipTest
|
|
|
|
if os.name == "nt":
|
|
|
|
raise SkipTest("Skipped on Windows.")
|
|
|
|
|
2013-03-17 04:31:35 +00:00
|
|
|
import libmproxy.console.common as common
|
|
|
|
from libmproxy import utils, flow, encoding
|
|
|
|
import tutils
|
|
|
|
|
|
|
|
|
|
|
|
def test_format_flow():
|
2014-09-03 14:57:56 +00:00
|
|
|
f = tutils.tflow(resp=True)
|
2013-03-17 04:31:35 +00:00
|
|
|
assert common.format_flow(f, True)
|
|
|
|
assert common.format_flow(f, True, hostheader=True)
|
|
|
|
assert common.format_flow(f, True, extended=True)
|