| Index: third_party/grpc/tools/distrib/docker_for_windows.rb
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/tools/distrib/docker_for_windows.rb
|
| old mode 100644
|
| new mode 100755
|
| similarity index 64%
|
| copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| copy to third_party/grpc/tools/distrib/docker_for_windows.rb
|
| index 1b02d66267e294ce83977dac64f075981705647c..d72765dde50cc053158d77a6d82a193d6e2ebf98
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| +++ b/third_party/grpc/tools/distrib/docker_for_windows.rb
|
| @@ -1,4 +1,5 @@
|
| -# Copyright 2011, Google Inc.
|
| +#!/usr/bin/env ruby
|
| +# Copyright 2016, Google Inc.
|
| # All rights reserved.
|
| #
|
| # Redistribution and use in source and binary forms, with or without
|
| @@ -27,27 +28,34 @@
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| +def grpc_root()
|
| + File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
|
| +end
|
|
|
| -import logging
|
| -_GOODBYE_MESSAGE = u'Goodbye'
|
| +def docker_for_windows_image()
|
| + require 'digest'
|
|
|
| + dockerfile = File.join(grpc_root, 'third_party', 'rake-compiler-dock', 'Dockerfile')
|
| + dockerpath = File.dirname(dockerfile)
|
| + version = Digest::SHA1.file(dockerfile).hexdigest
|
| + image_name = 'grpc/rake-compiler-dock:' + version
|
| + cmd = "docker build -t #{image_name} --file #{dockerfile} #{dockerpath}"
|
| + puts cmd
|
| + system cmd
|
| + raise "Failed to build the docker image." unless $? == 0
|
| + image_name
|
| +end
|
|
|
| -def web_socket_do_extra_handshake(request):
|
| - pass # Always accept.
|
| +def docker_for_windows(args)
|
| + require 'rake_compiler_dock'
|
|
|
| + args = 'bash -l' if args.empty?
|
|
|
| -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)
|
| + ENV['RAKE_COMPILER_DOCK_IMAGE'] = docker_for_windows_image
|
|
|
| + RakeCompilerDock.sh args
|
| +end
|
|
|
| -def web_socket_passive_closing_handshake(request):
|
| - return request.ws_close_code, request.ws_close_reason
|
| +if __FILE__ == $0
|
| + docker_for_windows $*.join(' ')
|
| +end
|
|
|