diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-27 15:50:09 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-27 15:50:09 +0000 |
commit | 6e5b5d2a0b97f6e981fef749a267103e21898a72 (patch) | |
tree | 4360af3c04f6fe8ddc5090dfad75f8cd456968e8 /test/test_routing_tls.py | |
parent | 5f2d07019c44855deabfc3f0a83ab7506f0d0183 (diff) | |
download | unit-6e5b5d2a0b97f6e981fef749a267103e21898a72.tar.gz unit-6e5b5d2a0b97f6e981fef749a267103e21898a72.tar.bz2 |
Tests: added tests for "return" action.
Diffstat (limited to 'test/test_routing_tls.py')
-rw-r--r-- | test/test_routing_tls.py | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/test/test_routing_tls.py b/test/test_routing_tls.py index c6648095..36bd9057 100644 --- a/test/test_routing_tls.py +++ b/test/test_routing_tls.py @@ -2,9 +2,9 @@ from unit.applications.tls import TestApplicationTLS class TestRoutingTLS(TestApplicationTLS): - prerequisites = {'modules': ['python', 'openssl']} + prerequisites = {'modules': ['openssl']} - def test_routes_match_scheme(self): + def test_routes_match_scheme_tls(self): self.certificate() self.assertIn( @@ -21,35 +21,21 @@ class TestRoutingTLS(TestApplicationTLS): "routes": [ { "match": {"scheme": "http"}, - "action": {"pass": "applications/empty"}, + "action": {"return": 200}, }, { "match": {"scheme": "https"}, - "action": {"pass": "applications/204_no_content"}, + "action": {"return": 201}, }, ], - "applications": { - "empty": { - "type": "python", - "processes": {"spare": 0}, - "path": self.current_dir + "/python/empty", - "module": "wsgi", - }, - "204_no_content": { - "type": "python", - "processes": {"spare": 0}, - "path": self.current_dir - + "/python/204_no_content", - "module": "wsgi", - }, - }, + "applications": {}, } ), 'scheme configure', ) self.assertEqual(self.get()['status'], 200, 'http') - self.assertEqual(self.get_ssl(port=7081)['status'], 204, 'https') + self.assertEqual(self.get_ssl(port=7081)['status'], 201, 'https') if __name__ == '__main__': |