diff options
Diffstat (limited to 'test/python/variables/wsgi.py')
-rw-r--r-- | test/python/variables/wsgi.py | 15 |
1 files changed, 15 insertions, 0 deletions
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] |