aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_platform_pf.py
blob: a2e7c3c1d198240582974b9868148d52241817b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import tutils
from libmproxy.platform import pf


class TestLookup:
    def test_simple(self):
        p = tutils.test_data.path("data/pf01")
        d = open(p).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)