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

Unified Diff: LayoutTests/http/tests/websocket/handshake-fail-by-no-cr_wsh.py

Issue 706573003: [WebSocket] Remove layout tests about deflate-frame extension (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed #5 Created 6 years, 1 month 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
« no previous file with comments | « LayoutTests/http/tests/websocket/handshake-fail-by-no-cr-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/websocket/handshake-fail-by-no-cr_wsh.py
diff --git a/LayoutTests/http/tests/websocket/handshake-fail-by-no-cr_wsh.py b/LayoutTests/http/tests/websocket/handshake-fail-by-no-cr_wsh.py
deleted file mode 100644
index 398142bd5f853b568e0842f63917acf39a605385..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/handshake-fail-by-no-cr_wsh.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from mod_pywebsocket import handshake
-from mod_pywebsocket.handshake.hybi import compute_accept
-
-
-def web_socket_do_extra_handshake(request):
- msg = 'HTTP/1.1 101 Switching Protocols\n' # Does not end with "\r\n".
- msg += 'Upgrade: websocket\r\n'
- msg += 'Connection: Upgrade\r\n'
- msg += 'Sec-WebSocket-Accept: %s\r\n' % compute_accept(request.headers_in['Sec-WebSocket-Key'])[0]
- msg += '\r\n'
- request.connection.write(msg)
- print msg
- # Prevents pywebsocket from sending its own handshake message.
- raise handshake.AbortedByUserException('Abort the connection')
-
-
-def web_socket_transfer_data(request):
- pass
« no previous file with comments | « LayoutTests/http/tests/websocket/handshake-fail-by-no-cr-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698