summaryrefslogtreecommitdiffhomepage
path: root/test/test_perl_application.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-12-24 20:35:18 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-12-24 20:35:18 +0300
commitf9a3328a2510e7237b8bd8f35a57914f6a22bbd2 (patch)
tree4d1d9dcd60dcf7ed0ca9f5ce3d29fd91ae007998 /test/test_perl_application.py
parentfac0ef29d564dbd8f59c6c8aaa89f0d656f1f786 (diff)
downloadunit-f9a3328a2510e7237b8bd8f35a57914f6a22bbd2.tar.gz
unit-f9a3328a2510e7237b8bd8f35a57914f6a22bbd2.tar.bz2
Tests: more QUERY_STRING tests.
Diffstat (limited to 'test/test_perl_application.py')
-rw-r--r--test/test_perl_application.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_perl_application.py b/test/test_perl_application.py
index c9cb3f0c..2dfae66c 100644
--- a/test/test_perl_application.py
+++ b/test/test_perl_application.py
@@ -55,6 +55,25 @@ class TestUnitPerlApplication(unit.TestUnitApplicationPerl):
self.assertEqual(resp['headers']['Query-String'], 'var1=val1&var2=val2',
'Query-String header')
+ def test_perl_application_query_string_empty(self):
+ self.load('query_string')
+
+ resp = self.get(url='/?')
+
+ self.assertEqual(resp['status'], 200, 'query string empty status')
+ self.assertEqual(resp['headers']['Query-String'], '',
+ 'query string empty')
+
+ @unittest.expectedFailure
+ def test_perl_application_query_string_absent(self):
+ self.load('query_string')
+
+ resp = self.get()
+
+ self.assertEqual(resp['status'], 200, 'query string absent status')
+ self.assertEqual(resp['headers']['Query-String'], '',
+ 'query string absent')
+
@unittest.expectedFailure
def test_perl_application_server_port(self):
self.load('server_port')