Index: third_party/grpc/tools/dockerfile/test/sanity/Dockerfile |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py b/third_party/grpc/tools/dockerfile/test/sanity/Dockerfile |
similarity index 58% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py |
copy to third_party/grpc/tools/dockerfile/test/sanity/Dockerfile |
index 429f58186e3fce43dc21e81e0f9d7e20c7e0bf70..1935f675602bb743a0cc7908cbcb1bc4485ab790 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py |
+++ b/third_party/grpc/tools/dockerfile/test/sanity/Dockerfile |
@@ -1,4 +1,4 @@ |
-# Copyright 2010, Google Inc. |
+# Copyright 2015-2016, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,20 +27,56 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+FROM debian:jessie |
-from mod_pywebsocket import msgutil |
+# Install Git and basic packages. |
+RUN apt-get update && apt-get install -y \ |
+ autoconf \ |
+ autotools-dev \ |
+ build-essential \ |
+ bzip2 \ |
+ ccache \ |
+ curl \ |
+ gcc \ |
+ gcc-multilib \ |
+ git \ |
+ golang \ |
+ gyp \ |
+ lcov \ |
+ libc6 \ |
+ libc6-dbg \ |
+ libc6-dev \ |
+ libgtest-dev \ |
+ libtool \ |
+ make \ |
+ perl \ |
+ strace \ |
+ python-dev \ |
+ python-setuptools \ |
+ python-yaml \ |
+ telnet \ |
+ unzip \ |
+ wget \ |
+ zip && apt-get clean |
+#================ |
+# Build profiling |
+RUN apt-get update && apt-get install -y time && apt-get clean |
-_GOODBYE_MESSAGE = 'Goodbye' |
+#======================== |
+# Sanity test dependencies |
+RUN apt-get update && apt-get install -y python-pip |
+RUN pip install simplejson mako |
+#=================== |
+# Docker "inception" |
+# Note this is quite the ugly hack. |
+# This makes sure that the docker binary we inject has its dependencies. |
+RUN apt-get install libsystemd-journal0 |
+RUN curl https://get.docker.com/ | sh |
+RUN apt-get remove --purge -y docker-engine |
-def web_socket_do_extra_handshake(request): |
- pass # Always accept. |
+RUN mkdir /var/local/jenkins |
- |
-def web_socket_transfer_data(request): |
- while True: |
- line = msgutil.receive_message(request) |
- msgutil.send_message(request, line) |
- if line == _GOODBYE_MESSAGE: |
- return |
+# Define the default command. |
+CMD ["bash"] |