Index: third_party/grpc/tools/dockerfile/grpc_interop_cxx/Dockerfile |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py b/third_party/grpc/tools/dockerfile/grpc_interop_cxx/Dockerfile |
similarity index 60% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
copy to third_party/grpc/tools/dockerfile/grpc_interop_cxx/Dockerfile |
index 4206831cb5135d5e03928bf9d995b2bf9e156018..58a8c32e344fa4944c62e233eeb05151279be998 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
+++ b/third_party/grpc/tools/dockerfile/grpc_interop_cxx/Dockerfile |
@@ -1,4 +1,4 @@ |
-# Copyright 2012, Google Inc. |
+# Copyright 2015-2016, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,22 +27,49 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+# A work-in-progress Dockerfile that allows running gRPC test suites |
+# inside a docker container. |
-_GOODBYE_MESSAGE = u'Goodbye' |
+FROM debian:jessie |
+# Install Git. |
+RUN apt-get update && apt-get install -y \ |
+ autoconf \ |
+ autotools-dev \ |
+ build-essential \ |
+ bzip2 \ |
+ ccache \ |
+ curl \ |
+ gcc \ |
+ gcc-multilib \ |
+ git \ |
+ gyp \ |
+ libc6 \ |
+ libc6-dbg \ |
+ libc6-dev \ |
+ libgtest-dev \ |
+ libtool \ |
+ make \ |
+ strace \ |
+ python-dev \ |
+ python-setuptools \ |
+ python-yaml \ |
+ telnet \ |
+ unzip \ |
+ wget \ |
+ zip && apt-get clean |
-def web_socket_do_extra_handshake(request): |
- request.ws_extension_processors = [] |
+# Prepare ccache |
+RUN ln -s /usr/bin/ccache /usr/local/bin/gcc |
+RUN ln -s /usr/bin/ccache /usr/local/bin/g++ |
+RUN ln -s /usr/bin/ccache /usr/local/bin/cc |
+RUN ln -s /usr/bin/ccache /usr/local/bin/c++ |
+RUN ln -s /usr/bin/ccache /usr/local/bin/clang |
+RUN ln -s /usr/bin/ccache /usr/local/bin/clang++ |
+################## |
+# C++ dependencies |
+RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev clang |
-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) |
+# Define the default command. |
+CMD ["bash"] |