summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_application.py
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2022-05-09 10:14:29 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2022-05-09 10:14:29 +0100
commit03a7701133887dbf7e8eb8d80c4d2473f97477a7 (patch)
tree40575eaa439e6ffc0e9170cf5f9e5d4746f9852a /test/test_python_application.py
parent9c276d4d609577d574de6f1cc6fbe8101fa8536a (diff)
downloadunit-03a7701133887dbf7e8eb8d80c4d2473f97477a7.tar.gz
unit-03a7701133887dbf7e8eb8d80c4d2473f97477a7.tar.bz2
Tests: added more tests with reconfiguration.
Diffstat (limited to 'test/test_python_application.py')
-rw-r--r--test/test_python_application.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/test_python_application.py b/test/test_python_application.py
index 9463b792..befbd4d8 100644
--- a/test/test_python_application.py
+++ b/test/test_python_application.py
@@ -293,36 +293,6 @@ custom-header: BLAH
assert resp == {}, 'reconfigure 2 keep-alive 3'
- def test_python_keepalive_reconfigure_3(self):
- self.load('empty')
-
- assert self.get()['status'] == 200, 'init'
-
- (_, sock) = self.http(
- b"""GET / HTTP/1.1
-""",
- start=True,
- raw=True,
- no_recv=True,
- )
-
- assert self.get()['status'] == 200
-
- assert 'success' in self.conf(
- {"listeners": {}, "applications": {}}
- ), 'reconfigure 3 clear configuration'
-
- resp = self.http(
- b"""Host: localhost
-Connection: close
-
-""",
- sock=sock,
- raw=True,
- )
-
- assert resp['status'] == 200, 'reconfigure 3'
-
def test_python_atexit(self):
self.load('atexit')