diff options
Diffstat (limited to 'test/test_tls.py')
-rw-r--r-- | test/test_tls.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test_tls.py b/test/test_tls.py index 2131bf30..d9b2e512 100644 --- a/test/test_tls.py +++ b/test/test_tls.py @@ -418,5 +418,26 @@ basicConstraints = critical,CA:TRUE""" % { self.assertEqual(resp['status'], 200, 'application respawn status') self.assertEqual(resp['body'], '0123456789', 'application respawn body') + def test_tls_url_scheme(self): + self.load('variables') + + self.assertEqual(self.post(headers={ + 'Host': 'localhost', + 'Content-Type': 'text/html', + 'Custom-Header': '', + 'Connection': 'close' + })['headers']['Wsgi-Url-Scheme'], 'http', 'url scheme http') + + self.certificate() + + self.add_tls(application='variables') + + self.assertEqual(self.post_ssl(headers={ + 'Host': 'localhost', + 'Content-Type': 'text/html', + 'Custom-Header': '', + 'Connection': 'close' + })['headers']['Wsgi-Url-Scheme'], 'https', 'url scheme https') + if __name__ == '__main__': TestUnitTLS.main() |