summaryrefslogtreecommitdiffstats
path: root/dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py')
-rw-r--r--dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py b/dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py
new file mode 100644
index 000000000..024e3f4d0
--- /dev/null
+++ b/dom/base/test/websocket_hybi/file_check-binary-messages_wsh.py
@@ -0,0 +1,21 @@
+from mod_pywebsocket import common
+from mod_pywebsocket import msgutil
+
+
+def web_socket_do_extra_handshake(request):
+ pass # Always accept.
+
+
+def web_socket_transfer_data(request):
+ expected_messages = ['Hello, world!', '', all_distinct_bytes()]
+
+ for test_number, expected_message in enumerate(expected_messages):
+ message = msgutil.receive_message(request)
+ if type(message) == str and message == expected_message:
+ msgutil.send_message(request, 'PASS: Message #%d.' % test_number)
+ else:
+ msgutil.send_message(request, 'FAIL: Message #%d: Received unexpected message: %r' % (test_number, message))
+
+
+def all_distinct_bytes():
+ return ''.join([chr(i) for i in xrange(256)])