summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0014_big_request.py
blob: 2d9d8616b9e0a329c791e195c80933c37bb1ba52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import requests
import unittest

MAX_REQ_SIZE = 131072

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()