Tests: increase default "read_timeout" value to 60s.

This change is necessary to avoid errors on slow hosts.

Also slightly reworked argument passing to the recvall() function.
This commit is contained in:
Andrei Zeliankou
2020-03-23 19:18:26 +00:00
parent ac9ca6d75c
commit 48ad88ee72
2 changed files with 16 additions and 15 deletions

View File

@@ -52,7 +52,7 @@ class TestApplicationWebsocket(TestApplicationProto):
)
resp = ''
while select.select([sock], [], [], 30)[0]:
while select.select([sock], [], [], 60)[0]:
resp += sock.recv(4096).decode()
if (
@@ -70,7 +70,7 @@ class TestApplicationWebsocket(TestApplicationProto):
def serialize_close(self, code=1000, reason=''):
return struct.pack('!H', code) + reason.encode('utf-8')
def frame_read(self, sock, read_timeout=30):
def frame_read(self, sock, read_timeout=60):
def recv_bytes(sock, bytes):
data = b''
while select.select([sock], [], [], read_timeout)[0]: