xref: /unit/test/python/variables/wsgi.py (revision 674:092a1befab12)
1def application(environ, start_response):
2
3    content_length = int(environ.get('CONTENT_LENGTH', 0))
4    body = bytes(environ['wsgi.input'].read(content_length))
5
6    start_response('200', [
7        ('Content-Type', environ.get('CONTENT_TYPE')),
8        ('Content-Length', str(len(body))),
9        ('Request-Method', environ.get('REQUEST_METHOD')),
10        ('Request-Uri', environ.get('REQUEST_URI')),
11        ('Http-Host', environ.get('HTTP_HOST')),
12        ('Server-Protocol', environ.get('SERVER_PROTOCOL')),
13        ('Server-Software', environ.get('SERVER_SOFTWARE')),
14        ('Custom-Header', environ.get('HTTP_CUSTOM_HEADER')),
15        ('Wsgi-Version', str(environ['wsgi.version'])),
16        ('Wsgi-Url-Scheme', environ['wsgi.url_scheme']),
17        ('Wsgi-Multithread', str(environ['wsgi.multithread'])),
18        ('Wsgi-Multiprocess', str(environ['wsgi.multiprocess'])),
19        ('Wsgi-Run-Once', str(environ['wsgi.run_once']))
20    ])
21    return [body]
22