29 lines
932 B
Python
29 lines
932 B
Python
from unit.applications.tls import TestApplicationTLS
|
|
|
|
|
|
class TestRoutingTLS(TestApplicationTLS):
|
|
prerequisites = {'modules': {'openssl': 'any'}}
|
|
|
|
def test_routes_match_scheme_tls(self):
|
|
self.certificate()
|
|
|
|
assert 'success' in self.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 self.get()['status'] == 200, 'http'
|
|
assert self.get_ssl(port=7081)['status'] == 201, 'https'
|