Home
last modified time | relevance | path

Searched refs:OP_PONG (Results 1 – 4 of 4) sorted by relevance

/unit/test/
H A Dtest_java_websockets.py396 op_pong = self.ws.OP_PONG
428 self.ws.frame_write(sock, self.ws.OP_PONG, '')
444 self.check_frame(frame, True, self.ws.OP_PONG, payload)
460 self.check_frame(frame, True, self.ws.OP_PONG, f'payload-{i}')
749 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
764 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
784 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
920 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
923 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 2!')
939 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
[all …]
H A Dtest_node_websockets.py415 op_pong = self.ws.OP_PONG
447 self.ws.frame_write(sock, self.ws.OP_PONG, '')
463 self.check_frame(frame, True, self.ws.OP_PONG, payload)
479 self.check_frame(frame, True, self.ws.OP_PONG, f'payload-{i}')
768 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
783 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
803 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
939 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
942 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 2!')
958 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
[all …]
H A Dtest_asgi_websockets.py469 op_pong = self.ws.OP_PONG
501 self.ws.frame_write(sock, self.ws.OP_PONG, '')
517 self.check_frame(frame, True, self.ws.OP_PONG, payload)
533 self.check_frame(frame, True, self.ws.OP_PONG, f'payload-{i}')
822 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
837 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
857 self.check_frame(frame, True, self.ws.OP_PONG, ping_payload)
993 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
996 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 2!')
1012 self.check_frame(frame, True, self.ws.OP_PONG, 'pongme 1!')
[all …]
/unit/test/unit/applications/
H A Dwebsockets.py21 OP_PONG = 0x0A variable in TestApplicationWebsocket