unit/test/test_routing.py

1915 lines
70 KiB
Python
Raw Normal View History

2020-05-14 10:29:22 +00:00
# -*- coding: utf-8 -*-
2020-09-16 20:31:15 +00:00
import pytest
2021-12-12 21:36:44 +00:00
from unit.applications.lang.python import TestApplicationPython
from unit.option import option
2019-02-27 16:46:27 +00:00
2021-12-12 21:36:44 +00:00
class TestRouting(TestApplicationPython):
prerequisites = {'modules': {'python': 'any'}}
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
def setup_method(self):
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "routes"}},
"routes": [
2022-04-11 20:05:14 +00:00
{
"match": {"method": "GET"},
"action": {"return": 200},
}
2020-09-16 20:31:15 +00:00
],
"applications": {},
}
), 'routing configure'
2019-02-27 16:46:27 +00:00
def route(self, route):
return self.conf([route], 'routes')
2019-12-09 12:34:35 +00:00
def route_match(self, match):
2020-09-16 20:31:15 +00:00
assert 'success' in self.route(
{"match": match, "action": {"return": 200}}
), 'route match configure'
2019-12-09 12:34:35 +00:00
def route_match_invalid(self, match):
2020-09-16 20:31:15 +00:00
assert 'error' in self.route(
{"match": match, "action": {"return": 200}}
), 'route match configure invalid'
2019-02-27 16:46:27 +00:00
2019-12-09 12:34:35 +00:00
def host(self, host, status):
2020-09-16 20:31:15 +00:00
assert (
self.get(headers={'Host': host, 'Connection': 'close'})['status']
== status
), 'match host'
2019-12-09 12:34:35 +00:00
def cookie(self, cookie, status):
2020-09-16 20:31:15 +00:00
assert (
2019-12-09 12:34:35 +00:00
self.get(
headers={
'Host': 'localhost',
'Cookie': cookie,
'Connection': 'close',
},
2020-09-16 20:31:15 +00:00
)['status']
== status
), 'match cookie'
2019-02-27 16:46:27 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_method_positive(self):
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
assert self.post()['status'] == 404, 'POST'
2019-12-09 12:34:35 +00:00
def test_routes_match_method_positive_many(self):
self.route_match({"method": ["GET", "POST"]})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
assert self.post()['status'] == 200, 'POST'
assert self.delete()['status'] == 404, 'DELETE'
2019-12-09 12:34:35 +00:00
2019-02-27 16:46:27 +00:00
def test_routes_match_method_negative(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "!GET"})
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'GET'
assert self.post()['status'] == 200, 'POST'
2019-02-27 16:46:27 +00:00
def test_routes_match_method_negative_many(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": ["!GET", "!POST"]})
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'GET'
assert self.post()['status'] == 404, 'POST'
assert self.delete()['status'] == 200, 'DELETE'
2019-02-27 16:46:27 +00:00
def test_routes_match_method_wildcard_left(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "*ET"})
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
assert self.post()['status'] == 404, 'POST'
2019-02-27 16:46:27 +00:00
def test_routes_match_method_wildcard_right(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "GE*"})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
assert self.post()['status'] == 404, 'POST'
2019-02-27 16:46:27 +00:00
def test_routes_match_method_wildcard_left_right(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "*GET*"})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
assert self.post()['status'] == 404, 'POST'
2019-02-27 16:46:27 +00:00
def test_routes_match_method_wildcard(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "*"})
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-02-27 16:46:27 +00:00
2019-04-22 15:37:46 +00:00
def test_routes_match_invalid(self):
2019-12-09 12:34:35 +00:00
self.route_match_invalid({"method": "**"})
def test_routes_match_valid(self):
self.route_match({"method": "blah*"})
self.route_match({"host": "*blah*blah"})
self.route_match({"host": "blah*blah*blah"})
self.route_match({"host": "blah*blah*"})
def test_routes_match_empty_exact(self):
self.route_match({"uri": ""})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404
self.route_match({"uri": "/"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200
assert self.get(url='/blah')['status'] == 404
def test_routes_match_negative(self):
self.route_match({"uri": "!"})
assert self.get()['status'] == 200
self.route_match({"uri": "!*"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404
self.route_match({"uri": "!/"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404
assert self.get(url='/blah')['status'] == 200
self.route_match({"uri": "!*blah"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200
assert self.get(url='/bla')['status'] == 200
assert self.get(url='/blah')['status'] == 404
assert self.get(url='/blah1')['status'] == 200
self.route_match({"uri": "!/blah*1*"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200
assert self.get(url='/blah')['status'] == 200
assert self.get(url='/blah1')['status'] == 404
assert self.get(url='/blah12')['status'] == 404
assert self.get(url='/blah2')['status'] == 200
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_middle(self):
self.route_match({"host": "ex*le"})
2019-12-09 12:34:35 +00:00
self.host('example', 200)
self.host('www.example', 404)
self.host('example.com', 404)
self.host('exampl', 404)
2019-12-09 12:34:35 +00:00
def test_routes_match_method_case_insensitive(self):
self.route_match({"method": "get"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_left_case_insensitive(self):
self.route_match({"method": "*get"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
self.route_match({"method": "*et"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_middle_case_insensitive(self):
self.route_match({"method": "g*t"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_right_case_insensitive(self):
self.route_match({"method": "get*"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
self.route_match({"method": "ge*"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_substring_case_insensitive(self):
self.route_match({"method": "*et*"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'GET'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_left_case_sensitive(self):
self.route_match({"uri": "*blah"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/BLAH')['status'] == 404, '/BLAH'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_middle_case_sensitive(self):
self.route_match({"uri": "/b*h"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/BLAH')['status'] == 404, '/BLAH'
2019-12-09 12:34:35 +00:00
def test_route_match_wildcards_ordered(self):
self.route_match({"uri": "/a*x*y*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/axy')['status'] == 200, '/axy'
assert self.get(url='/ayx')['status'] == 404, '/ayx'
def test_route_match_wildcards_adjust_start(self):
self.route_match({"uri": "/bla*bla*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/bla_foo')['status'] == 404, '/bla_foo'
def test_route_match_wildcards_adjust_start_substr(self):
self.route_match({"uri": "*bla*bla*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/bla_foo')['status'] == 404, '/bla_foo'
def test_route_match_wildcards_adjust_end(self):
self.route_match({"uri": "/bla*bla"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/foo_bla')['status'] == 404, '/foo_bla'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_right_case_sensitive(self):
self.route_match({"uri": "/bla*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/BLAH')['status'] == 404, '/BLAH'
2019-12-09 12:34:35 +00:00
def test_routes_match_wildcard_substring_case_sensitive(self):
self.route_match({"uri": "*bla*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/BLAH')['status'] == 404, '/BLAH'
2019-12-09 12:34:35 +00:00
def test_routes_match_many_wildcard_substrings_case_sensitive(self):
self.route_match({"uri": "*a*B*c*"})
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah-a-B-c-blah')['status'] == 200
assert self.get(url='/a-B-c')['status'] == 200
assert self.get(url='/aBc')['status'] == 200
assert self.get(url='/aBCaBbc')['status'] == 200
assert self.get(url='/ABc')['status'] == 404
def test_routes_empty_regex(self):
2021-02-18 21:21:55 +00:00
if not option.available['modules']['regex']:
pytest.skip('requires regex')
2021-04-05 13:03:05 +00:00
self.route_match({"uri": "~"})
assert self.get(url='/')['status'] == 200, 'empty regexp'
assert self.get(url='/anything')['status'] == 200, '/anything'
2021-04-05 13:03:05 +00:00
self.route_match({"uri": "!~"})
assert self.get(url='/')['status'] == 404, 'empty regexp 2'
assert self.get(url='/nothing')['status'] == 404, '/nothing'
def test_routes_bad_regex(self):
2021-02-18 21:21:55 +00:00
if not option.available['modules']['regex']:
pytest.skip('requires regex')
assert 'error' in self.route(
{"match": {"uri": "~/bl[ah"}, "action": {"return": 200}}
), 'bad regex'
status = self.route(
{"match": {"uri": "~(?R)?z"}, "action": {"return": 200}}
)
if 'error' not in status:
assert self.get(url='/nothing_z')['status'] == 500, '/nothing_z'
status = self.route(
{"match": {"uri": "~((?1)?z)"}, "action": {"return": 200}}
)
if 'error' not in status:
assert self.get(url='/nothing_z')['status'] == 500, '/nothing_z'
def test_routes_match_regex_case_sensitive(self):
2021-02-18 21:21:55 +00:00
if not option.available['modules']['regex']:
pytest.skip('requires regex')
self.route_match({"uri": "~/bl[ah]"})
assert self.get(url='/rlah')['status'] == 404, '/rlah'
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/blh')['status'] == 200, '/blh'
assert self.get(url='/BLAH')['status'] == 404, '/BLAH'
def test_routes_match_regex_negative_case_sensitive(self):
2021-02-18 21:21:55 +00:00
if not option.available['modules']['regex']:
pytest.skip('requires regex')
self.route_match({"uri": "!~/bl[ah]"})
assert self.get(url='/rlah')['status'] == 200, '/rlah'
assert self.get(url='/blah')['status'] == 404, '/blah'
assert self.get(url='/blh')['status'] == 404, '/blh'
assert self.get(url='/BLAH')['status'] == 200, '/BLAH'
def test_routes_pass_encode(self):
python_dir = f'{option.test_dir}/python'
def check_pass(path, name):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": f'applications/{path}'}},
2020-09-16 20:31:15 +00:00
"applications": {
name: {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
2020-09-16 20:31:15 +00:00
"processes": {"spare": 0},
"path": f'{python_dir}/empty',
"working_directory": f'{python_dir}/empty',
2020-09-16 20:31:15 +00:00
"module": "wsgi",
}
},
}
)
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200
check_pass("%25", "%")
check_pass("blah%2Fblah", "blah/blah")
check_pass("%2Fblah%2F%2Fblah%2F", "/blah//blah/")
check_pass("%20blah%252Fblah%7E", " blah%2Fblah~")
def check_pass_error(path, name):
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
{
"listeners": {"*:7080": {"pass": f'applications/{path}'}},
2020-09-16 20:31:15 +00:00
"applications": {
name: {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
2020-09-16 20:31:15 +00:00
"processes": {"spare": 0},
"path": f'{python_dir}/empty',
"working_directory": f'{python_dir}/empty',
2020-09-16 20:31:15 +00:00
"module": "wsgi",
}
},
}
)
check_pass_error("%", "%")
check_pass_error("%1", "%1")
2019-12-09 12:34:35 +00:00
def test_routes_absent(self):
assert 'success' in self.conf(
2019-12-09 12:34:35 +00:00
{
"listeners": {"*:7081": {"pass": "applications/empty"}},
"applications": {
"empty": {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
2019-12-09 12:34:35 +00:00
"processes": {"spare": 0},
"path": f'{option.test_dir}/python/empty',
"working_directory": f'{option.test_dir}/python/empty',
2019-12-09 12:34:35 +00:00
"module": "wsgi",
}
},
}
)
2020-09-16 20:31:15 +00:00
assert self.get(port=7081)['status'] == 200, 'routes absent'
2019-12-09 12:34:35 +00:00
def test_routes_pass_invalid(self):
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
{"pass": "routes/blah"}, 'listeners/*:7080'
), 'routes invalid'
2019-12-09 12:34:35 +00:00
def test_route_empty(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "routes/main"}},
"routes": {"main": []},
"applications": {},
}
), 'route empty configure'
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'route empty'
2019-02-27 16:46:27 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_route_empty(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{}, 'listeners'
), 'routes empty listeners configure'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf({}, 'routes'), 'routes empty configure'
2019-12-09 12:34:35 +00:00
def test_routes_route_match_absent(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
[{"action": {"return": 200}}], 'routes'
), 'route match absent configure'
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'route match absent'
2019-12-09 12:34:35 +00:00
def test_routes_route_action_absent(self, skip_alert):
2020-09-16 20:31:15 +00:00
skip_alert(r'failed to apply new conf')
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
[{"match": {"method": "GET"}}], 'routes'
), 'route pass absent configure'
2019-02-27 16:46:27 +00:00
def test_routes_route_pass(self):
assert 'success' in self.conf(
{
"applications": {
"app": {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
"processes": {"spare": 0},
"path": "/app",
"module": "wsgi",
}
},
"upstreams": {
"one": {
"servers": {
"127.0.0.1:7081": {},
"127.0.0.1:7082": {},
},
},
"two": {
"servers": {
"127.0.0.1:7081": {},
"127.0.0.1:7082": {},
},
},
},
}
)
assert 'success' in self.conf(
[{"action": {"pass": "routes"}}], 'routes'
)
assert 'success' in self.conf(
[{"action": {"pass": "applications/app"}}], 'routes'
)
assert 'success' in self.conf(
[{"action": {"pass": "upstreams/one"}}], 'routes'
)
2019-02-27 16:46:27 +00:00
def test_routes_route_pass_absent(self):
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
[{"match": {"method": "GET"}, "action": {}}], 'routes'
), 'route pass absent configure'
2019-02-27 16:46:27 +00:00
def test_routes_route_pass_invalid(self):
assert 'success' in self.conf(
{
"applications": {
"app": {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
"processes": {"spare": 0},
"path": "/app",
"module": "wsgi",
}
},
"upstreams": {
"one": {
"servers": {
"127.0.0.1:7081": {},
"127.0.0.1:7082": {},
},
},
"two": {
"servers": {
"127.0.0.1:7081": {},
"127.0.0.1:7082": {},
},
},
},
}
)
assert 'error' in self.conf(
[{"action": {"pass": "blah"}}], 'routes'
), 'route pass invalid'
assert 'error' in self.conf(
[{"action": {"pass": "routes/blah"}}], 'routes'
), 'route pass routes invalid'
assert 'error' in self.conf(
[{"action": {"pass": "applications/blah"}}], 'routes'
), 'route pass applications invalid'
assert 'error' in self.conf(
[{"action": {"pass": "upstreams/blah"}}], 'routes'
), 'route pass upstreams invalid'
2020-10-19 21:25:29 +00:00
def test_routes_action_unique(self, temp_dir):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {
"*:7080": {"pass": "routes"},
"*:7081": {"pass": "applications/app"},
},
2020-09-16 20:31:15 +00:00
"routes": [{"action": {"proxy": "http://127.0.0.1:7081"}}],
"applications": {
"app": {
2021-12-12 21:36:44 +00:00
"type": self.get_application_type(),
2020-09-16 20:31:15 +00:00
"processes": {"spare": 0},
"path": "/app",
"module": "wsgi",
}
},
}
)
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
2020-10-19 21:25:29 +00:00
{"proxy": "http://127.0.0.1:7081", "share": temp_dir},
2020-09-16 20:31:15 +00:00
'routes/0/action',
), 'proxy share'
assert 'error' in self.conf(
2022-04-11 20:05:14 +00:00
{
"proxy": "http://127.0.0.1:7081",
"pass": "applications/app",
},
2020-09-16 20:31:15 +00:00
'routes/0/action',
), 'proxy pass'
assert 'error' in self.conf(
2022-04-11 20:05:14 +00:00
{"share": temp_dir, "pass": "applications/app"},
'routes/0/action',
2020-09-16 20:31:15 +00:00
), 'share pass'
2019-02-27 16:46:27 +00:00
def test_routes_rules_two(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
[
{"match": {"method": "GET"}, "action": {"return": 200}},
{"match": {"method": "POST"}, "action": {"return": 201}},
],
'routes',
), 'rules two configure'
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'rules two match first'
assert self.post()['status'] == 201, 'rules two match second'
2019-02-27 16:46:27 +00:00
def test_routes_two(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "routes/first"}},
"routes": {
"first": [
{
"match": {"method": "GET"},
"action": {"pass": "routes/second"},
}
],
"second": [
{
"match": {"host": "localhost"},
"action": {"return": 200},
}
],
},
"applications": {},
}
), 'routes two configure'
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'routes two'
2019-02-27 16:46:27 +00:00
def test_routes_match_host_positive(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "localhost"})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'localhost'
2019-12-09 12:34:35 +00:00
self.host('localhost.', 200)
self.host('localhost.', 200)
self.host('.localhost', 404)
self.host('www.localhost', 404)
self.host('localhost1', 404)
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
@pytest.mark.skip('not yet')
def test_routes_match_host_absent(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "localhost"})
2020-09-16 20:31:15 +00:00
assert (
self.get(headers={'Connection': 'close'})['status'] == 400
), 'match host absent'
2019-02-27 16:46:27 +00:00
def test_routes_match_host_ipv4(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "127.0.0.1"})
2019-03-26 20:38:30 +00:00
2019-12-09 12:34:35 +00:00
self.host('127.0.0.1', 200)
self.host('127.0.0.1:7080', 200)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_ipv6(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "[::1]"})
2019-03-26 20:38:30 +00:00
2019-12-09 12:34:35 +00:00
self.host('[::1]', 200)
self.host('[::1]:7080', 200)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_positive_many(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": ["localhost", "example.com"]})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'localhost'
2019-12-09 12:34:35 +00:00
self.host('example.com', 200)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_positive_and_negative(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": ["*example.com", "!www.example.com"]})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'localhost'
2019-12-09 12:34:35 +00:00
self.host('example.com', 200)
self.host('www.example.com', 404)
self.host('!www.example.com', 200)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_positive_and_negative_wildcard(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": ["*example*", "!www.example*"]})
2019-03-26 20:38:30 +00:00
2019-12-09 12:34:35 +00:00
self.host('example.com', 200)
self.host('www.example.com', 404)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_case_insensitive(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "Example.com"})
2019-03-26 20:38:30 +00:00
2019-12-09 12:34:35 +00:00
self.host('example.com', 200)
self.host('EXAMPLE.COM', 200)
2019-02-27 16:46:27 +00:00
def test_routes_match_host_port(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": "example.com"})
2019-03-26 20:38:30 +00:00
2019-12-09 12:34:35 +00:00
self.host('example.com:7080', 200)
2019-02-27 16:46:27 +00:00
2019-04-26 14:35:32 +00:00
def test_routes_match_host_empty(self):
2019-12-09 12:34:35 +00:00
self.route_match({"host": ""})
2019-04-26 14:35:32 +00:00
2019-12-09 12:34:35 +00:00
self.host('', 200)
2020-09-16 20:31:15 +00:00
assert (
self.get(http_10=True, headers={})['status'] == 200
), 'match host empty 2'
assert self.get()['status'] == 404, 'match host empty 3'
2019-04-26 14:35:32 +00:00
2019-02-27 16:46:27 +00:00
def test_routes_match_uri_positive(self):
2019-12-09 12:34:35 +00:00
self.route_match({"uri": ["/blah", "/slash/"]})
2019-02-27 16:46:27 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, '/'
assert self.get(url='/blah')['status'] == 200, '/blah'
assert self.get(url='/blah#foo')['status'] == 200, '/blah#foo'
assert self.get(url='/blah?var')['status'] == 200, '/blah?var'
assert self.get(url='//blah')['status'] == 200, '//blah'
assert self.get(url='/slash/foo/../')['status'] == 200, 'relative'
assert self.get(url='/slash/./')['status'] == 200, '/slash/./'
assert self.get(url='/slash//.//')['status'] == 200, 'adjacent slashes'
assert self.get(url='/%')['status'] == 400, 'percent'
assert self.get(url='/%1')['status'] == 400, 'percent digit'
assert self.get(url='/%A')['status'] == 400, 'percent letter'
assert self.get(url='/slash/.?args')['status'] == 200, 'dot args'
assert self.get(url='/slash/.#frag')['status'] == 200, 'dot frag'
assert (
self.get(url='/slash/foo/..?args')['status'] == 200
), 'dot dot args'
assert (
self.get(url='/slash/foo/..#frag')['status'] == 200
), 'dot dot frag'
assert self.get(url='/slash/.')['status'] == 200, 'trailing dot'
assert (
self.get(url='/slash/foo/..')['status'] == 200
), 'trailing dot dot'
2019-02-27 16:46:27 +00:00
def test_routes_match_uri_case_sensitive(self):
2019-12-09 12:34:35 +00:00
self.route_match({"uri": "/BLAH"})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 404, '/blah'
assert self.get(url='/BlaH')['status'] == 404, '/BlaH'
assert self.get(url='/BLAH')['status'] == 200, '/BLAH'
2019-02-27 16:46:27 +00:00
def test_routes_match_uri_normalize(self):
2019-12-09 12:34:35 +00:00
self.route_match({"uri": "/blah"})
2019-03-26 20:38:30 +00:00
2020-09-16 20:31:15 +00:00
assert self.get(url='/%62%6c%61%68')['status'] == 200, 'normalize'
2019-02-27 16:46:27 +00:00
2019-04-26 14:35:32 +00:00
def test_routes_match_empty_array(self):
2019-12-09 12:34:35 +00:00
self.route_match({"uri": []})
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert self.get(url='/blah')['status'] == 200, 'empty array'
2019-04-26 14:35:32 +00:00
def test_routes_reconfigure(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf([], 'routes'), 'redefine'
assert self.get()['status'] == 404, 'redefine request'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
[{"action": {"return": 200}}], 'routes'
), 'redefine 2'
assert self.get()['status'] == 200, 'redefine request 2'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf([], 'routes'), 'redefine 3'
assert self.get()['status'] == 404, 'redefine request 3'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "routes/main"}},
"routes": {"main": [{"action": {"return": 200}}]},
"applications": {},
}
), 'redefine 4'
assert self.get()['status'] == 200, 'redefine request 4'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete('routes/main/0'), 'redefine 5'
assert self.get()['status'] == 404, 'redefine request 5'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_post(
{"action": {"return": 200}}, 'routes/main'
), 'redefine 6'
assert self.get()['status'] == 200, 'redefine request 6'
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
{"action": {"return": 200}}, 'routes/main/2'
), 'redefine 7'
assert 'success' in self.conf(
{"action": {"return": 201}}, 'routes/main/1'
), 'redefine 8'
2020-09-16 20:31:15 +00:00
assert len(self.conf_get('routes/main')) == 2, 'redefine conf 8'
assert self.get()['status'] == 200, 'redefine request 8'
2019-04-26 14:35:32 +00:00
def test_routes_edit(self):
2019-12-09 12:34:35 +00:00
self.route_match({"method": "GET"})
2019-04-26 14:35:32 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'routes edit GET'
assert self.post()['status'] == 404, 'routes edit POST'
assert 'success' in self.conf_post(
2022-04-11 20:05:14 +00:00
{"match": {"method": "POST"}, "action": {"return": 200}},
'routes',
2020-09-16 20:31:15 +00:00
), 'routes edit configure 2'
assert 'GET' == self.conf_get(
'routes/0/match/method'
), 'routes edit configure 2 check'
assert 'POST' == self.conf_get(
'routes/1/match/method'
), 'routes edit configure 2 check 2'
assert self.get()['status'] == 200, 'routes edit GET 2'
assert self.post()['status'] == 200, 'routes edit POST 2'
assert 'success' in self.conf_delete(
'routes/0'
), 'routes edit configure 3'
assert self.get()['status'] == 404, 'routes edit GET 3'
assert self.post()['status'] == 200, 'routes edit POST 3'
assert 'error' in self.conf_delete(
'routes/1'
), 'routes edit configure invalid'
assert 'error' in self.conf_delete(
'routes/-1'
), 'routes edit configure invalid 2'
assert 'error' in self.conf_delete(
'routes/blah'
), 'routes edit configure invalid 3'
assert self.get()['status'] == 404, 'routes edit GET 4'
assert self.post()['status'] == 200, 'routes edit POST 4'
assert 'success' in self.conf_delete(
'routes/0'
), 'routes edit configure 5'
assert self.get()['status'] == 404, 'routes edit GET 5'
assert self.post()['status'] == 404, 'routes edit POST 5'
assert 'success' in self.conf_post(
2022-04-11 20:05:14 +00:00
{"match": {"method": "POST"}, "action": {"return": 200}},
'routes',
2020-09-16 20:31:15 +00:00
), 'routes edit configure 6'
assert self.get()['status'] == 404, 'routes edit GET 6'
assert self.post()['status'] == 200, 'routes edit POST 6'
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "routes/main"}},
"routes": {"main": [{"action": {"return": 200}}]},
"applications": {},
}
), 'route edit configure 7'
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf_delete(
'routes/0'
), 'routes edit configure invalid 4'
assert 'error' in self.conf_delete(
'routes/main'
), 'routes edit configure invalid 5'
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'routes edit GET 7'
2019-12-09 12:34:35 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'listeners/*:7080'
), 'route edit configure 8'
assert 'success' in self.conf_delete(
'routes/main'
), 'route edit configure 9'
2019-05-30 13:47:39 +00:00
def test_match_edit(self, skip_alert):
2020-09-16 20:31:15 +00:00
skip_alert(r'failed to apply new conf')
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
self.route_match({"method": ["GET", "POST"]})
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'match edit GET'
assert self.post()['status'] == 200, 'match edit POST'
assert self.put()['status'] == 404, 'match edit PUT'
assert 'success' in self.conf_post(
'\"PUT\"', 'routes/0/match/method'
), 'match edit configure 2'
assert ['GET', 'POST', 'PUT'] == self.conf_get(
'routes/0/match/method'
), 'match edit configure 2 check'
assert self.get()['status'] == 200, 'match edit GET 2'
assert self.post()['status'] == 200, 'match edit POST 2'
assert self.put()['status'] == 200, 'match edit PUT 2'
assert 'success' in self.conf_delete(
'routes/0/match/method/1'
), 'match edit configure 3'
assert ['GET', 'PUT'] == self.conf_get(
'routes/0/match/method'
), 'match edit configure 3 check'
assert self.get()['status'] == 200, 'match edit GET 3'
assert self.post()['status'] == 404, 'match edit POST 3'
assert self.put()['status'] == 200, 'match edit PUT 3'
assert 'success' in self.conf_delete(
'routes/0/match/method/1'
), 'match edit configure 4'
assert ['GET'] == self.conf_get(
'routes/0/match/method'
), 'match edit configure 4 check'
assert self.get()['status'] == 200, 'match edit GET 4'
assert self.post()['status'] == 404, 'match edit POST 4'
assert self.put()['status'] == 404, 'match edit PUT 4'
assert 'error' in self.conf_delete(
'routes/0/match/method/1'
), 'match edit configure invalid'
assert 'error' in self.conf_delete(
'routes/0/match/method/-1'
), 'match edit configure invalid 2'
assert 'error' in self.conf_delete(
'routes/0/match/method/blah'
), 'match edit configure invalid 3'
assert ['GET'] == self.conf_get(
'routes/0/match/method'
), 'match edit configure 5 check'
assert self.get()['status'] == 200, 'match edit GET 5'
assert self.post()['status'] == 404, 'match edit POST 5'
assert self.put()['status'] == 404, 'match edit PUT 5'
assert 'success' in self.conf_delete(
'routes/0/match/method/0'
), 'match edit configure 6'
assert [] == self.conf_get(
'routes/0/match/method'
), 'match edit configure 6 check'
assert self.get()['status'] == 200, 'match edit GET 6'
assert self.post()['status'] == 200, 'match edit POST 6'
assert self.put()['status'] == 200, 'match edit PUT 6'
assert 'success' in self.conf(
'"GET"', 'routes/0/match/method'
), 'match edit configure 7'
assert self.get()['status'] == 200, 'match edit GET 7'
assert self.post()['status'] == 404, 'match edit POST 7'
assert self.put()['status'] == 404, 'match edit PUT 7'
assert 'error' in self.conf_delete(
'routes/0/match/method/0'
), 'match edit configure invalid 5'
assert 'error' in self.conf(
{}, 'routes/0/action'
), 'match edit configure invalid 6'
assert 'success' in self.conf(
{}, 'routes/0/match'
), 'match edit configure 8'
assert self.get()['status'] == 200, 'match edit GET 8'
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_rules(self):
self.route_match({"method": "GET", "host": "localhost", "uri": "/"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'routes match rules'
2019-12-09 12:34:35 +00:00
def test_routes_loop(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.route(
{"match": {"uri": "/"}, "action": {"pass": "routes"}}
), 'routes loop configure'
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 500, 'routes loop'
2019-12-09 12:34:35 +00:00
def test_routes_match_headers(self):
self.route_match({"headers": {"host": "localhost"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'match headers'
2019-12-09 12:34:35 +00:00
self.host('Localhost', 200)
self.host('localhost.com', 404)
self.host('llocalhost', 404)
self.host('host', 404)
def test_routes_match_headers_multiple(self):
self.route_match({"headers": {"host": "localhost", "x-blah": "test"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'match headers multiple'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": "test",
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers multiple 2'
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": "",
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'match headers multiple 3'
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_multiple_values(self):
self.route_match({"headers": {"x-blah": "test"}})
2020-09-16 20:31:15 +00:00
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": ["test", "test", "test"],
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers multiple values'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": ["test", "blah", "test"],
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'match headers multiple values 2'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": ["test", "", "test"],
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'match headers multiple values 3'
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_multiple_rules(self):
self.route_match({"headers": {"x-blah": ["test", "blah"]}})
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'match headers multiple rules'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": "test",
"Connection": "close",
2019-05-30 13:47:39 +00:00
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers multiple rules 2'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": "blah",
"Connection": "close",
2019-05-30 13:47:39 +00:00
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers multiple rules 3'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": ["test", "blah", "test"],
"Connection": "close",
2019-05-30 13:47:39 +00:00
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers multiple rules 4'
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"X-blah": ["blah", ""],
"Connection": "close",
2019-05-30 13:47:39 +00:00
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'match headers multiple rules 5'
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_case_insensitive(self):
self.route_match({"headers": {"X-BLAH": "TEST"}})
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"x-blah": "test",
"Connection": "close",
2019-05-30 13:47:39 +00:00
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers case insensitive'
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_invalid(self):
self.route_match_invalid({"headers": ["blah"]})
self.route_match_invalid({"headers": {"foo": ["bar", {}]}})
self.route_match_invalid({"headers": {"": "blah"}})
def test_routes_match_headers_empty_rule(self):
self.route_match({"headers": {"host": ""}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'localhost'
2019-12-09 12:34:35 +00:00
self.host('', 200)
def test_routes_match_headers_empty(self):
self.route_match({"headers": {}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'empty'
2019-12-09 12:34:35 +00:00
self.route_match({"headers": []})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'empty 2'
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_rule_array_empty(self):
self.route_match({"headers": {"blah": []}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'array empty'
assert (
2019-05-30 13:47:39 +00:00
self.get(
headers={
2019-12-09 12:34:35 +00:00
"Host": "localhost",
"blah": "foo",
"Connection": "close",
}
2020-09-16 20:31:15 +00:00
)['status']
== 200
), 'match headers rule array empty 2'
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_headers_array(self):
self.route_match(
{
"headers": [
{"x-header1": "foo*"},
{"x-header2": "bar"},
{"x-header3": ["foo", "bar"]},
{"x-header1": "bar", "x-header4": "foo"},
]
}
2019-05-30 13:47:39 +00:00
)
2021-05-24 03:33:42 +00:00
def check_headers(hds):
hds = dict({"Host": "localhost", "Connection": "close"}, **hds)
2022-04-11 20:05:14 +00:00
assert self.get(headers=hds)['status'] == 200, 'headers array match'
2021-05-24 03:33:42 +00:00
def check_headers_404(hds):
hds = dict({"Host": "localhost", "Connection": "close"}, **hds)
assert (
self.get(headers=hds)['status'] == 404
), 'headers array no match'
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'match headers array'
2021-05-24 03:33:42 +00:00
check_headers({"x-header1": "foo123"})
check_headers({"x-header2": "bar"})
check_headers({"x-header3": "bar"})
check_headers_404({"x-header1": "bar"})
check_headers({"x-header1": "bar", "x-header4": "foo"})
2019-05-30 13:47:39 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'routes/0/match/headers/1'
), 'match headers array configure 2'
2019-05-30 13:47:39 +00:00
2021-05-24 03:33:42 +00:00
check_headers_404({"x-header2": "bar"})
check_headers({"x-header3": "foo"})
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments(self):
self.route_match({"arguments": {"foo": "bar"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'args'
assert self.get(url='/?foo=bar')['status'] == 200, 'args 2'
assert self.get(url='/?foo=bar1')['status'] == 404, 'args 3'
assert self.get(url='/?1foo=bar')['status'] == 404, 'args 4'
assert self.get(url='/?Foo=bar')['status'] == 404, 'case'
assert self.get(url='/?foo=Bar')['status'] == 404, 'case 2'
2019-12-09 12:34:35 +00:00
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_chars(self):
chars = (
" !\"%23$%25%26'()*%2B,-./0123456789:;<%3D>?@"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"
)
chars_enc = ""
for h1 in ["2", "3", "4", "5", "6", "7"]:
2020-09-16 20:31:15 +00:00
for h2 in [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"A",
"B",
"C",
"D",
"E",
"F",
2020-05-14 10:29:22 +00:00
]:
chars_enc += f'%{h1}{h2}'
2020-05-14 10:29:22 +00:00
chars_enc = chars_enc[:-3]
def check_args(args, query):
self.route_match({"arguments": args})
assert self.get(url=f'/?{query}')['status'] == 200
2020-05-14 10:29:22 +00:00
check_args({chars: chars}, f'{chars}={chars}')
check_args({chars: chars}, f'{chars}={chars_enc}')
check_args({chars: chars}, f'{chars_enc}={chars}')
check_args({chars: chars}, f'{chars_enc}={chars_enc}')
check_args({chars_enc: chars_enc}, f'{chars}={chars}')
check_args({chars_enc: chars_enc}, f'{chars}={chars_enc}')
check_args({chars_enc: chars_enc}, f'{chars_enc}={chars}')
check_args({chars_enc: chars_enc}, f'{chars_enc}={chars_enc}')
2020-05-14 10:29:22 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_empty(self):
self.route_match({"arguments": {}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'arguments empty'
2019-12-09 12:34:35 +00:00
self.route_match({"arguments": []})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'arguments empty 2'
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_space(self):
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"+fo o%20": "%20b+a r"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/? fo o = b a r&')['status'] == 200
assert self.get(url='/?+fo+o+=+b+a+r&')['status'] == 200
assert self.get(url='/?%20fo%20o%20=%20b%20a%20r&')['status'] == 200
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"%20foo": " bar"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/? foo= bar')['status'] == 200
assert self.get(url='/?+foo=+bar')['status'] == 200
assert self.get(url='/?%20foo=%20bar')['status'] == 200
assert self.get(url='/?+foo= bar')['status'] == 200
assert self.get(url='/?%20foo=+bar')['status'] == 200
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_equal(self):
self.route_match({"arguments": {"=": "="}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%3D=%3D')['status'] == 200
assert self.get(url='/?%3D==')['status'] == 200
assert self.get(url='/?===')['status'] == 404
assert self.get(url='/?%3D%3D%3D')['status'] == 404
assert self.get(url='/?==%3D')['status'] == 404
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_enc(self):
self.route_match({"arguments": {"Ю": "н"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%D0%AE=%D0%BD')['status'] == 200
assert self.get(url='/?%d0%ae=%d0%Bd')['status'] == 200
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_hash(self):
self.route_match({"arguments": {"#": "#"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%23=%23')['status'] == 200
assert self.get(url='/?%23=%23#')['status'] == 200
assert self.get(url='/?#=#')['status'] == 404
assert self.get(url='/?%23=#')['status'] == 404
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_wildcard(self):
self.route_match({"arguments": {"foo": "*"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo')['status'] == 200
assert self.get(url='/?foo=')['status'] == 200
assert self.get(url='/?foo=blah')['status'] == 200
assert self.get(url='/?blah=foo')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "%25*"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=%xx')['status'] == 200
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "%2A*"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=*xx')['status'] == 200
assert self.get(url='/?foo=xx')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "*%2A"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=xx*')['status'] == 200
assert self.get(url='/?foo=xx*x')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "1*2"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=12')['status'] == 200
assert self.get(url='/?foo=1blah2')['status'] == 200
assert self.get(url='/?foo=1%2A2')['status'] == 200
assert self.get(url='/?foo=x12')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "bar*", "%25": "%25"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=barxx&%=%')['status'] == 200
assert self.get(url='/?foo=barxx&x%=%')['status'] == 404
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_negative(self):
self.route_match({"arguments": {"foo": "!"}})
assert self.get(url='/?bar')['status'] == 404
assert self.get(url='/?foo')['status'] == 404
assert self.get(url='/?foo=')['status'] == 404
assert self.get(url='/?foo=%25')['status'] == 200
self.route_match({"arguments": {"foo": "!*"}})
assert self.get(url='/?bar')['status'] == 404
assert self.get(url='/?foo')['status'] == 404
assert self.get(url='/?foo=')['status'] == 404
assert self.get(url='/?foo=blah')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "!%25"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=blah')['status'] == 200
assert self.get(url='/?foo=%')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "%21blah"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=%21blah')['status'] == 200
assert self.get(url='/?foo=!blah')['status'] == 200
assert self.get(url='/?foo=bar')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"foo": "!!%21*a"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=blah')['status'] == 200
assert self.get(url='/?foo=!blah')['status'] == 200
assert self.get(url='/?foo=!!a')['status'] == 404
assert self.get(url='/?foo=!!bla')['status'] == 404
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_percent(self):
self.route_match({"arguments": {"%25": "%25"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%=%')['status'] == 200
assert self.get(url='/?%25=%25')['status'] == 200
assert self.get(url='/?%25=%')['status'] == 200
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"%251": "%252"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%1=%2')['status'] == 200
assert self.get(url='/?%251=%252')['status'] == 200
assert self.get(url='/?%251=%2')['status'] == 200
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"%25%21%251": "%25%24%252"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%!%1=%$%2')['status'] == 200
assert self.get(url='/?%25!%251=%25$%252')['status'] == 200
assert self.get(url='/?%25!%1=%$%2')['status'] == 200
2020-05-14 10:29:22 +00:00
def test_routes_match_arguments_ampersand(self):
self.route_match({"arguments": {"foo": "&"}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo=%26')['status'] == 200
assert self.get(url='/?foo=%26&')['status'] == 200
assert self.get(url='/?foo=%26%26')['status'] == 404
assert self.get(url='/?foo=&')['status'] == 404
2020-05-14 10:29:22 +00:00
self.route_match({"arguments": {"&": ""}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?%26=')['status'] == 200
assert self.get(url='/?%26=&')['status'] == 200
assert self.get(url='/?%26=%26')['status'] == 404
assert self.get(url='/?&=')['status'] == 404
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_complex(self):
self.route_match({"arguments": {"foo": ""}})
2020-09-16 20:31:15 +00:00
assert self.get(url='/?foo')['status'] == 200, 'complex'
assert self.get(url='/?blah=blah&foo=')['status'] == 200, 'complex 2'
assert self.get(url='/?&&&foo&&&')['status'] == 200, 'complex 3'
assert self.get(url='/?foo&foo=bar&foo')['status'] == 404, 'complex 4'
assert self.get(url='/?foo=&foo')['status'] == 200, 'complex 5'
assert self.get(url='/?&=&foo&==&')['status'] == 200, 'complex 6'
assert self.get(url='/?&=&bar&==&')['status'] == 404, 'complex 7'
2019-05-30 13:47:39 +00:00
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_multiple(self):
self.route_match({"arguments": {"foo": "bar", "blah": "test"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'multiple'
assert (
self.get(url='/?foo=bar&blah=test')['status'] == 200
), 'multiple 2'
assert self.get(url='/?foo=bar&blah')['status'] == 404, 'multiple 3'
2022-04-11 20:05:14 +00:00
assert self.get(url='/?foo=bar&blah=tes')['status'] == 404, 'multiple 4'
2020-09-16 20:31:15 +00:00
assert (
self.get(url='/?foo=b%61r&bl%61h=t%65st')['status'] == 200
), 'multiple 5'
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_multiple_rules(self):
self.route_match({"arguments": {"foo": ["bar", "blah"]}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'rules'
assert self.get(url='/?foo=bar')['status'] == 200, 'rules 2'
assert self.get(url='/?foo=blah')['status'] == 200, 'rules 3'
assert (
self.get(url='/?foo=blah&foo=bar&foo=blah')['status'] == 200
), 'rules 4'
assert (
self.get(url='/?foo=blah&foo=bar&foo=')['status'] == 404
), 'rules 5'
2019-12-09 12:34:35 +00:00
def test_routes_match_arguments_array(self):
self.route_match(
{
"arguments": [
{"var1": "val1*"},
{"var2": "val2"},
{"var3": ["foo", "bar"]},
{"var1": "bar", "var4": "foo"},
]
}
)
2019-12-09 12:34:35 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'arr'
assert self.get(url='/?var1=val123')['status'] == 200, 'arr 2'
assert self.get(url='/?var2=val2')['status'] == 200, 'arr 3'
assert self.get(url='/?var3=bar')['status'] == 200, 'arr 4'
assert self.get(url='/?var1=bar')['status'] == 404, 'arr 5'
assert self.get(url='/?var1=bar&var4=foo')['status'] == 200, 'arr 6'
2019-12-09 12:34:35 +00:00
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'routes/0/match/arguments/1'
), 'match arguments array configure 2'
2019-12-09 12:34:35 +00:00
2020-09-16 20:31:15 +00:00
assert self.get(url='/?var2=val2')['status'] == 404, 'arr 7'
assert self.get(url='/?var3=foo')['status'] == 200, 'arr 8'
2019-12-09 12:34:35 +00:00
2021-03-31 22:42:00 +00:00
def test_routes_match_arguments_invalid(self):
2020-05-14 10:29:22 +00:00
self.route_match_invalid({"arguments": ["var"]})
self.route_match_invalid({"arguments": [{"var1": {}}]})
self.route_match_invalid({"arguments": {"": "bar"}})
self.route_match_invalid({"arguments": {"foo": "%"}})
self.route_match_invalid({"arguments": {"foo": "%1G"}})
self.route_match_invalid({"arguments": {"%": "bar"}})
self.route_match_invalid({"arguments": {"foo": "%0"}})
self.route_match_invalid({"arguments": {"foo": "%%1F"}})
self.route_match_invalid({"arguments": {"%%1F": ""}})
self.route_match_invalid({"arguments": {"%7%F": ""}})
def test_routes_match_query(self):
self.route_match({"query": "!"})
assert self.get(url='/')['status'] == 404
assert self.get(url='/?')['status'] == 404
assert self.get(url='/?foo')['status'] == 200
assert self.get(url='/?foo=')['status'] == 200
assert self.get(url='/?foo=baz')['status'] == 200
self.route_match({"query": "foo=%26"})
assert self.get(url='/?foo=&')['status'] == 200
self.route_match({"query": "a=b&c=d"})
assert self.get(url='/?a=b&c=d')['status'] == 200
self.route_match({"query": "a=b%26c%3Dd"})
assert self.get(url='/?a=b%26c%3Dd')['status'] == 200
assert self.get(url='/?a=b&c=d')['status'] == 200
self.route_match({"query": "a=b%26c%3Dd+e"})
assert self.get(url='/?a=b&c=d e')['status'] == 200
def test_routes_match_query_array(self):
self.route_match({"query": ["foo", "bar"]})
assert self.get()['status'] == 404, 'no args'
assert self.get(url='/?foo')['status'] == 200, 'arg first'
assert self.get(url='/?bar')['status'] == 200, 'arg second'
assert 'success' in self.conf_delete(
'routes/0/match/query/1'
), 'query array remove second'
assert self.get(url='/?foo')['status'] == 200, 'still arg first'
assert self.get(url='/?bar')['status'] == 404, 'no arg second'
self.route_match({"query": ["!f", "foo"]})
assert self.get(url='/?f')['status'] == 404, 'negative arg'
assert self.get(url='/?fo')['status'] == 404, 'negative arg 2'
assert self.get(url='/?foo')['status'] == 200, 'negative arg 3'
self.route_match({"query": []})
assert self.get()['status'] == 200, 'empty array'
def test_routes_match_query_invalid(self):
self.route_match_invalid({"query": [1]})
self.route_match_invalid({"query": "%"})
self.route_match_invalid({"query": "%1G"})
self.route_match_invalid({"query": "%0"})
self.route_match_invalid({"query": "%%1F"})
self.route_match_invalid({"query": ["foo", "%3D", "%%1F"]})
2019-12-09 12:34:35 +00:00
def test_routes_match_cookies(self):
self.route_match({"cookies": {"foO": "bar"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'cookie'
2019-12-09 12:34:35 +00:00
self.cookie('foO=bar', 200)
self.cookie('foO=bar;1', 200)
self.cookie(['foO=bar', 'blah=blah'], 200)
self.cookie('foO=bar; blah=blah', 200)
self.cookie('Foo=bar', 404)
self.cookie('foO=Bar', 404)
self.cookie('foO=bar1', 404)
self.cookie('1foO=bar;', 404)
def test_routes_match_cookies_empty(self):
self.route_match({"cookies": {}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'cookies empty'
2019-12-09 12:34:35 +00:00
self.route_match({"cookies": []})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'cookies empty 2'
2019-12-09 12:34:35 +00:00
def test_routes_match_cookies_invalid(self):
self.route_match_invalid({"cookies": ["var"]})
self.route_match_invalid({"cookies": [{"foo": {}}]})
def test_routes_match_cookies_complex(self):
self.route_match({"cookies": {"foo": "bar=baz"}})
self.cookie('foo=bar=baz', 200)
self.cookie(' foo=bar=baz ', 200)
self.cookie('=foo=bar=baz', 404)
self.route_match({"cookies": {"foo": ""}})
self.cookie('foo=', 200)
self.cookie('foo=;', 200)
self.cookie(' foo=;', 200)
self.cookie('foo', 404)
self.cookie('', 404)
self.cookie('=', 404)
2019-12-09 12:34:35 +00:00
def test_routes_match_cookies_multiple(self):
self.route_match({"cookies": {"foo": "bar", "blah": "blah"}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'multiple'
2019-12-09 12:34:35 +00:00
self.cookie('foo=bar; blah=blah', 200)
self.cookie(['foo=bar', 'blah=blah'], 200)
self.cookie(['foo=bar; blah', 'blah'], 404)
self.cookie(['foo=bar; blah=test', 'blah=blah'], 404)
def test_routes_match_cookies_multiple_values(self):
self.route_match({"cookies": {"blah": "blah"}})
self.cookie(['blah=blah', 'blah=blah', 'blah=blah'], 200)
self.cookie(['blah=blah', 'blah=test', 'blah=blah'], 404)
self.cookie(['blah=blah; blah=', 'blah=blah'], 404)
def test_routes_match_cookies_multiple_rules(self):
self.route_match({"cookies": {"blah": ["test", "blah"]}})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'multiple rules'
2019-12-09 12:34:35 +00:00
self.cookie('blah=test', 200)
self.cookie('blah=blah', 200)
self.cookie(['blah=blah', 'blah=test', 'blah=blah'], 200)
self.cookie(['blah=blah; blah=test', 'blah=blah'], 200)
2020-09-16 20:31:15 +00:00
self.cookie(['blah=blah', 'blah'], 200) # invalid cookie
2019-12-09 12:34:35 +00:00
def test_routes_match_cookies_array(self):
self.route_match(
{
"cookies": [
{"var1": "val1*"},
{"var2": "val2"},
{"var3": ["foo", "bar"]},
{"var1": "bar", "var4": "foo"},
]
}
)
2019-12-09 12:34:35 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'cookies array'
2019-12-09 12:34:35 +00:00
self.cookie('var1=val123', 200)
self.cookie('var2=val2', 200)
self.cookie(' var2=val2 ', 200)
self.cookie('var3=bar', 200)
self.cookie('var3=bar;', 200)
self.cookie('var1=bar', 404)
self.cookie('var1=bar; var4=foo;', 200)
self.cookie(['var1=bar', 'var4=foo'], 200)
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'routes/0/match/cookies/1'
), 'match cookies array configure 2'
2019-12-09 12:34:35 +00:00
self.cookie('var2=val2', 404)
self.cookie('var3=foo', 200)
def test_routes_match_scheme(self):
self.route_match({"scheme": "http"})
self.route_match({"scheme": "https"})
self.route_match({"scheme": "HtTp"})
self.route_match({"scheme": "HtTpS"})
def test_routes_match_scheme_invalid(self):
self.route_match_invalid({"scheme": ["http"]})
self.route_match_invalid({"scheme": "ftp"})
self.route_match_invalid({"scheme": "ws"})
self.route_match_invalid({"scheme": "*"})
self.route_match_invalid({"scheme": ""})
def test_routes_source_port(self):
def sock_port():
sock = self.http(b'', raw=True, no_recv=True)
port = sock.getsockname()[1]
return (sock, port)
sock, port = sock_port()
sock2, port2 = sock_port()
self.route_match({"source": f'127.0.0.1:{port}'})
2020-09-16 20:31:15 +00:00
assert self.get(sock=sock)['status'] == 200, 'exact'
assert self.get(sock=sock2)['status'] == 404, 'exact 2'
sock, port = sock_port()
sock2, port2 = sock_port()
self.route_match({"source": f'!127.0.0.1:{port}'})
2020-09-16 20:31:15 +00:00
assert self.get(sock=sock)['status'] == 404, 'negative'
assert self.get(sock=sock2)['status'] == 200, 'negative 2'
sock, port = sock_port()
sock2, port2 = sock_port()
self.route_match({"source": [f'*:{port}', "!127.0.0.1"]})
2020-09-16 20:31:15 +00:00
assert self.get(sock=sock)['status'] == 404, 'negative 3'
assert self.get(sock=sock2)['status'] == 404, 'negative 4'
sock, port = sock_port()
sock2, port2 = sock_port()
self.route_match({"source": f'127.0.0.1:{port}-{port}'})
2020-09-16 20:31:15 +00:00
assert self.get(sock=sock)['status'] == 200, 'range single'
assert self.get(sock=sock2)['status'] == 404, 'range single 2'
socks = [
sock_port(),
sock_port(),
sock_port(),
sock_port(),
sock_port(),
]
socks.sort(key=lambda sock: sock[1])
self.route_match({"source": f'127.0.0.1:{socks[1][1]}-{socks[3][1]}'})
2020-09-16 20:31:15 +00:00
assert self.get(sock=socks[0][0])['status'] == 404, 'range'
assert self.get(sock=socks[1][0])['status'] == 200, 'range 2'
assert self.get(sock=socks[2][0])['status'] == 200, 'range 3'
assert self.get(sock=socks[3][0])['status'] == 200, 'range 4'
assert self.get(sock=socks[4][0])['status'] == 404, 'range 5'
socks = [
sock_port(),
sock_port(),
sock_port(),
]
socks.sort(key=lambda sock: sock[1])
self.route_match(
{
"source": [
f'127.0.0.1:{socks[0][1]}',
f'127.0.0.1:{socks[2][1]}',
]
}
)
2020-09-16 20:31:15 +00:00
assert self.get(sock=socks[0][0])['status'] == 200, 'array'
assert self.get(sock=socks[1][0])['status'] == 404, 'array 2'
assert self.get(sock=socks[2][0])['status'] == 200, 'array 3'
def test_routes_source_addr(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
2022-04-11 20:05:14 +00:00
{
"*:7080": {"pass": "routes"},
"[::1]:7081": {"pass": "routes"},
},
2020-09-16 20:31:15 +00:00
'listeners',
), 'source listeners configure'
def get_ipv6():
return self.get(sock_type='ipv6', port=7081)
self.route_match({"source": "127.0.0.1"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'exact'
assert get_ipv6()['status'] == 404, 'exact ipv6'
self.route_match({"source": ["127.0.0.1"]})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'exact 2'
assert get_ipv6()['status'] == 404, 'exact 2 ipv6'
self.route_match({"source": "!127.0.0.1"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'exact neg'
assert get_ipv6()['status'] == 200, 'exact neg ipv6'
self.route_match({"source": "127.0.0.2"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'exact 3'
assert get_ipv6()['status'] == 404, 'exact 3 ipv6'
self.route_match({"source": "127.0.0.1-127.0.0.1"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'range single'
assert get_ipv6()['status'] == 404, 'range single ipv6'
self.route_match({"source": "127.0.0.2-127.0.0.2"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'range single 2'
assert get_ipv6()['status'] == 404, 'range single 2 ipv6'
self.route_match({"source": "127.0.0.2-127.0.0.3"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'range'
assert get_ipv6()['status'] == 404, 'range ipv6'
self.route_match({"source": "127.0.0.1-127.0.0.2"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'range 2'
assert get_ipv6()['status'] == 404, 'range 2 ipv6'
self.route_match({"source": "127.0.0.0-127.0.0.2"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'range 3'
assert get_ipv6()['status'] == 404, 'range 3 ipv6'
self.route_match({"source": "127.0.0.0-127.0.0.1"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'range 4'
assert get_ipv6()['status'] == 404, 'range 4 ipv6'
self.route_match({"source": "126.0.0.0-127.0.0.0"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'range 5'
assert get_ipv6()['status'] == 404, 'range 5 ipv6'
self.route_match({"source": "126.126.126.126-127.0.0.2"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'range 6'
assert get_ipv6()['status'] == 404, 'range 6 ipv6'
def test_routes_source_ipv6(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"[::1]:7080": {"pass": "routes"},
"127.0.0.1:7081": {"pass": "routes"},
},
'listeners',
), 'source listeners configure'
self.route_match({"source": "::1"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'exact'
assert self.get(port=7081)['status'] == 404, 'exact ipv4'
self.route_match({"source": ["::1"]})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'exact 2'
assert self.get(port=7081)['status'] == 404, 'exact 2 ipv4'
self.route_match({"source": "!::1"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 404, 'exact neg'
assert self.get(port=7081)['status'] == 200, 'exact neg ipv4'
self.route_match({"source": "::2"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 404, 'exact 3'
assert self.get(port=7081)['status'] == 404, 'exact 3 ipv4'
self.route_match({"source": "::1-::1"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'range'
assert self.get(port=7081)['status'] == 404, 'range ipv4'
self.route_match({"source": "::2-::2"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 404, 'range 2'
assert self.get(port=7081)['status'] == 404, 'range 2 ipv4'
self.route_match({"source": "::2-::3"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 404, 'range 3'
assert self.get(port=7081)['status'] == 404, 'range 3 ipv4'
self.route_match({"source": "::1-::2"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'range 4'
assert self.get(port=7081)['status'] == 404, 'range 4 ipv4'
self.route_match({"source": "::0-::2"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'range 5'
assert self.get(port=7081)['status'] == 404, 'range 5 ipv4'
self.route_match({"source": "::0-::1"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, 'range 6'
assert self.get(port=7081)['status'] == 404, 'range 6 ipv4'
def test_routes_source_cidr(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
2022-04-11 20:05:14 +00:00
{
"*:7080": {"pass": "routes"},
"[::1]:7081": {"pass": "routes"},
},
2020-09-16 20:31:15 +00:00
'listeners',
), 'source listeners configure'
def get_ipv6():
return self.get(sock_type='ipv6', port=7081)
self.route_match({"source": "127.0.0.1/32"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, '32'
assert get_ipv6()['status'] == 404, '32 ipv6'
self.route_match({"source": "127.0.0.0/32"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, '32 2'
assert get_ipv6()['status'] == 404, '32 2 ipv6'
self.route_match({"source": "127.0.0.0/31"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, '31'
assert get_ipv6()['status'] == 404, '31 ipv6'
self.route_match({"source": "0.0.0.0/1"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, '1'
assert get_ipv6()['status'] == 404, '1 ipv6'
self.route_match({"source": "0.0.0.0/0"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, '0'
assert get_ipv6()['status'] == 404, '0 ipv6'
def test_routes_source_cidr_ipv6(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"[::1]:7080": {"pass": "routes"},
"127.0.0.1:7081": {"pass": "routes"},
},
'listeners',
), 'source listeners configure'
self.route_match({"source": "::1/128"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, '128'
assert self.get(port=7081)['status'] == 404, '128 ipv4'
self.route_match({"source": "::0/128"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 404, '128 2'
assert self.get(port=7081)['status'] == 404, '128 ipv4'
self.route_match({"source": "::0/127"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, '127'
assert self.get(port=7081)['status'] == 404, '127 ipv4'
self.route_match({"source": "::0/32"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, '32'
assert self.get(port=7081)['status'] == 404, '32 ipv4'
self.route_match({"source": "::0/1"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, '1'
assert self.get(port=7081)['status'] == 404, '1 ipv4'
self.route_match({"source": "::/0"})
2020-09-16 20:31:15 +00:00
assert self.get(sock_type='ipv6')['status'] == 200, '0'
assert self.get(port=7081)['status'] == 404, '0 ipv4'
2020-10-19 21:25:29 +00:00
def test_routes_source_unix(self, temp_dir):
addr = f'{temp_dir}/sock'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"127.0.0.1:7081": {"pass": "routes"},
f'unix:{addr}': {"pass": "routes"},
},
'listeners',
2020-09-16 20:31:15 +00:00
), 'source listeners configure'
self.route_match({"source": "!0.0.0.0/0"})
2020-09-16 20:31:15 +00:00
assert (
self.get(sock_type='unix', addr=addr)['status'] == 200
), 'unix ipv4 neg'
self.route_match({"source": "!::/0"})
2020-09-16 20:31:15 +00:00
assert (
self.get(sock_type='unix', addr=addr)['status'] == 200
), 'unix ipv6 neg'
self.route_match({"source": "unix"})
assert self.get(port=7081)['status'] == 404, 'unix ipv4'
assert self.get(sock_type='unix', addr=addr)['status'] == 200, 'unix'
def test_routes_match_source(self):
self.route_match({"source": "::"})
self.route_match(
{
"source": [
"127.0.0.1",
"192.168.0.10:8080",
"192.168.0.11:8080-8090",
]
}
)
self.route_match(
{
"source": [
"10.0.0.0/8",
"10.0.0.0/7:1000",
"10.0.0.0/32:8080-8090",
]
}
)
self.route_match(
{
"source": [
"10.0.0.0-10.0.0.1",
"10.0.0.0-11.0.0.0:1000",
"127.0.0.0-127.0.0.255:8080-8090",
]
}
)
self.route_match(
{"source": ["2001::", "[2002::]:8000", "[2003::]:8080-8090"]}
)
self.route_match(
{
"source": [
"2001::-200f:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"[fe08::-feff::]:8000",
"[fff0::-fff0::10]:8080-8090",
]
}
)
self.route_match(
{
"source": [
"2001::/16",
"[0ff::/64]:8000",
"[fff0:abcd:ffff:ffff:ffff::/128]:8080-8090",
]
}
)
self.route_match({"source": "*:0-65535"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'source any'
def test_routes_match_source_invalid(self):
self.route_match_invalid({"source": "127"})
self.route_match_invalid({"source": "256.0.0.1"})
self.route_match_invalid({"source": "127.0.0."})
self.route_match_invalid({"source": " 127.0.0.1"})
self.route_match_invalid({"source": "127.0.0.1:"})
self.route_match_invalid({"source": "127.0.0.1/"})
self.route_match_invalid({"source": "11.0.0.0/33"})
self.route_match_invalid({"source": "11.0.0.0/65536"})
self.route_match_invalid({"source": "11.0.0.0-10.0.0.0"})
self.route_match_invalid({"source": "11.0.0.0:3000-2000"})
self.route_match_invalid({"source": ["11.0.0.0:3000-2000"]})
self.route_match_invalid({"source": "[2001::]:3000-2000"})
self.route_match_invalid({"source": "2001::-2000::"})
self.route_match_invalid({"source": "2001::/129"})
self.route_match_invalid({"source": "::FFFFF"})
self.route_match_invalid({"source": "[::1]:"})
self.route_match_invalid({"source": "[:::]:7080"})
self.route_match_invalid({"source": "*:"})
self.route_match_invalid({"source": "*:1-a"})
self.route_match_invalid({"source": "*:65536"})
def test_routes_match_source_none(self):
self.route_match({"source": []})
assert self.get()['status'] == 404, 'source none'
2019-12-24 13:59:58 +00:00
def test_routes_match_destination(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{"*:7080": {"pass": "routes"}, "*:7081": {"pass": "routes"}},
'listeners',
), 'listeners configure'
2019-12-24 13:59:58 +00:00
self.route_match({"destination": "*:7080"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'dest'
assert self.get(port=7081)['status'] == 404, 'dest 2'
2019-12-24 13:59:58 +00:00
self.route_match({"destination": ["127.0.0.1:7080"]})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'dest 3'
assert self.get(port=7081)['status'] == 404, 'dest 4'
2019-12-24 13:59:58 +00:00
self.route_match({"destination": "!*:7080"})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg'
assert self.get(port=7081)['status'] == 200, 'dest neg 2'
2019-12-24 13:59:58 +00:00
self.route_match({"destination": ['!*:7080', '!*:7081']})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg 3'
assert self.get(port=7081)['status'] == 404, 'dest neg 4'
self.route_match({"destination": ['!*:7081', '!*:7082']})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'dest neg 5'
self.route_match({"destination": ['*:7080', '!*:7080']})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg 6'
self.route_match(
{"destination": ['127.0.0.1:7080', '*:7081', '!*:7080']}
)
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg 7'
assert self.get(port=7081)['status'] == 200, 'dest neg 8'
self.route_match({"destination": ['!*:7081', '!*:7082', '*:7083']})
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg 9'
self.route_match(
{"destination": ['*:7081', '!127.0.0.1:7080', '*:7080']}
)
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 404, 'dest neg 10'
assert self.get(port=7081)['status'] == 200, 'dest neg 11'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'routes/0/match/destination/0'
), 'remove destination rule'
assert self.get()['status'] == 404, 'dest neg 12'
assert self.get(port=7081)['status'] == 404, 'dest neg 13'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'routes/0/match/destination/0'
), 'remove destination rule 2'
assert self.get()['status'] == 200, 'dest neg 14'
assert self.get(port=7081)['status'] == 404, 'dest neg 15'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_post(
"\"!127.0.0.1\"", 'routes/0/match/destination'
), 'add destination rule'
assert self.get()['status'] == 404, 'dest neg 16'
assert self.get(port=7081)['status'] == 404, 'dest neg 17'
2019-12-24 13:59:58 +00:00
def test_routes_match_destination_proxy(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {
"*:7080": {"pass": "routes/first"},
"*:7081": {"pass": "routes/second"},
},
"routes": {
"first": [{"action": {"proxy": "http://127.0.0.1:7081"}}],
"second": [
{
"match": {"destination": ["127.0.0.1:7081"]},
"action": {"return": 200},
}
],
},
"applications": {},
}
), 'proxy configure'
2020-05-15 03:20:56 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'proxy'