Tests: fixed test_tls_reconfigure.
Previously, order of applying TLS configuration and sending partial request to the application was uncertain. These changes make sure that client-application connection was established before reconfiguration. Additionally, added test to check that non-TLS connection works correctly after reconfiguration.
This commit is contained in:
@@ -306,23 +306,25 @@ basicConstraints = critical,CA:TRUE""" % {
|
|||||||
self.assertEqual(self.get_ssl()['status'], 200,
|
self.assertEqual(self.get_ssl()['status'], 200,
|
||||||
'certificate chain intermediate server')
|
'certificate chain intermediate server')
|
||||||
|
|
||||||
|
@unittest.expectedFailure
|
||||||
def test_tls_reconfigure(self):
|
def test_tls_reconfigure(self):
|
||||||
self.load('empty')
|
self.load('empty')
|
||||||
|
|
||||||
self.certificate()
|
self.certificate()
|
||||||
|
|
||||||
(resp, sock) = self.http(b"""GET / HTTP/1.1
|
(resp, sock) = self.get(headers={
|
||||||
""", start=True, raw=True, no_recv=True)
|
'Connection': 'keep-alive',
|
||||||
|
'Host': 'localhost'
|
||||||
|
}, start=True)
|
||||||
|
|
||||||
|
self.assertEqual(resp['status'], 200, 'initial status')
|
||||||
|
|
||||||
self.add_tls()
|
self.add_tls()
|
||||||
|
|
||||||
resp = self.http(b"""Host: localhost
|
self.assertEqual(self.get(sock=sock)['status'], 200,
|
||||||
Connection: close
|
'reconfigure status')
|
||||||
|
self.assertEqual(self.get_ssl()['status'], 200,
|
||||||
""", sock=sock, raw=True)
|
'reconfigure tls status')
|
||||||
|
|
||||||
self.assertEqual(resp['status'], 200, 'update status')
|
|
||||||
self.assertEqual(self.get_ssl()['status'], 200, 'update tls status')
|
|
||||||
|
|
||||||
def test_tls_keepalive(self):
|
def test_tls_keepalive(self):
|
||||||
self.load('mirror')
|
self.load('mirror')
|
||||||
|
|||||||
Reference in New Issue
Block a user