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

@@ -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'