From 09f2009df564ab2063ee4713ba24247039945146 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 20 Feb 2018 20:34:41 +0300 Subject: Tests: reworked python tests with application. --- test/python/variables/wsgi.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/python/variables/wsgi.py (limited to 'test/python/variables/wsgi.py') diff --git a/test/python/variables/wsgi.py b/test/python/variables/wsgi.py new file mode 100644 index 00000000..1d4d397d --- /dev/null +++ b/test/python/variables/wsgi.py @@ -0,0 +1,15 @@ +def application(environ, start_response): + + content_length = int(environ.get('CONTENT_LENGTH', 0)) + body = bytes(environ['wsgi.input'].read(content_length)) + + start_response('200', [ + ('Content-Type', environ.get('CONTENT_TYPE')), + ('Content-Length', str(len(body))), + ('Request-Method', environ.get('REQUEST_METHOD')), + ('Request-Uri', environ.get('REQUEST_URI')), + ('Http-Host', environ.get('HTTP_HOST')), + ('Server-Protocol', environ.get('SERVER_PROTOCOL')), + ('Custom-Header', environ.get('HTTP_CUSTOM_HEADER')) + ]) + return [body] -- cgit