Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py

Issue 101143002: Remove hybi sub directory for WebSocket layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py
deleted file mode 100644
index b6f3e58ee4513d5ea9f747c23b5a080ca193ba63..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py
+++ /dev/null
@@ -1,34 +0,0 @@
-from mod_pywebsocket import msgutil
-
-
-def web_socket_do_extra_handshake(request):
- pass
-
-
-def web_socket_transfer_data(request):
- # send_message's third argument corresponds to "fin" bit;
- # it is set to True if this frame is the final fragment of a message.
- msgutil.send_message(request, 'First ', False)
- msgutil.send_message(request, 'message', True)
-
- # Empty fragment is allowed.
- msgutil.send_message(request, '', False)
- msgutil.send_message(request, 'Second ', False)
- msgutil.send_message(request, '', False)
- msgutil.send_message(request, 'message', False)
- msgutil.send_message(request, '', True)
-
- # Fragment aggressively.
- msgutil.send_message(request, 'T', False)
- msgutil.send_message(request, 'h', False)
- msgutil.send_message(request, 'i', False)
- msgutil.send_message(request, 'r', False)
- msgutil.send_message(request, 'd', False)
- msgutil.send_message(request, ' ', False)
- msgutil.send_message(request, 'm', False)
- msgutil.send_message(request, 'e', False)
- msgutil.send_message(request, 's', False)
- msgutil.send_message(request, 's', False)
- msgutil.send_message(request, 'a', False)
- msgutil.send_message(request, 'g', False)
- msgutil.send_message(request, 'e', True)

Powered by Google App Engine
This is Rietveld 408576698