Tests: added tests for basic statistics.

This commit is contained in:
Andrei Zeliankou
2022-09-05 23:06:16 +01:00
parent 3ea113fcb7
commit 6915ce1d1c
4 changed files with 301 additions and 0 deletions

30
test/test_status_tls.py Normal file
View File

@@ -0,0 +1,30 @@
from unit.applications.tls import TestApplicationTLS
from unit.status import Status
class TestStatusTLS(TestApplicationTLS):
prerequisites = {'modules': {'openssl': 'any'}}
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