From 72b56388b765686cc947bd84e6bc569316ad8de2 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Thu, 22 Aug 2019 18:28:23 +0300 Subject: Tests: Node.js websockets tests tuned. --- test/unit/applications/websockets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/unit/applications/websockets.py') diff --git a/test/unit/applications/websockets.py b/test/unit/applications/websockets.py index 7b516239..d64b960c 100644 --- a/test/unit/applications/websockets.py +++ b/test/unit/applications/websockets.py @@ -57,7 +57,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=1): + def frame_read(self, sock, read_timeout=5): def recv_bytes(sock, bytes): data = b'' while select.select([sock], [], [], read_timeout)[0]: @@ -204,7 +204,7 @@ class TestApplicationWebsocket(TestApplicationProto): op_code = self.OP_CONT pos = end - def message_read(self, sock, read_timeout=1): + def message_read(self, sock, read_timeout=5): frame = self.frame_read(sock, read_timeout=read_timeout) while(not frame['fin']): -- cgit