コード例 #1
0
def test_match_valid(parse_match):
    cases = [
        ('client_ip4 in 1.2.3.4/32',
         Request.client_ip4.in_(types.IPNetwork('1.2.3.4/32'))),
        ('method in [GET, POST] or client_ip4 in 1.2.3.4/32',
         or_(Request.method.in_(['GET', 'POST']),
             Request.client_ip4.in_(types.IPNetwork('1.2.3.4/32')))),
        ('method != PATCH and path startswith peep',
         and_(Request.method != "PATCH", Request.path.startswith('peep'))),
        ('content_length >= 123', Request.content_length >= 123),
        ('content_length != -123', Request.content_length != -123),
        ('"TEST" in path', Request.path.contains("TEST")),
        ('"TEST" not in path', ~Request.path.contains("TEST")),
        ('query.something ~ "\d{1,3}"',
         Request.query.something.match('\d{1,3}')),
        ("query.something ~ '\d{1,3}'",
         Request.query.something.match('\d{1,3}')),
        ('basic_authorization.username = karlito',
         Request.basic_authorization.username == 'karlito'),
        ('basic_authorization.username != notsosecret',
         Request.basic_authorization.username != 'notsosecret'),
    ]
    for raw, expr in cases:
        parsed = parse_match(raw)
        assert expr == parsed
コード例 #2
0
ファイル: test_exp.py プロジェクト: bninja/rump
def test_compile():
    cases = [
        Request.client_ip4.in_(types.IPNetwork('1/8')),
        Request.client_ip4.in_(types.IPNetwork('1/8')) &
        (Request.method == 'GET'),
        Request.client_ip4.in_(types.IPNetwork('1/8')) |
        (Request.method == 'GET'),
        Request.client_ip4 != types.IPAddress('1.2.3.4'),
        Request.path.match('/v[1234]/resources'),
        Request.path.startswith('/veep/'),
        Request.path.endswith('/'),
        Request.path.contains('veep'),
        Request.content_length < 100,
        Request.content_length >= 100,
        Request.has_content,
    ]
    for case in cases:
        assert case.compile(case.symbols())
コード例 #3
0
def test_rule_valid(parse_rule):
    cases = [(
        'client_ip4 in 1.2.3.4/32 => prod',
        Rule(Request.client_ip4.in_(types.IPNetwork('1.2.3.4/32')),
             Upstream(Selection(Server('http', 'prod'), 1))),
    )]
    for raw, expected in cases:
        parsed = parse_rule(raw)
        assert expected == parsed
コード例 #4
0
ファイル: test_exp.py プロジェクト: bninja/rump
def test_str():
    cases = [
        (Request.client_ip4.in_(types.IPNetwork('1/8')),
         'client_ip4 in 1.0.0.0/8'),
        (Request.client_ip4.in_(types.IPNetwork('1/8')) &
         (Request.method == 'GET'),
         'client_ip4 in 1.0.0.0/8 and method = "GET"'),
        (Request.client_ip4.in_(types.IPNetwork('1/8')) |
         (Request.method == 'GET'),
         'client_ip4 in 1.0.0.0/8 or method = "GET"'),
        (Request.client_ip4 != types.IPAddress('1.2.3.4'),
         'client_ip4 != 1.2.3.4'),
        (Request.path.match('/v[1234]/resources'),
         'path ~ "/v[1234]/resources"'),
        (~Request.path.match('/v[1234]/resources'),
         'path !~ "/v[1234]/resources"'),
    ]
    for case, expected in cases:
        assert str(case) == expected
コード例 #5
0
def rules():
    return [
        Rule(Request.client_ip4.in_(types.IPNetwork('1.2.3.4/32')),
             Upstream(Selection(Server('http', 'me'), 1))),
        Rule(
            Request.method.in_(['GET', 'POST']),
            Upstream(
                Selection(Server('https', 'prod1'), 1),
                Selection(Server('https', 'prod2'), 12),
            )),
    ]
コード例 #6
0
ファイル: test_exp.py プロジェクト: bninja/rump
def test_traverse():
    e = and_(
        Request.client_ip4.in_(types.IPNetwork('1.2.3.4/32')),
        Request.method == 'GET',
        or_(
            not_(Request.path.match('/something/.+')),
            Request.query.contains('a'),
        ))

    def _visit(v):
        vs.append(v)
        return v

    vs = []
    e.traverse(bool_op=_visit, field_op=_visit, order=e.PREFIX)
    assert map(str, vs) == [
        'client_ip4 in 1.2.3.4/32 and method = "GET" and path !~ "/something/.+" or a in query',
        'client_ip4 in 1.2.3.4/32 and method = "GET"',
        'client_ip4 in 1.2.3.4/32',
        'method = "GET"',
        'path !~ "/something/.+" or a in query',
        'path !~ "/something/.+"',
        'a in query',
    ]

    vs = []
    e.traverse(bool_op=_visit, field_op=_visit, order=e.INFIX)
    assert map(str, vs) == [
        'client_ip4 in 1.2.3.4/32',
        'client_ip4 in 1.2.3.4/32 and method = "GET"',
        'method = "GET"',
        'client_ip4 in 1.2.3.4/32 and method = "GET" and path !~ "/something/.+" or a in query',
        'path !~ "/something/.+"',
        'path !~ "/something/.+" or a in query',
        'a in query',
    ]

    vs = []
    e.traverse(bool_op=_visit, field_op=_visit, order=e.POSTFIX)
    assert map(str, vs) == [
        'client_ip4 in 1.2.3.4/32', 'method = "GET"',
        'client_ip4 in 1.2.3.4/32 and method = "GET"',
        'path !~ "/something/.+"', 'a in query',
        'path !~ "/something/.+" or a in query',
        'client_ip4 in 1.2.3.4/32 and method = "GET" and path !~ "/something/.+" or a in query'
    ]