diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2019-09-04 16:04:19 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-09-04 20:13:11 +0200 |
commit | 784495f5d504bf88e414e973d5aafc4dada3873b (patch) | |
tree | 45fff035fa389b746ea2f12f6faeecdd692bf5d0 /tests/units | |
parent | 3e8fcf0b40f58ae588ea0e2712c4d111cd144900 (diff) |
#915 adds test for too large HTTP request
This test checks for too large HTTP requests, for example:
POST /clients
with a body of 4096 bytes.
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/test_0014_big_request.py | 19 |
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() |