Bug 613813 - Mochitest's websocket server shouldn't die upon receiving SIGINT when running an interactive debugger. r=ted, a=testonly

--HG--
extra : rebase_source : 1f2664b9829ac2db355f02308fcdc133ead2d53f
This commit is contained in:
Justin Lebar 2010-11-20 19:29:58 -08:00
Родитель 79583c6252
Коммит 861877725d
3 изменённых файлов: 68 добавлений и 5 удалений

Просмотреть файл

@ -99,6 +99,7 @@ _SERV_FILES = \
$(topsrcdir)/build/pgo/server-locations.txt \
$(topsrcdir)/netwerk/test/httpserver/httpd.js \
mozprefs.js \
pywebsocket_ignore_sigint.py \
$(NULL)
_PYWEBSOCKET_FILES = \

Просмотреть файл

@ -0,0 +1,53 @@
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is the Mozilla Foundation.
#
# Portions created by the Initial Developer are Copyright (C) 2010
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Justin Lebar <justin.lebar@gmail.com>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
#
"""A wrapper around pywebsocket's standalone.py which causes it to ignore
SIGINT.
"""
import signal
import sys
if __name__ == '__main__':
sys.path = ['pywebsocket'] + sys.path
import standalone
signal.signal(signal.SIGINT, signal.SIG_IGN)
standalone._main()

Просмотреть файл

@ -356,13 +356,21 @@ class MochitestServer:
class WebSocketServer(object):
"Class which encapsulates the mod_pywebsocket server"
def __init__(self, automation, options, scriptdir):
def __init__(self, automation, options, scriptdir, debuggerInfo=None):
self.port = options.webSocketPort
self._automation = automation
self._scriptdir = scriptdir
self.debuggerInfo = debuggerInfo
def start(self):
script = os.path.join(self._scriptdir, 'pywebsocket/standalone.py')
# If we're running tests under an interactive debugger, tell the server to
# ignore SIGINT so it doesn't capture a ctrl+c meant for the debugger.
if self.debuggerInfo and self.debuggerInfo['interactive']:
scriptPath = 'pywebsocket_ignore_sigint.py'
else:
scriptPath = 'pywebsocket/standalone.py'
script = os.path.join(self._scriptdir, scriptPath)
cmd = [sys.executable, script, '-p', str(self.port), '-w', self._scriptdir, '-l', os.path.join(self._scriptdir, "websock.log"), '--log-level=debug']
self._process = self._automation.Process(cmd)
@ -420,12 +428,13 @@ class Mochitest(object):
testURL = "about:blank"
return testURL
def startWebSocketServer(self, options):
def startWebSocketServer(self, options, debuggerInfo):
""" Launch the websocket server """
if options.webServer != '127.0.0.1':
return
self.wsserver = WebSocketServer(self.automation, options, self.SCRIPT_DIRECTORY)
self.wsserver = WebSocketServer(self.automation, options,
self.SCRIPT_DIRECTORY, debuggerInfo)
self.wsserver.start()
def stopWebSocketServer(self, options):
@ -597,7 +606,7 @@ class Mochitest(object):
return 1
self.startWebServer(options)
self.startWebSocketServer(options)
self.startWebSocketServer(options, debuggerInfo)
testURL = self.buildTestPath(options)
self.buildURLOptions(options)