Tests: added tests with abstract UNIX sockets.

This commit is contained in:
Andrei Zeliankou
2022-08-25 15:50:49 +01:00
parent 7e4a8a5422
commit d1cb8ab2bb
6 changed files with 176 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ from unit.check.isolation import check_isolation
from unit.check.node import check_node
from unit.check.regex import check_regex
from unit.check.tls import check_openssl
from unit.check.unix_abstract import check_unix_abstract
from unit.http import TestHTTP
from unit.log import Log
from unit.option import option
@@ -213,6 +214,7 @@ def pytest_sessionstart(session):
check_chroot()
check_isolation()
check_unix_abstract()
_clear_conf(unit['temp_dir'] + '/control.unit.sock')

View File

@@ -0,0 +1,23 @@
from packaging import version
from unit.applications.lang.python import TestApplicationPython
class TestASGIApplicationUnixAbstract(TestApplicationPython):
prerequisites = {
'modules': {
'python': lambda v: version.parse(v) >= version.parse('3.5')
},
'features': ['unix_abstract'],
}
load_module = 'asgi'
def test_asgi_application_unix_abstract(self):
self.load('empty')
addr = '\0sock'
assert 'success' in self.conf(
{"unix:@" + addr[1:]: {"pass": "applications/empty"}},
'listeners',
)
assert self.get(sock_type='unix', addr=addr)['status'] == 200

View File

@@ -2,6 +2,7 @@ import socket
import pytest
from unit.control import TestControl
from unit.option import option
class TestConfiguration(TestControl):
@@ -226,6 +227,21 @@ class TestConfiguration(TestControl):
{"*:7080": {"pass": "applications/app"}}, 'listeners'
), 'listeners no app'
def test_listeners_unix_abstract(self):
if option.system != 'Linux':
assert 'error' in self.conf(
{"unix:@sock": {"pass": "routes"}}, 'listeners'
), 'unix abstract at'
pytest.skip('not yet')
assert 'error' in self.conf(
{"unix:\0sock": {"pass": "routes"}}, 'listeners'
), 'unix abstract zero'
assert 'error' in self.conf(
{"unix:\u0000sock": {"pass": "routes"}}, 'listeners'
), 'unix abstract zero unicode'
def test_listeners_addr(self):
assert 'success' in self.try_addr("*:7080"), 'wildcard'
assert 'success' in self.try_addr("127.0.0.1:7081"), 'explicit'

109
test/test_unix_abstract.py Normal file
View File

@@ -0,0 +1,109 @@
from unit.applications.lang.python import TestApplicationPython
from unit.option import option
class TestUnixAbstract(TestApplicationPython):
prerequisites = {
'modules': {'python': 'any'},
'features': ['unix_abstract'],
}
def test_unix_abstract_source(self):
addr = '\0sock'
def source(source):
assert 'success' in self.conf(
'"' + source + '"', 'routes/0/match/source'
)
assert 'success' in self.conf(
{
"listeners": {
"127.0.0.1:7080": {"pass": "routes"},
"unix:@" + addr[1:]: {"pass": "routes"},
},
"routes": [
{
"match": {"source": "!0.0.0.0/0"},
"action": {"return": 200},
}
],
"applications": {},
}
)
assert (
self.get(sock_type='unix', addr=addr)['status'] == 200
), 'neg ipv4'
source("!::/0")
assert (
self.get(sock_type='unix', addr=addr)['status'] == 200
), 'neg ipv6'
source("unix")
assert self.get()['status'] == 404, 'ipv4'
assert self.get(sock_type='unix', addr=addr)['status'] == 200, 'unix'
def test_unix_abstract_client_ip(self):
def get_xff(xff, sock_type='ipv4'):
address = {
'ipv4': ('127.0.0.1', 7080),
'ipv6': ('::1', 7081),
'unix': ('\0sock', None),
}
(addr, port) = address[sock_type]
return self.get(
sock_type=sock_type,
addr=addr,
port=port,
headers={'Connection': 'close', 'X-Forwarded-For': xff},
)['body']
assert 'success' in self.conf(
{
"listeners": {
"127.0.0.1:7080": {
"client_ip": {
"header": "X-Forwarded-For",
"source": "unix",
},
"pass": "applications/client_ip",
},
"[::1]:7081": {
"client_ip": {
"header": "X-Forwarded-For",
"source": "unix",
},
"pass": "applications/client_ip",
},
"unix:@sock": {
"client_ip": {
"header": "X-Forwarded-For",
"source": "unix",
},
"pass": "applications/client_ip",
},
},
"applications": {
"client_ip": {
"type": self.get_application_type(),
"processes": {"spare": 0},
"path": option.test_dir + "/python/client_ip",
"working_directory": option.test_dir
+ "/python/client_ip",
"module": "wsgi",
}
},
}
)
assert get_xff('1.1.1.1') == '127.0.0.1', 'bad source ipv4'
assert get_xff('1.1.1.1', 'ipv6') == '::1', 'bad source ipv6'
for ip in [
'1.1.1.1',
'::11.22.33.44',
]:
assert get_xff(ip, 'unix') == ip, 'replace'

View File

@@ -0,0 +1,25 @@
import json
from unit.http import TestHTTP
from unit.option import option
http = TestHTTP()
def check_unix_abstract():
available = option.available
resp = http.put(
url='/config',
sock_type='unix',
addr=option.temp_dir + '/control.unit.sock',
body=json.dumps(
{
"listeners": {"unix:@sock": {"pass": "routes"}},
"routes": [],
}
),
)
if 'success' in resp['body']:
available['features']['unix_abstract'] = True

View File

@@ -51,7 +51,7 @@ class TestHTTP:
connect_args = addr if sock_type == 'unix' else (addr, port)
try:
sock.connect(connect_args)
except ConnectionRefusedError:
except (ConnectionRefusedError, FileNotFoundError):
sock.close()
pytest.fail('Client can\'t connect to the server.')