From: Richard Kettlewell Date: Wed, 21 Nov 2007 10:03:19 +0000 (+0000) Subject: tests figure out paths more automatically X-Git-Tag: debian-1_5_99dev8~11 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/3bfecfac3fadac2fbf945d950a557292e8efb73a tests figure out paths more automatically --- diff --git a/tests/Makefile.am b/tests/Makefile.am index e65100f..c3d9b44 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -19,9 +19,6 @@ # check: - PATH=`pwd`/../server:`pwd`/..clients:$$PATH \ - PYTHONPATH=../python \ - topsrcdir=${top_srcdir} \ - ${PYTHON} ${srcdir}/alltests + ${PYTHON} ${srcdir}/alltests EXTRA_DIST=alltests dtest.py nothing.py version.py diff --git a/tests/alltests b/tests/alltests index 884a870..0d216f3 100755 --- a/tests/alltests +++ b/tests/alltests @@ -18,7 +18,22 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA # -import dtest,sys +import sys,re,os.path + +# Parse the makefile in the current directory to identify the source directory +top_srcdir = None +for l in file("Makefile"): + r = re.match("top_srcdir *= *(.*)", l) + if r: + top_srcdir = r.group(1) + break +if not top_srcdir: + fatal("cannot identify source directory") + +# Make sure that the test directory is on the module search path (so we can +# find dtest and the tests themselves) +sys.path.insert(0, os.path.join(top_srcdir, "tests")) +import dtest tests = ["nothing", "version"] diff --git a/tests/dtest.py b/tests/dtest.py index 776a3ad..b9862f4 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -21,7 +21,45 @@ """Utility module used by tests""" -import os,os.path,subprocess,sys,disorder +import os,os.path,subprocess,sys,re + +def fatal(s): + """Write an error message and exit""" + sys.stderr.write("ERROR: %s\n" % s) + sys.exit(1) + +# Identify the top build directory +cwd = os.getcwd() +if os.path.exists("config.h"): + top_builddir = cwd +elif os.path.exists("alltests"): + top_builddir = os.path.dirname(cwd) +else: + fatal("cannot identify build directory") + +# Make sure the Python build directory is on the module search path +sys.path.insert(0, os.path.join(top_builddir, "python")) +import disorder + +# Make sure the server build directory is on the executable search path +ospath = os.environ["PATH"].split(os.pathsep) +ospath.insert(0, os.path.join(top_builddir, "server")) +os.environ["PATH"] = os.pathsep.join(ospath) + +# Parse the makefile in the current directory to identify the source directory +top_srcdir = None +for l in file("Makefile"): + r = re.match("top_srcdir *= *(.*)", l) + if r: + top_srcdir = r.group(1) + break +if not top_srcdir: + fatal("cannot identify source directory") + +# The tests source directory must be on the module search path already since +# we found dtest.py + +# ----------------------------------------------------------------------------- def copyfile(a,b): """copyfile(A, B) @@ -36,7 +74,7 @@ Make track with relative path S exist""" trackdir = os.path.dirname(trackpath) if not os.path.exists(trackdir): os.makedirs(trackdir) - copyfile("%s/sounds/slap.ogg" % topsrcdir, trackpath) + copyfile("%s/sounds/slap.ogg" % top_srcdir, trackpath) def stdtracks(): maketrack("Joe Bloggs/First Album/01:First track.ogg") @@ -140,8 +178,7 @@ Recursively delete directory D""" tests = 0 failures = 0 daemon = None -testroot = "%s/testroot" % os.getcwd() -topsrcdir = os.path.abspath(os.getenv("topsrcdir")) +testroot = "%s/tests/testroot" % top_builddir remove_dir(testroot) os.mkdir(testroot) open("%s/config" % testroot, "w").write( @@ -168,5 +205,5 @@ tracklength *.ogg disorder-tracklength tracklength *.wav disorder-tracklength tracklength *.flac disorder-tracklength """ % (testroot, testroot, testroot, testroot)) -copyfile("%s/sounds/scratch.ogg" % topsrcdir, +copyfile("%s/sounds/scratch.ogg" % top_srcdir, "%s/scratch.ogg" % testroot)