summaryrefslogtreecommitdiffhomepage
path: root/test/python
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-04-05 17:55:06 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-04-05 17:55:06 +0300
commitf6c3ef7ed3efd6f63ef55a117fe475bd369d248b (patch)
treed6cf95d43ef019925353131c15ee5033c4f92f4c /test/python
parent2f3b9d458328c7c96f91259c1892810c16cbccdd (diff)
downloadunit-f6c3ef7ed3efd6f63ef55a117fe475bd369d248b.tar.gz
unit-f6c3ef7ed3efd6f63ef55a117fe475bd369d248b.tar.bz2
Tests: added Python test with not iterable object.
Diffstat (limited to 'test/python')
-rw-r--r--test/python/close/wsgi.py1
-rw-r--r--test/python/close_error/wsgi.py1
-rw-r--r--test/python/not_iterable/wsgi.py7
3 files changed, 9 insertions, 0 deletions
diff --git a/test/python/close/wsgi.py b/test/python/close/wsgi.py
index f80a34d7..c86a6097 100644
--- a/test/python/close/wsgi.py
+++ b/test/python/close/wsgi.py
@@ -5,6 +5,7 @@ class application:
def __iter__(self):
self.start('200', [(('Content-Length', '0'))])
+ yield b''
def close(self):
self.environ['wsgi.errors'].write('Close called.')
diff --git a/test/python/close_error/wsgi.py b/test/python/close_error/wsgi.py
index bd9d4d36..3e9fb63d 100644
--- a/test/python/close_error/wsgi.py
+++ b/test/python/close_error/wsgi.py
@@ -5,6 +5,7 @@ class application:
def __iter__(self):
self.start('200', [(('!', '0'))])
+ yield b''
def close(self):
self.environ['wsgi.errors'].write('Close called.')
diff --git a/test/python/not_iterable/wsgi.py b/test/python/not_iterable/wsgi.py
new file mode 100644
index 00000000..ad24cca9
--- /dev/null
+++ b/test/python/not_iterable/wsgi.py
@@ -0,0 +1,7 @@
+class application:
+ def __init__(self, environ, start_response):
+ self.environ = environ
+ self.start = start_response
+
+ def __iter__(self):
+ self.start('200', [(('Content-Length', '0'))])