1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
# Deejayd, a media player daemon
# Copyright (C) 2007-2009 Mickael Royer <mickael.royer@gmail.com>
# Alexandre Rossi <alexandre.rossi@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
Tools to create a test server.
"""
import os, signal, os.path, sys, subprocess
logfiles = ['/tmp/testdeejayd.log', '/tmp/testdeejayd-webui.log']
for logfile in logfiles:
if os.path.isfile(logfile):
os.unlink(logfile)
class TestServer:
"""Implements a server ready for testing."""
def __init__(self, conf_file):
self.conf_file = conf_file
self.serverExecRelPath = 'scripts/testserver'
self.srcpath = self.findSrcPath()
def findSrcPath(self):
# Get the server executable path, assuming it is names
# scripts/testserver in a subdirectory of $PYTHONPATH
absPath = ''
notFound = True
sysPathIterator = iter(sys.path)
while notFound:
absPath = sysPathIterator.next()
serverScriptPath = os.path.join(absPath, self.serverExecRelPath)
if os.path.exists(serverScriptPath):
notFound = False
if notFound:
raise Exception('Cannot find server executable')
return os.path.abspath(absPath)
def start(self):
serverExec = os.path.join(self.srcpath, self.serverExecRelPath)
if not os.access(serverExec, os.X_OK):
sys.exit("The test server executable '%s' is not executable."\
% serverExec)
args = [serverExec, self.conf_file]
env = {'PYTHONPATH': self.srcpath, "PATH": os.getenv('PATH'),\
'LANG': os.getenv('LANG')}
self.__serverProcess = subprocess.Popen(args = args,
env = env,
stderr = subprocess.PIPE,
stdout = sys.stdout.fileno(),
close_fds = True)
firstLine = self.__serverProcess.stderr.readline()
if not firstLine == 'ready\n':
# Should not occur
print firstLine
self.stop()
raise Exception('Reactor does not seem to be ready')
def stop(self):
# Send stop signal to reactor
os.kill(self.__serverProcess.pid, signal.SIGINT)
# Wait for the process to finish
self.__serverProcess.wait()
# vim: ts=4 sw=4 expandtab
|