Tests: more Python tests.

This commit is contained in:
Andrey Zelenkov
2018-04-02 17:03:41 +03:00
parent efb71121b9
commit a01a98ce36
17 changed files with 215 additions and 69 deletions

View File

@@ -34,7 +34,12 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython):
'Request-Uri': '/',
'Http-Host': 'localhost',
'Server-Protocol': 'HTTP/1.1',
'Custom-Header': 'blah'
'Custom-Header': 'blah',
'Wsgi-Version': '(1, 0)',
'Wsgi-Url-Scheme': 'http',
'Wsgi-Multithread': 'False',
'Wsgi-Multiprocess': 'True',
'Wsgi-Run-Once': 'False'
}, 'headers')
self.assertEqual(resp['body'], body, 'body')
@@ -83,5 +88,144 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython):
self.assertIsNotNone(self.search_in_log(r'RuntimeError'),
'ctx iter atexit')
def test_python_keepalive_body(self):
self.load('mirror')
(resp, sock) = self.post(headers={
'Connection': 'keep-alive',
'Content-Type': 'text/html',
'Host': 'localhost'
}, start=True, body='0123456789' * 500)
self.assertEqual(resp['body'], '0123456789' * 500, 'keep-alive 1')
resp = self.post(headers={
'Connection': 'close',
'Content-Type': 'text/html',
'Host': 'localhost'
}, sock=sock, body='0123456789')
self.assertEqual(resp['body'], '0123456789', 'keep-alive 2')
def test_python_atexit(self):
self.skip_alerts.append(r'sendmsg.+failed')
self.load('atexit')
self.get()
self.conf({
"listeners": {},
"applications": {}
})
self.stop()
self.assertIsNotNone(self.search_in_log(r'At exit called\.'), 'atexit')
@unittest.expectedFailure
def test_python_application_start_response_exit(self):
self.load('start_response_exit')
self.assertEqual(self.get()['status'], 500, 'start response exit')
@unittest.expectedFailure
def test_python_application_input_iter(self):
self.load('input_iter')
body = '0123456789'
self.assertEqual(self.post(body=body)['body'], body, 'input iter')
@unittest.expectedFailure
def test_python_application_input_read_length(self):
self.load('input_read_length')
body = '0123456789'
resp = self.post(headers={
'Host': 'localhost',
'Input-Length': '5',
'Connection': 'close'
}, body=body)
self.assertEqual(resp['body'], body[:5], 'input read length lt body')
resp = self.post(headers={
'Host': 'localhost',
'Input-Length': '15',
'Connection': 'close'
}, body=body)
self.assertEqual(resp['body'], body, 'input read length gt body')
resp = self.post(headers={
'Host': 'localhost',
'Input-Length': '0',
'Connection': 'close'
}, body=body)
self.assertEqual(resp['body'], '', 'input read length zero')
resp = self.post(headers={
'Host': 'localhost',
'Input-Length': '-1',
'Connection': 'close'
}, body=body)
self.assertEqual(resp['body'], body, 'input read length negative')
@unittest.expectedFailure
def test_python_application_errors_write(self):
self.load('errors_write')
self.get()
self.stop()
self.assertIsNotNone(
self.search_in_log(r'\[error\].+Error in application\.'),
'errors write')
def test_python_application_body_array(self):
self.load('body_array')
self.assertEqual(self.get()['body'], '0123456789', 'body array')
def test_python_application_body_io(self):
self.load('body_io')
self.assertEqual(self.get()['body'], '0123456789', 'body io')
def test_python_application_body_io_file(self):
self.load('body_io_file')
self.assertEqual(self.get()['body'], 'body\n', 'body io file')
@unittest.expectedFailure
def test_python_application_syntax_error(self):
self.skip_alerts.append(r'Python failed to import module "wsgi"')
self.load('syntax_error')
self.assertEqual(self.get()['status'], 500, 'syntax error')
def test_python_application_close(self):
self.load('close')
self.get()
self.stop()
self.assertIsNotNone(self.search_in_log(r'Close called\.'), 'close')
def test_python_application_close_error(self):
self.load('close_error')
self.get()
self.stop()
self.assertIsNotNone(self.search_in_log(r'Close called\.'),
'close error')
if __name__ == '__main__':
unittest.main()