Newer
Older
Johnny Chen
committed
"""
LLDB module which provides the abstract base class of lldb test case.
The concrete subclass can override lldbtest.TesBase in order to inherit the
common behavior for unitest.TestCase.setUp/tearDown implemented in this file.
The subclass should override the attribute mydir in order for the python runtime
to locate the individual test cases when running as part of a large test suite
or when running each test case as a separate python invocation.
./dotest.py provides a test driver which sets up the environment to run the
entire test suite. Users who want to run a test case on its own can specify the
LLDB_TEST and PYTHONPATH environment variables, for example:
$ export LLDB_TEST=$PWD
$ export PYTHONPATH=/Volumes/data/lldb/svn/trunk/build/Debug/LLDB.framework/Resources/Python:$LLDB_TEST
$ echo $LLDB_TEST
/Volumes/data/lldb/svn/trunk/test
$ echo $PYTHONPATH
/Volumes/data/lldb/svn/trunk/build/Debug/LLDB.framework/Resources/Python:/Volumes/data/lldb/svn/trunk/test
$ python function_types/TestFunctionTypes.py
.
----------------------------------------------------------------------
Ran 1 test in 0.363s
OK
$
"""
import os
import sys
import unittest2
Johnny Chen
committed
import lldb
Johnny Chen
committed
#
# Some commonly used assert messages.
#
CURRENT_EXECUTABLE_SET = "Current executable set successfully"
RUN_STOPPED = "Process is launched and then stopped successfully"
Johnny Chen
committed
RUN_COMPLETED = "Process exited successfully"
Johnny Chen
committed
BREAKPOINT_CREATED = "Breakpoint created successfully"
BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
Johnny Chen
committed
STOPPED_DUE_TO_BREAKPOINT = "Process state is stopped due to breakpoint"
STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
VARIABLES_DISPLAYED_CORRECTLY = "Show specified variable(s) correctly"
#
# And a generic "Command '%s' returns successfully" message generator.
#
def CMD_MSG(command):
return "Command '%s' returns successfully" % (command)
class TestBase(unittest2.TestCase):
Johnny Chen
committed
"""This LLDB abstract base class is meant to be subclassed."""
# The concrete subclass should override this attribute.
mydir = None
Johnny Chen
committed
Johnny Chen
committed
# State pertaining to the inferior process, if any.
runStarted = False
Johnny Chen
committed
def setUp(self):
Johnny Chen
committed
#traceback.print_stack()
# Fail fast if 'mydir' attribute is not overridden.
if not self.mydir or len(self.mydir) == 0:
raise Exception("Subclasses must override the 'mydir' attribute.")
Johnny Chen
committed
# Save old working directory.
self.oldcwd = os.getcwd()
# Change current working directory if ${LLDB_TEST} is defined.
# See also dotest.py which sets up ${LLDB_TEST}.
if ("LLDB_TEST" in os.environ):
os.chdir(os.path.join(os.environ["LLDB_TEST"], self.mydir));
# Create the debugger instance if necessary.
try:
self.dbg = lldb.DBG
except AttributeError:
self.dbg = lldb.SBDebugger.Create()
Johnny Chen
committed
if not self.dbg.IsValid():
raise Exception('Invalid debugger instance')
# We want our debugger to be synchronous.
self.dbg.SetAsync(False)
# Retrieve the associated command interpreter instance.
self.ci = self.dbg.GetCommandInterpreter()
if not self.ci:
raise Exception('Could not get the command interpreter')
# And the result object.
self.res = lldb.SBCommandReturnObject()
def tearDown(self):
Johnny Chen
committed
# Finish the inferior process, if it was "run" previously.
if self.runStarted:
self.ci.HandleCommand("continue", self.res)
Johnny Chen
committed
del self.dbg
# Restore old working directory.
os.chdir(self.oldcwd)
Johnny Chen
committed
Johnny Chen
committed
def runCmd(self, cmd, msg=None, check=True, verbose=False):
Johnny Chen
committed
"""
Ask the command interpreter to handle the command and then check its
return status.
"""
# Fail fast if 'cmd' is not meaningful.
if not cmd or len(cmd) == 0:
raise Exception("Bad 'cmd' parameter encountered")
Johnny Chen
committed
if verbose:
print >> sys.stderr, "runCmd:", cmd
Johnny Chen
committed
Johnny Chen
committed
self.ci.HandleCommand(cmd, self.res)
Johnny Chen
committed
if cmd.startswith("run"):
Johnny Chen
committed
self.runStarted = True
Johnny Chen
committed
if verbose:
if self.res.Succeeded():
print >> sys.stderr, "output:", self.res.GetOutput()
else:
print >> sys.stderr, self.res.GetError()
Johnny Chen
committed
Johnny Chen
committed
if check:
self.assertTrue(self.res.Succeeded(),
msg if msg else CMD_MSG(cmd))
def expect(self, cmd, msg=None, startstr=None, substrs=None, verbose=False):
Johnny Chen
committed
"""
Similar to runCmd; with additional expect style output matching ability.
Ask the command interpreter to handle the command and then check its
return status. The 'msg' parameter specifies an informational assert
message. We expect the output from running the command to start with
'startstr' and matches the substrings contained in 'substrs'.
"""
# First run the command.
Johnny Chen
committed
self.runCmd(cmd, verbose = (True if verbose else False))
Johnny Chen
committed
# Then compare the output against expected strings.
Johnny Chen
committed
output = self.res.GetOutput()
matched = output.startswith(startstr) if startstr else True
Johnny Chen
committed
if not matched and startstr and verbose:
print >> sys.stderr, "Startstr not matched:", startstr
Johnny Chen
committed
Johnny Chen
committed
if substrs:
for str in substrs:
matched = output.find(str) > 0
if not matched:
Johnny Chen
committed
if verbose:
print >> sys.stderr, "Substring not matched:", str
Johnny Chen
committed
break
self.assertTrue(matched, msg if msg else CMD_MSG(cmd))