From 569a907dbb55f5590d7cda1684780a1cafb0563d Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 29 May 2018 15:29:01 +0300 Subject: Tests: configuration of environment variables. --- test/python/environment/wsgi.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/python/environment/wsgi.py (limited to 'test/python') diff --git a/test/python/environment/wsgi.py b/test/python/environment/wsgi.py new file mode 100644 index 00000000..fa3a1d2b --- /dev/null +++ b/test/python/environment/wsgi.py @@ -0,0 +1,13 @@ +import os + +def application(env, start_response): + body = '' + vars = env.get('HTTP_X_VARIABLES').split(',') + + for var in vars: + if var in os.environ: + body += str(os.environ[var]) + ',' + + body = body.encode() + start_response('200', [('Content-Length', str(len(body)))]) + return body -- cgit