Tests: added tests for basic statistics.
This commit is contained in:
30
test/test_status_tls.py
Normal file
30
test/test_status_tls.py
Normal 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
|
||||
Reference in New Issue
Block a user