X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/aa8964354bc97cfdc7b6d51e560b9c0aacfd7243..ad08c366a19e95d19e8ee5d66b050530339561e4:/tests/dtest.py diff --git a/tests/dtest.py b/tests/dtest.py index 776a3ad..937d83e 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( @@ -158,7 +195,7 @@ stopword the a an and to too in on of we i am as im for is username fred password fredpass allow fred fredpass -plugins ../plugins +plugins %s/plugins player *.mp3 execraw disorder-decode player *.ogg execraw disorder-decode player *.wav execraw disorder-decode @@ -167,6 +204,6 @@ tracklength *.mp3 disorder-tracklength tracklength *.ogg disorder-tracklength tracklength *.wav disorder-tracklength tracklength *.flac disorder-tracklength -""" % (testroot, testroot, testroot, testroot)) -copyfile("%s/sounds/scratch.ogg" % topsrcdir, +""" % (testroot, testroot, testroot, testroot, top_builddir)) +copyfile("%s/sounds/scratch.ogg" % top_srcdir, "%s/scratch.ogg" % testroot)