diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-11-12 00:07:08 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-11-12 00:07:08 +0000 |
commit | 3278253d51666e0b83a83b10d5ff7f391cc55f3f (patch) | |
tree | 69cf50ef99d0c27a1bdea0d5219469edbb0ec207 /test/test_settings.py | |
parent | a0ee50826a4810595123460ed11629f87b1995a0 (diff) | |
download | unit-3278253d51666e0b83a83b10d5ff7f391cc55f3f.tar.gz unit-3278253d51666e0b83a83b10d5ff7f391cc55f3f.tar.bz2 |
Tests: added a test for "body_buffer_size" option.
Diffstat (limited to 'test/test_settings.py')
-rw-r--r-- | test/test_settings.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/test_settings.py b/test/test_settings.py index 30aa2bff..22830a3b 100644 --- a/test/test_settings.py +++ b/test/test_settings.py @@ -260,3 +260,41 @@ Connection: close assert 'error' in self.conf( {'http': {'max_body_size': -1}}, 'settings' ), 'settings negative value' + + def test_settings_body_buffer_size(self): + self.load('mirror') + + assert 'success' in self.conf( + { + 'http': { + 'max_body_size': 64 * 1024 * 1024, + 'body_buffer_size': 32 * 1024 * 1024, + } + }, + 'settings', + ) + + body = '0123456789abcdef' + resp = self.post(body=body) + assert bool(resp), 'response from application' + assert resp['status'] == 200, 'status' + assert resp['body'] == body, 'body' + + body = '0123456789abcdef' * 1024 * 1024 + resp = self.post(body=body, read_buffer_size=1024 * 1024) + assert bool(resp), 'response from application 2' + assert resp['status'] == 200, 'status 2' + assert resp['body'] == body, 'body 2' + + body = '0123456789abcdef' * 2 * 1024 * 1024 + resp = self.post(body=body, read_buffer_size=1024 * 1024) + assert bool(resp), 'response from application 3' + assert resp['status'] == 200, 'status 3' + assert resp['body'] == body, 'body 3' + + body = '0123456789abcdef' * 3 * 1024 * 1024 + resp = self.post(body=body, read_buffer_size=1024 * 1024) + assert bool(resp), 'response from application 4' + assert resp['status'] == 200, 'status 4' + assert resp['body'] == body, 'body 4' + |