2 # Copyright (C) 2011 Google Inc. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the
14 # * Neither the name of Google Inc. nor the names of its
15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 """A class to help start/stop the PyWebSocket server used by layout tests."""
37 from webkitpy.layout_tests.servers import http_server
38 from webkitpy.layout_tests.servers import http_server_base
40 _log = logging.getLogger(__name__)
43 _WS_LOG_PREFIX = 'pywebsocket.ws.log-'
44 _WSS_LOG_PREFIX = 'pywebsocket.wss.log-'
47 _DEFAULT_WS_PORT = 8880
48 _DEFAULT_WSS_PORT = 9323
51 class PyWebSocket(http_server.Lighttpd):
52 def __init__(self, port_obj, output_dir, port=_DEFAULT_WS_PORT,
53 root=None, use_tls=False,
54 private_key=None, certificate=None, ca_certificate=None,
57 output_dir: the absolute path to the layout test result directory
59 http_server.Lighttpd.__init__(self, port_obj, output_dir,
60 port=_DEFAULT_WS_PORT,
62 self._output_dir = output_dir
63 self._pid_file = pidfile
68 self._use_tls = use_tls
70 self._name = 'pywebsocket'
72 self._name = 'pywebsocket_secure'
75 self._private_key = private_key
77 self._private_key = self._pem_file
79 self._certificate = certificate
81 self._certificate = self._pem_file
82 self._ca_certificate = ca_certificate
84 self._port = int(self._port)
87 self._mappings = [{'port': self._port}]
89 if not self._pid_file:
90 self._pid_file = self._filesystem.join(self._runtime_path, '%s.pid' % self._name)
93 # FIXME: This is the wrong way to detect if we're in Chrome vs. WebKit!
94 # The port objects are supposed to abstract this.
96 self._layout_tests = self._filesystem.abspath(self._root)
97 self._web_socket_tests = self._filesystem.abspath(self._filesystem.join(self._root, 'http', 'tests', 'websocket', 'tests'))
100 self._layout_tests = self._port_obj.layout_tests_dir()
101 self._web_socket_tests = self._filesystem.join(self._layout_tests, 'http', 'tests', 'websocket', 'tests')
103 self._web_socket_tests = None
106 self._log_prefix = _WSS_LOG_PREFIX
108 self._log_prefix = _WS_LOG_PREFIX
110 def _prepare_config(self):
111 time_str = time.strftime('%d%b%Y-%H%M%S')
112 log_file_name = self._log_prefix + time_str
113 # FIXME: Doesn't Executive have a devnull, so that we don't have to use os.devnull directly?
114 self._wsin = open(os.devnull, 'r')
116 error_log = self._filesystem.join(self._output_dir, log_file_name + "-err.txt")
117 output_log = self._filesystem.join(self._output_dir, log_file_name + "-out.txt")
118 self._wsout = self._filesystem.open_text_file_for_writing(output_log)
120 from webkitpy.thirdparty import mod_pywebsocket
121 python_interp = sys.executable
122 # FIXME: Use self._filesystem.path_to_module(self.__module__) instead of __file__
123 # I think this is trying to get the chrome directory? Doesn't the port object know that?
124 pywebsocket_base = self._filesystem.join(self._filesystem.dirname(self._filesystem.dirname(self._filesystem.dirname(self._filesystem.abspath(__file__)))), 'thirdparty')
125 pywebsocket_script = self._filesystem.join(pywebsocket_base, 'mod_pywebsocket', 'standalone.py')
127 python_interp, '-u', pywebsocket_script,
128 '--server-host', 'localhost',
129 '--port', str(self._port),
130 # FIXME: Don't we have a self._port_obj.layout_test_path?
131 '--document-root', self._filesystem.join(self._layout_tests, 'http', 'tests'),
132 '--scan-dir', self._web_socket_tests,
133 '--cgi-paths', '/websocket/tests',
134 '--log-file', error_log,
137 handler_map_file = self._filesystem.join(self._web_socket_tests, 'handler_map.txt')
138 if self._filesystem.exists(handler_map_file):
139 _log.debug('Using handler_map_file: %s' % handler_map_file)
140 start_cmd.append('--websock-handlers-map-file')
141 start_cmd.append(handler_map_file)
143 _log.warning('No handler_map_file found')
146 start_cmd.extend(['-t', '-k', self._private_key,
147 '-c', self._certificate])
148 if self._ca_certificate:
149 start_cmd.append('--ca-certificate')
150 start_cmd.append(self._ca_certificate)
152 self._start_cmd = start_cmd
153 server_name = self._filesystem.basename(pywebsocket_script)
154 self._env = self._port_obj.setup_environ_for_server(server_name)
155 self._env['PYTHONPATH'] = (pywebsocket_base + os.path.pathsep + self._env.get('PYTHONPATH', ''))
157 def _remove_stale_logs(self):
159 self._remove_log_files(self._output_dir, self._log_prefix)
161 _log.warning('Failed to remove stale %s log files: %s' % (self._name, str(e)))
163 def _spawn_process(self):
164 _log.debug('Starting %s server, cmd="%s"' % (self._name, self._start_cmd))
165 self._process = self._executive.popen(self._start_cmd, env=self._env, shell=False, stdin=self._wsin, stdout=self._wsout, stderr=self._executive.STDOUT)
166 self._filesystem.write_text_file(self._pid_file, str(self._process.pid))
167 return self._process.pid
169 def _stop_running_server(self):
170 super(PyWebSocket, self)._stop_running_server()