added unit test update. coverage still at 97%
This commit is contained in:
parent
e601ade924
commit
64c265b710
|
@ -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
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue