Tests: test_settings_send_timeout improved.

Data length adjusts depending on socket buffer size when it's possible.
This commit is contained in:
Andrei Zeliankou
2021-05-24 05:26:15 +01:00
parent c160ea11e4
commit 1154ede862
3 changed files with 34 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
def application(env, start_response):
length = env.get('HTTP_X_LENGTH', '10')
bytes = b'X' * int(length)
start_response('200', [('Content-Length', length)])
return [bytes]