summaryrefslogtreecommitdiffhomepage
path: root/test/test_routing_tls.py
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2020-09-16 21:31:15 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2020-09-16 21:31:15 +0100
commitd5e915934066c77a59d211efafca10c117b73d05 (patch)
treef894a3c09bd8aa43e87276eed377eb09f97e46fe /test/test_routing_tls.py
parent77ecb6ab49257dd662aa9c461fed3dc1d74e5092 (diff)
downloadunit-d5e915934066c77a59d211efafca10c117b73d05.tar.gz
unit-d5e915934066c77a59d211efafca10c117b73d05.tar.bz2
Tests: migrated to the pytest.
Diffstat (limited to 'test/test_routing_tls.py')
-rw-r--r--test/test_routing_tls.py48
1 files changed, 17 insertions, 31 deletions
diff --git a/test/test_routing_tls.py b/test/test_routing_tls.py
index a9b8f88d..76cfb485 100644
--- a/test/test_routing_tls.py
+++ b/test/test_routing_tls.py
@@ -7,36 +7,22 @@ class TestRoutingTLS(TestApplicationTLS):
def test_routes_match_scheme_tls(self):
self.certificate()
- self.assertIn(
- 'success',
- self.conf(
- {
- "listeners": {
- "*:7080": {"pass": "routes"},
- "*:7081": {
- "pass": "routes",
- "tls": {"certificate": 'default'},
- },
+ 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',
- )
+ },
+ "routes": [
+ {"match": {"scheme": "http"}, "action": {"return": 200}},
+ {"match": {"scheme": "https"}, "action": {"return": 201}},
+ ],
+ "applications": {},
+ }
+ ), 'scheme configure'
- self.assertEqual(self.get()['status'], 200, 'http')
- self.assertEqual(self.get_ssl(port=7081)['status'], 201, 'https')
-
-
-if __name__ == '__main__':
- TestRoutingTLS.main()
+ assert self.get()['status'] == 200, 'http'
+ assert self.get_ssl(port=7081)['status'] == 201, 'https'