diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-07-03 02:24:00 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-07-03 02:24:00 +0200 |
commit | b0c366aa45886c645e06cb3d0498a7cb339b18e7 (patch) | |
tree | c5d3c160f1bb0c5996f94cf9c45e16fb3b6065b5 /test | |
parent | df11595fad287a8ffdecd2ccc18b27478925c5b4 (diff) | |
parent | 64c265b71037ae9074bbaef33f3a168987b1090f (diff) | |
download | mitmproxy-b0c366aa45886c645e06cb3d0498a7cb339b18e7.tar.gz mitmproxy-b0c366aa45886c645e06cb3d0498a7cb339b18e7.tar.bz2 mitmproxy-b0c366aa45886c645e06cb3d0498a7cb339b18e7.zip |
Merge pull request #300 from zbrdge/freebsd-platform
Freebsd 10 platform
Diffstat (limited to 'test')
-rw-r--r-- | test/data/pf02 | 4 | ||||
-rw-r--r-- | test/test_platform_pf.py | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/test/data/pf02 b/test/data/pf02 new file mode 100644 index 00000000..e4dc18b3 --- /dev/null +++ b/test/data/pf02 @@ -0,0 +1,4 @@ +No ALTQ support in kernel +ALTQ related functions disabled +all tcp 127.0.0.1:8080 (5.5.5.6:80) <- 192.168.1.111:40001 FIN_WAIT_2:FIN_WAIT_2 +all tcp 127.0.0.1:8080 (5.5.5.5:80) <- 192.168.1.111:40000 ESTABLISHED:ESTABLISHED diff --git a/test/test_platform_pf.py b/test/test_platform_pf.py index f048fdcc..d617cd87 100644 --- a/test/test_platform_pf.py +++ b/test/test_platform_pf.py @@ -1,13 +1,15 @@ -import tutils +import tutils, sys from libmproxy.platform import pf class TestLookup: def test_simple(self): - p = tutils.test_data.path("data/pf01") - d = open(p,"rb").read() + if sys.platform == "freebsd10": + p = tutils.test_data.path("data/pf02") + d = open(p,"rb").read() + else: + p = tutils.test_data.path("data/pf01") + d = open(p,"rb").read() assert pf.lookup("192.168.1.111", 40000, d) == ("5.5.5.5", 80) assert not pf.lookup("192.168.1.112", 40000, d) assert not pf.lookup("192.168.1.111", 40001, d) - - |