diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-08-08 15:30:05 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-08-08 15:30:05 +0300 |
commit | eee6102a281acb4115b4b567541670d5c5efa7c3 (patch) | |
tree | d68b90ad7a5c73d59b580ae607bfaf8205944324 /test/test_python_application.py | |
parent | c67fbf01ad322a773cf4fb4bf92071d6224b5bd4 (diff) | |
download | unit-eee6102a281acb4115b4b567541670d5c5efa7c3.tar.gz unit-eee6102a281acb4115b4b567541670d5c5efa7c3.tar.bz2 |
Tests: more reconfigure tests.
Diffstat (limited to '')
-rw-r--r-- | test/test_python_application.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/test/test_python_application.py b/test/test_python_application.py index 3a3921d9..1cfc1e18 100644 --- a/test/test_python_application.py +++ b/test/test_python_application.py @@ -161,6 +161,59 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython): "max": (i % 4) + 1 }, '/applications/mirror/processes'), 'reconfigure 3') + def test_python_keepalive_reconfigure_2(self): + self.skip_alerts.append(r'sendmsg.+failed') + self.load('mirror') + + body = '0123456789' + + (resp, sock) = self.post(headers={ + 'Connection': 'keep-alive', + 'Content-Type': 'text/html', + 'Host': 'localhost' + }, start=True, body=body) + + self.assertEqual(resp['body'], body, 'reconfigure 2 keep-alive 1') + + self.load('empty') + + (resp, sock) = self.post(headers={ + 'Connection': 'close', + 'Content-Type': 'text/html', + 'Host': 'localhost' + }, start=True, sock=sock, body=body) + + self.assertEqual(resp['status'], 200, 'reconfigure 2 keep-alive 2') + self.assertEqual(resp['body'], '', 'reconfigure 2 keep-alive 2 body') + + self.assertIn('success', self.conf({ + "listeners": {}, + "applications": {} + }), 'reconfigure 2 clear configuration') + + resp = self.get(sock=sock) + + self.assertEqual(resp, {}, 'reconfigure 2 keep-alive 3') + + @unittest.expectedFailure + def test_python_keepalive_reconfigure_3(self): + self.load('empty') + + (resp, sock) = self.http(b"""GET / HTTP/1.1 +""", start=True, raw=True) + + self.assertIn('success', self.conf({ + "listeners": {}, + "applications": {} + }), 'reconfigure 3 clear configuration') + + resp = self.http(b"""Host: localhost +Connection: close + +""", sock=sock, raw=True) + + self.assertEqual(resp['status'], 200, 'reconfigure 3') + def test_python_atexit(self): self.skip_alerts.append(r'sendmsg.+failed') self.load('atexit') |