summaryrefslogtreecommitdiffhomepage
path: root/test/test_routing_tls.py
blob: 4a97c8e4a4e8b56de3002034c3452f8a6202f143 (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
from unit.applications.tls import ApplicationTLS

prerequisites = {'modules': {'openssl': 'any'}}

client = ApplicationTLS()


def test_routes_match_scheme_tls():
    client.certificate()

    assert 'success' in client.conf(
        {
            "listeners": {
                "*:7080": {"pass": "routes"},
                "*:7081": {
                    "pass": "routes",
                    "tls": {"certificate": 'default'},
                },
            },
            "routes": [
                {"match": {"scheme": "http"}, "action": {"return": 200}},
                {"match": {"scheme": "https"}, "action": {"return": 201}},
            ],
            "applications": {},
        }
    ), 'scheme configure'

    assert client.get()['status'] == 200, 'http'
    assert client.get_ssl(port=7081)['status'] == 201, 'https'