Files
nginx-unit/test/test_status_tls.py
Andrei Zeliankou ce2405ec3d Tests: prerequisites checking reworked.
Prerequisites check moved to the module level to simplify class structure.
Discovery and prerequisites checks functions moved to the separate files.
Introduced "require" fixture to provide per-test requirements check.
2023-06-12 14:16:59 +01:00

31 lines
844 B
Python

from unit.applications.tls import TestApplicationTLS
from unit.status import Status
prerequisites = {'modules': {'openssl': 'any'}}
class TestStatusTLS(TestApplicationTLS):
def test_status_tls_requests(self):
self.certificate()
assert 'success' in self.conf(
{
"listeners": {
"*:7080": {"pass": "routes"},
"*:7081": {
"pass": "routes",
"tls": {"certificate": "default"},
},
},
"routes": [{"action": {"return": 200}}],
"applications": {},
}
)
Status.init()
assert self.get()['status'] == 200
assert self.get_ssl(port=7081)['status'] == 200
assert Status.get('/requests/total') == 2