summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/units/test_0014_big_request.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/units/test_0014_big_request.py b/tests/units/test_0014_big_request.py
new file mode 100644
index 0000000..5e5e2d7
--- /dev/null
+++ b/tests/units/test_0014_big_request.py
@@ -0,0 +1,19 @@
+import requests
+import unittest
+
+MAX_REQ_SIZE = 4096
+
+class TestBigRequest(unittest.TestCase):
+
+ def setUp(self):
+ self.url = 'http://localhost:8888/clients'
+ self.data = 'X' * MAX_REQ_SIZE
+
+ def test_post(self):
+ with self.assertRaises(requests.exceptions.ConnectionError) as context:
+ requests.post(self.url, data=self.data)
+
+ self.assertTrue('Connection reset by peer' in str(context.exception))
+
+if __name__ == '__main__':
+ unittest.main()