blob: dc3d68da46a26ca02269fee32754f85299c567ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
|