summaryrefslogtreecommitdiffhomepage
path: root/test/test_status_tls.py
blob: e38a2f436d5044d30d2e64f3cb991333e1d9dacf (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

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