summaryrefslogtreecommitdiffstats
path: root/QMTest/TestCmd.py
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-08-03 21:01:53 (GMT)
committerdirkbaechle <devnull@localhost>2012-08-03 21:01:53 (GMT)
commit4d8c8379e1d4c7860a1c1d29b7302b394c920844 (patch)
tree30339b821646f25aa0b03076722b8effc821b7eb /QMTest/TestCmd.py
parente5ed166538a2e12893346f9778cba8037f2dd847 (diff)
downloadSCons-4d8c8379e1d4c7860a1c1d29b7302b394c920844.zip
SCons-4d8c8379e1d4c7860a1c1d29b7302b394c920844.tar.gz
SCons-4d8c8379e1d4c7860a1c1d29b7302b394c920844.tar.bz2
- basic merge with source from the external scons-test-framework
Diffstat (limited to 'QMTest/TestCmd.py')
-rw-r--r--QMTest/TestCmd.py124
1 files changed, 116 insertions, 8 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py
index a27df27..8d382ce 100644
--- a/QMTest/TestCmd.py
+++ b/QMTest/TestCmd.py
@@ -897,6 +897,11 @@ class TestCmd(object):
combine = 0,
universal_newlines = 1,
timeout = None):
+ self.external = 0
+ try:
+ self.external = os.environ.get('SCONS_EXTERNAL_TEST', 0)
+ except KeyError:
+ pass
self._cwd = os.getcwd()
self.description_set(description)
self.program_set(program)
@@ -1009,13 +1014,19 @@ class TestCmd(object):
def command_args(self, program = None,
interpreter = None,
arguments = None):
- if program:
- if isinstance(program, str) and not os.path.isabs(program):
- program = os.path.join(self._cwd, program)
+ if not self.external:
+ if program:
+ if isinstance(program, str) and not os.path.isabs(program):
+ program = os.path.join(self._cwd, program)
+ else:
+ program = self.program
+ if not interpreter:
+ interpreter = self.interpreter
else:
- program = self.program
- if not interpreter:
- interpreter = self.interpreter
+ if not program:
+ program = self.program
+ if not interpreter:
+ interpreter = self.interpreter
if not isinstance(program, (list, tuple)):
program = [program]
cmd = list(program)
@@ -1189,8 +1200,9 @@ class TestCmd(object):
def program_set(self, program):
"""Set the executable program or script to be tested.
"""
- if program and not os.path.isabs(program):
- program = os.path.join(self._cwd, program)
+ if not self.external:
+ if program and not os.path.isabs(program):
+ program = os.path.join(self._cwd, program)
self.program = program
def read(self, file, mode = 'rb'):
@@ -1227,6 +1239,96 @@ class TestCmd(object):
self.timeout = timeout
self.timer = None
+ def parse_path(self, path, suppress_current=False):
+ """Return a list with the single path components of path.
+ """
+ head, tail = os.path.split(path)
+ result = []
+ if not tail:
+ if head == path:
+ return [head]
+ else:
+ result.append(tail)
+ head, tail = os.path.split(head)
+ while head and tail:
+ result.append(tail)
+ head, tail = os.path.split(head)
+ result.append(head or tail)
+ result.reverse()
+
+ return result
+
+ def dir_fixture(self, srcdir, dstdir=None):
+ """Copies the contents of the specified folder srcdir from
+ the directory of the called script, to the current
+ working directory.
+ The srcdir name may be a list, in which case the elements are
+ concatenated with the os.path.join() method. The dstdir is
+ assumed to be under the temporary working directory, it gets
+ created automatically, if it does not already exist.
+ """
+ if srcdir and self.script_srcdir and not os.path.isabs(srcdir):
+ spath = os.path.join(self.script_srcdir, srcdir)
+ else:
+ spath = srcdir
+ if dstdir:
+ dstdir = self.canonicalize(dstdir)
+ else:
+ dstdir = '.'
+
+ if dstdir != '.' and not os.path.exists(dstdir):
+ dstlist = self.parse_path(dstdir)
+ if len(dstlist) > 0 and dstlist[0] == ".":
+ dstlist = dstlist[1:]
+ for idx in range(len(dstlist)):
+ self.subdir(dstlist[:idx+1])
+
+ if dstdir and self.workdir:
+ dstdir = os.path.join(self.workdir, dstdir)
+
+ for entry in os.listdir(spath):
+ epath = os.path.join(spath, entry)
+ dpath = os.path.join(dstdir, entry)
+ if os.path.isdir(epath):
+ # Copy the subfolder
+ shutil.copytree(epath, dpath)
+ else:
+ shutil.copy(epath, dpath)
+
+ def file_fixture(self, srcfile, dstfile=None):
+ """Copies the file srcfile from the directory of
+ the called script, to the current working directory.
+ The dstfile is assumed to be under the temporary working
+ directory unless it is an absolute path name.
+ If dstfile is specified its target directory gets created
+ automatically, if it does not already exist.
+ """
+ srcpath, srctail = os.path.split(srcfile)
+ if srcpath:
+ if self.script_srcdir and not os.path.isabs(srcpath):
+ spath = os.path.join(self.script_srcdir, srcfile)
+ else:
+ spath = srcfile
+ else:
+ spath = os.path.join(self.script_srcdir, srcfile)
+ if not dstfile:
+ if srctail:
+ dpath = os.path.join(self.workdir, srctail)
+ else:
+ return
+ else:
+ dstpath, dsttail = os.path.split(dstfile)
+ if dstpath:
+ if not os.path.exists(os.path.join(self.workdir, dstpath)):
+ dstlist = self.parse_path(dstpath)
+ if len(dstlist) > 0 and dstlist[0] == ".":
+ dstlist = dstlist[1:]
+ for idx in range(len(dstlist)):
+ self.subdir(dstlist[:idx+1])
+
+ dpath = os.path.join(self.workdir, dstfile)
+ shutil.copy(spath, dpath)
+
def start(self, program = None,
interpreter = None,
arguments = None,
@@ -1304,6 +1406,12 @@ class TestCmd(object):
The specified program will have the original directory
prepended unless it is enclosed in a [list].
"""
+ if self.external:
+ if not program:
+ program = self.program
+ if not interpreter:
+ interpreter = self.interpreter
+
if chdir:
oldcwd = os.getcwd()
if not os.path.isabs(chdir):