Tests: more QUERY_STRING tests.
This commit is contained in:
4
test/php/query_string/index.php
Normal file
4
test/php/query_string/index.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
header('Content-Length: 0');
|
||||
header('Query-String: ' . $_SERVER['QUERY_STRING']);
|
||||
?>
|
||||
@@ -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')
|
||||
|
||||
@@ -48,6 +48,33 @@ class TestUnitPHPApplication(unit.TestUnitApplicationPHP):
|
||||
}, 'headers')
|
||||
self.assertEqual(resp['body'], body, 'body')
|
||||
|
||||
def test_php_application_query_string(self):
|
||||
self.load('query_string')
|
||||
|
||||
resp = self.get(url='/?var1=val1&var2=val2')
|
||||
|
||||
self.assertEqual(resp['headers']['Query-String'], 'var1=val1&var2=val2',
|
||||
'query string')
|
||||
|
||||
def test_php_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_php_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')
|
||||
|
||||
def test_php_application_phpinfo(self):
|
||||
self.load('phpinfo')
|
||||
|
||||
|
||||
@@ -53,6 +53,25 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython):
|
||||
self.assertEqual(resp['headers']['Query-String'], 'var1=val1&var2=val2',
|
||||
'Query-String header')
|
||||
|
||||
def test_python_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_python_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_python_application_server_port(self):
|
||||
self.load('server_port')
|
||||
|
||||
@@ -56,6 +56,25 @@ class TestUnitRubyApplication(unit.TestUnitApplicationRuby):
|
||||
self.assertEqual(resp['headers']['Query-String'], 'var1=val1&var2=val2',
|
||||
'Query-String header')
|
||||
|
||||
def test_ruby_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_ruby_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_ruby_application_server_port(self):
|
||||
self.load('server_port')
|
||||
|
||||
Reference in New Issue
Block a user