Index: third_party/grpc/src/ruby/bin/interop/interop_client.rb |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py b/third_party/grpc/src/ruby/bin/interop/interop_client.rb |
old mode 100644 |
new mode 100755 |
similarity index 62% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
copy to third_party/grpc/src/ruby/bin/interop/interop_client.rb |
index 4206831cb5135d5e03928bf9d995b2bf9e156018..239083f37f6e239cdc702ded10bd03a5c54428cb |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
+++ b/third_party/grpc/src/ruby/bin/interop/interop_client.rb |
@@ -1,4 +1,6 @@ |
-# Copyright 2012, Google Inc. |
+#!/usr/bin/env ruby |
+ |
+# Copyright 2015, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,22 +29,23 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+# ####################################################################### |
+# DEPRECATED: The behaviour in this file has been moved to pb/test/client.rb |
+# |
+# This file remains to support existing tools and scripts that use it. |
+# ###################################################################### |
+# |
+# interop_client is a testing tool that accesses a gRPC interop testing |
+# server and runs a test on it. |
+# |
+# Helps validate interoperation b/w different gRPC implementations. |
+# |
+# Usage: $ path/to/interop_client.rb --server_host=<hostname> \ |
+# --server_port=<port> \ |
+# --test_case=<testcase_name> |
-_GOODBYE_MESSAGE = u'Goodbye' |
- |
- |
-def web_socket_do_extra_handshake(request): |
- request.ws_extension_processors = [] |
- |
+this_dir = File.expand_path(File.dirname(__FILE__)) |
+pb_dir = File.join(File.dirname(File.dirname(this_dir)), 'pb') |
+$LOAD_PATH.unshift(pb_dir) unless $LOAD_PATH.include?(pb_dir) |
-def web_socket_transfer_data(request): |
- while True: |
- line = request.ws_stream.receive_message() |
- if line is None: |
- return |
- if isinstance(line, unicode): |
- request.ws_stream.send_message(line, binary=False) |
- if line == _GOODBYE_MESSAGE: |
- return |
- else: |
- request.ws_stream.send_message(line, binary=True) |
+require 'test/client' |