Index: Tools/Scripts/new-run-webkit-websocketserver |
diff --git a/Tools/Scripts/new-run-webkit-websocketserver b/Tools/Scripts/new-run-webkit-websocketserver |
deleted file mode 100755 |
index 15ed1f99efed7be984835a9c4470ddb1f45ec0ba..0000000000000000000000000000000000000000 |
--- a/Tools/Scripts/new-run-webkit-websocketserver |
+++ /dev/null |
@@ -1,115 +0,0 @@ |
-#!/usr/bin/env python |
-# Copyright (C) 2012 Google Inc. All rights reserved. |
-# |
-# Redistribution and use in source and binary forms, with or without |
-# modification, are permitted provided that the following conditions are |
-# met: |
-# |
-# * Redistributions of source code must retain the above copyright |
-# notice, this list of conditions and the following disclaimer. |
-# * Redistributions in binary form must reproduce the above |
-# copyright notice, this list of conditions and the following disclaimer |
-# in the documentation and/or other materials provided with the |
-# distribution. |
-# * Neither the name of Google Inc. nor the names of its |
-# contributors may be used to endorse or promote products derived from |
-# this software without specific prior written permission. |
-# |
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
-# (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 utility script for starting and stopping the web socket server with the |
- same configuration as used in the layout tests.""" |
- |
-import logging |
-import optparse |
-import tempfile |
- |
-from webkitpy.common.host import Host |
-from webkitpy.layout_tests.servers import websocket_server |
- |
- |
-def main(): |
- option_parser = optparse.OptionParser() |
- option_parser.add_option('--server', type='choice', |
- choices=['start', 'stop'], default='start', |
- help='Server action (start|stop).') |
- option_parser.add_option('-p', '--port', dest='port', |
- default=None, help='Port to listen on.') |
- option_parser.add_option('-r', '--root', |
- help='Absolute path to DocumentRoot ' |
- '(overrides layout test roots).') |
- option_parser.add_option('-t', '--tls', dest='use_tls', |
- action='store_true', |
- default=False, help='use TLS (wss://).') |
- option_parser.add_option('-k', '--private_key', dest='private_key', |
- default='', help='TLS private key file.') |
- option_parser.add_option('-c', '--certificate', dest='certificate', |
- default='', help='TLS certificate file.') |
- option_parser.add_option('--ca-certificate', dest='ca_certificate', |
- default='', help='TLS CA certificate file for ' |
- 'client authentication.') |
- option_parser.add_option('--chromium', action='store_true', |
- dest='chromium', |
- default=False, |
- help='Use the Chromium port.') |
- option_parser.add_option('--register_cygwin', action="store_true", |
- dest="register_cygwin", |
- help='Register Cygwin paths (on Win try bots).') |
- option_parser.add_option('--pidfile', help='path to pid file.') |
- option_parser.add_option('--output-dir', dest='output_dir', |
- default=None, help='output directory.') |
- option_parser.add_option('-v', '--verbose', action='store_true', |
- default=False, |
- help='Include debug-level logging.') |
- options, args = option_parser.parse_args() |
- |
- if not options.port: |
- if options.use_tls: |
- # FIXME: We shouldn't grab at this private variable. |
- options.port = websocket_server._DEFAULT_WSS_PORT |
- else: |
- # FIXME: We shouldn't grab at this private variable. |
- options.port = websocket_server._DEFAULT_WS_PORT |
- |
- if not options.output_dir: |
- options.output_dir = tempfile.gettempdir() |
- |
- kwds = {'port': options.port, 'use_tls': options.use_tls} |
- if options.root: |
- kwds['root'] = options.root |
- if options.private_key: |
- kwds['private_key'] = options.private_key |
- if options.certificate: |
- kwds['certificate'] = options.certificate |
- if options.ca_certificate: |
- kwds['ca_certificate'] = options.ca_certificate |
- if options.pidfile: |
- kwds['pidfile'] = options.pidfile |
- |
- host = Host() |
- # FIXME: Make this work with other ports as well. |
- port_obj = host.port_factory.get(port_name='chromium', options=options) |
- pywebsocket = websocket_server.PyWebSocket(port_obj, options.output_dir, **kwds) |
- |
- log_level = logging.WARN |
- if options.verbose: |
- log_level = logging.DEBUG |
- logging.basicConfig(level=log_level) |
- |
- if 'start' == options.server: |
- pywebsocket.start() |
- else: |
- pywebsocket.stop() |
- |
-if '__main__' == __name__: |
- main() |