summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0014_big_request.py
blob: 48f0cb26bdd83421fccb34e9ff3d9061b99eda57 (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 = 65536

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