blob: 3ce0d02d49dc08e14cc661829a2c80ae37b446f6 [file] [log] [blame]
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001"""
2LLDB module which provides the abstract base class of lldb test case.
3
4The concrete subclass can override lldbtest.TesBase in order to inherit the
5common behavior for unitest.TestCase.setUp/tearDown implemented in this file.
6
7The subclass should override the attribute mydir in order for the python runtime
8to locate the individual test cases when running as part of a large test suite
9or when running each test case as a separate python invocation.
10
11./dotest.py provides a test driver which sets up the environment to run the
Johnny Chenc98892e2012-05-16 20:41:28 +000012entire of part of the test suite . Example:
Johnny Chenbf6ffa32010-07-03 03:41:59 +000013
Johnny Chenc98892e2012-05-16 20:41:28 +000014# Exercises the test suite in the types directory....
15/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 types
Johnny Chen57b47382010-09-02 22:25:47 +000016...
Johnny Chend0190a62010-08-23 17:10:44 +000017
Johnny Chenc98892e2012-05-16 20:41:28 +000018Session logs for test failures/errors/unexpected successes will go into directory '2012-05-16-13_35_42'
19Command invoked: python ./dotest.py -A x86_64 types
20compilers=['clang']
Johnny Chend0190a62010-08-23 17:10:44 +000021
Johnny Chenc98892e2012-05-16 20:41:28 +000022Configuration: arch=x86_64 compiler=clang
Johnny Chend0190a62010-08-23 17:10:44 +000023----------------------------------------------------------------------
Johnny Chenc98892e2012-05-16 20:41:28 +000024Collected 72 tests
25
26........................................................................
27----------------------------------------------------------------------
28Ran 72 tests in 135.468s
Johnny Chend0190a62010-08-23 17:10:44 +000029
30OK
Johnny Chenbf6ffa32010-07-03 03:41:59 +000031$
32"""
33
Johnny Chen90312a82010-09-21 22:34:45 +000034import os, sys, traceback
Enrico Granata7e137e32012-10-24 18:14:21 +000035import os.path
Johnny Chenea88e942010-09-21 21:08:53 +000036import re
Johnny Chen8952a2d2010-08-30 21:35:00 +000037from subprocess import *
Johnny Chen150c3cc2010-10-15 01:18:29 +000038import StringIO
Johnny Chenf2b70232010-08-25 18:49:48 +000039import time
Johnny Chena33a93c2010-08-30 23:08:52 +000040import types
Johnny Chen73258832010-08-05 23:42:46 +000041import unittest2
Johnny Chenbf6ffa32010-07-03 03:41:59 +000042import lldb
43
Johnny Chen707b3c92010-10-11 22:25:46 +000044# See also dotest.parseOptionsAndInitTestdirs(), where the environment variables
Johnny Chend2047fa2011-01-19 18:18:47 +000045# LLDB_COMMAND_TRACE and LLDB_DO_CLEANUP are set from '-t' and '-r dir' options.
Johnny Chen707b3c92010-10-11 22:25:46 +000046
47# By default, traceAlways is False.
Johnny Chen8d55a342010-08-31 17:42:54 +000048if "LLDB_COMMAND_TRACE" in os.environ and os.environ["LLDB_COMMAND_TRACE"]=="YES":
49 traceAlways = True
50else:
51 traceAlways = False
52
Johnny Chen707b3c92010-10-11 22:25:46 +000053# By default, doCleanup is True.
54if "LLDB_DO_CLEANUP" in os.environ and os.environ["LLDB_DO_CLEANUP"]=="NO":
55 doCleanup = False
56else:
57 doCleanup = True
58
Johnny Chen8d55a342010-08-31 17:42:54 +000059
Johnny Chen00778092010-08-09 22:01:17 +000060#
61# Some commonly used assert messages.
62#
63
Johnny Chenaa902922010-09-17 22:45:27 +000064COMMAND_FAILED_AS_EXPECTED = "Command has failed as expected"
65
Johnny Chen00778092010-08-09 22:01:17 +000066CURRENT_EXECUTABLE_SET = "Current executable set successfully"
67
Johnny Chen7d1d7532010-09-02 21:23:12 +000068PROCESS_IS_VALID = "Process is valid"
69
70PROCESS_KILLED = "Process is killed successfully"
71
Johnny Chend5f66fc2010-12-23 01:12:19 +000072PROCESS_EXITED = "Process exited successfully"
73
74PROCESS_STOPPED = "Process status should be stopped"
75
Johnny Chen5ee88192010-08-27 23:47:36 +000076RUN_SUCCEEDED = "Process is launched successfully"
Johnny Chen00778092010-08-09 22:01:17 +000077
Johnny Chen17941842010-08-09 23:44:24 +000078RUN_COMPLETED = "Process exited successfully"
Johnny Chen00778092010-08-09 22:01:17 +000079
Johnny Chen67af43f2010-10-05 19:27:32 +000080BACKTRACE_DISPLAYED_CORRECTLY = "Backtrace displayed correctly"
81
Johnny Chen17941842010-08-09 23:44:24 +000082BREAKPOINT_CREATED = "Breakpoint created successfully"
83
Johnny Chenf10af382010-12-04 00:07:24 +000084BREAKPOINT_STATE_CORRECT = "Breakpoint state is correct"
85
Johnny Chene76896c2010-08-17 21:33:31 +000086BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
87
Johnny Chen17941842010-08-09 23:44:24 +000088BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
Johnny Chen00778092010-08-09 22:01:17 +000089
Johnny Chen703dbd02010-09-30 17:06:24 +000090BREAKPOINT_HIT_TWICE = "Breakpoint resolved with hit cout = 2"
91
Johnny Chen164f1e12010-10-15 18:07:09 +000092BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit cout = 3"
93
Greg Clayton5db6b792012-10-24 18:24:14 +000094MISSING_EXPECTED_REGISTERS = "At least one expected register is unavailable."
95
Johnny Chen89109ed12011-06-27 20:05:23 +000096OBJECT_PRINTED_CORRECTLY = "Object printed correctly"
97
Johnny Chen5b3a3572010-12-09 18:22:12 +000098SOURCE_DISPLAYED_CORRECTLY = "Source code displayed correctly"
99
Johnny Chenc70b02a2010-09-22 23:00:20 +0000100STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
101
Johnny Chen1691a162011-04-15 16:44:48 +0000102STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception"
103
Johnny Chen5d6c4642010-11-10 23:46:38 +0000104STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
Johnny Chende0338b2010-11-10 20:20:06 +0000105
Johnny Chen5d6c4642010-11-10 23:46:38 +0000106STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
107 STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'")
Johnny Chen00778092010-08-09 22:01:17 +0000108
Johnny Chen2e431ce2010-10-20 18:38:48 +0000109STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition"
110
Johnny Chen0a3d1ca2010-12-13 21:49:58 +0000111STOPPED_DUE_TO_BREAKPOINT_IGNORE_COUNT = "Stopped due to breakpoint and ignore count"
112
Johnny Chenc066ab42010-10-14 01:22:03 +0000113STOPPED_DUE_TO_SIGNAL = "Process state is stopped due to signal"
114
Johnny Chen00778092010-08-09 22:01:17 +0000115STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
116
Johnny Chenf68cc122011-09-15 21:09:59 +0000117STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint"
118
Johnny Chen3c884a02010-08-24 22:07:56 +0000119DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly"
120
Johnny Chen5fca8ca2010-08-26 20:04:17 +0000121VALID_BREAKPOINT = "Got a valid breakpoint"
122
Johnny Chen5bfb8ee2010-10-22 18:10:25 +0000123VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location"
124
Johnny Chen7209d84f2011-05-06 23:26:12 +0000125VALID_COMMAND_INTERPRETER = "Got a valid command interpreter"
126
Johnny Chen5ee88192010-08-27 23:47:36 +0000127VALID_FILESPEC = "Got a valid filespec"
128
Johnny Chen025d1b82010-12-08 01:25:21 +0000129VALID_MODULE = "Got a valid module"
130
Johnny Chen5fca8ca2010-08-26 20:04:17 +0000131VALID_PROCESS = "Got a valid process"
132
Johnny Chen025d1b82010-12-08 01:25:21 +0000133VALID_SYMBOL = "Got a valid symbol"
134
Johnny Chen5fca8ca2010-08-26 20:04:17 +0000135VALID_TARGET = "Got a valid target"
136
Johnny Chen15f247a2012-02-03 20:43:00 +0000137VALID_TYPE = "Got a valid type"
138
Johnny Chen5819ab42011-07-15 22:28:10 +0000139VALID_VARIABLE = "Got a valid variable"
140
Johnny Chen981463d2010-08-25 19:00:04 +0000141VARIABLES_DISPLAYED_CORRECTLY = "Variable(s) displayed correctly"
Johnny Chen00778092010-08-09 22:01:17 +0000142
Johnny Chenf68cc122011-09-15 21:09:59 +0000143WATCHPOINT_CREATED = "Watchpoint created successfully"
Johnny Chen5fca8ca2010-08-26 20:04:17 +0000144
Johnny Chenc0c67f22010-11-09 18:42:22 +0000145def CMD_MSG(str):
Johnny Chenaacf92e2011-05-31 22:16:51 +0000146 '''A generic "Command '%s' returns successfully" message generator.'''
Johnny Chenc0c67f22010-11-09 18:42:22 +0000147 return "Command '%s' returns successfully" % str
148
Johnny Chen3bc8ae42012-03-15 19:10:00 +0000149def COMPLETION_MSG(str_before, str_after):
Johnny Chen98aceb02012-01-20 23:02:51 +0000150 '''A generic message generator for the completion mechanism.'''
151 return "'%s' successfully completes to '%s'" % (str_before, str_after)
152
Johnny Chenc0c67f22010-11-09 18:42:22 +0000153def EXP_MSG(str, exe):
Johnny Chenaacf92e2011-05-31 22:16:51 +0000154 '''A generic "'%s' returns expected result" message generator if exe.
155 Otherwise, it generates "'%s' matches expected result" message.'''
Johnny Chenc0c67f22010-11-09 18:42:22 +0000156 return "'%s' %s expected result" % (str, 'returns' if exe else 'matches')
Johnny Chen17941842010-08-09 23:44:24 +0000157
Johnny Chen3343f042010-10-19 19:11:38 +0000158def SETTING_MSG(setting):
Johnny Chenaacf92e2011-05-31 22:16:51 +0000159 '''A generic "Value of setting '%s' is correct" message generator.'''
Johnny Chen3343f042010-10-19 19:11:38 +0000160 return "Value of setting '%s' is correct" % setting
161
Johnny Chen27c41232010-08-26 21:49:29 +0000162def EnvArray():
Johnny Chenaacf92e2011-05-31 22:16:51 +0000163 """Returns an env variable array from the os.environ map object."""
Johnny Chen27c41232010-08-26 21:49:29 +0000164 return map(lambda k,v: k+"="+v, os.environ.keys(), os.environ.values())
165
Johnny Chen47ceb032010-10-11 23:52:19 +0000166def line_number(filename, string_to_match):
167 """Helper function to return the line number of the first matched string."""
168 with open(filename, 'r') as f:
169 for i, line in enumerate(f):
170 if line.find(string_to_match) != -1:
171 # Found our match.
Johnny Chencd9b7772010-10-12 00:09:25 +0000172 return i+1
Johnny Chen1691a162011-04-15 16:44:48 +0000173 raise Exception("Unable to find '%s' within file %s" % (string_to_match, filename))
Johnny Chen47ceb032010-10-11 23:52:19 +0000174
Johnny Chen67af43f2010-10-05 19:27:32 +0000175def pointer_size():
176 """Return the pointer size of the host system."""
177 import ctypes
178 a_pointer = ctypes.c_void_p(0xffff)
179 return 8 * ctypes.sizeof(a_pointer)
180
Johnny Chen57816732012-02-09 02:01:59 +0000181def is_exe(fpath):
182 """Returns true if fpath is an executable."""
183 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
184
185def which(program):
186 """Returns the full path to a program; None otherwise."""
187 fpath, fname = os.path.split(program)
188 if fpath:
189 if is_exe(program):
190 return program
191 else:
192 for path in os.environ["PATH"].split(os.pathsep):
193 exe_file = os.path.join(path, program)
194 if is_exe(exe_file):
195 return exe_file
196 return None
197
Johnny Chen150c3cc2010-10-15 01:18:29 +0000198class recording(StringIO.StringIO):
199 """
200 A nice little context manager for recording the debugger interactions into
201 our session object. If trace flag is ON, it also emits the interactions
202 into the stderr.
203 """
204 def __init__(self, test, trace):
Johnny Chen690fcef2010-10-15 23:55:05 +0000205 """Create a StringIO instance; record the session obj and trace flag."""
Johnny Chen150c3cc2010-10-15 01:18:29 +0000206 StringIO.StringIO.__init__(self)
Johnny Chen0241f142011-08-16 22:06:17 +0000207 # The test might not have undergone the 'setUp(self)' phase yet, so that
208 # the attribute 'session' might not even exist yet.
Johnny Chenbfcf37f2011-08-16 17:06:45 +0000209 self.session = getattr(test, "session", None) if test else None
Johnny Chen150c3cc2010-10-15 01:18:29 +0000210 self.trace = trace
211
212 def __enter__(self):
213 """
214 Context management protocol on entry to the body of the with statement.
215 Just return the StringIO object.
216 """
217 return self
218
219 def __exit__(self, type, value, tb):
220 """
221 Context management protocol on exit from the body of the with statement.
222 If trace is ON, it emits the recordings into stderr. Always add the
223 recordings to our session object. And close the StringIO object, too.
224 """
225 if self.trace:
Johnny Chen690fcef2010-10-15 23:55:05 +0000226 print >> sys.stderr, self.getvalue()
227 if self.session:
228 print >> self.session, self.getvalue()
Johnny Chen150c3cc2010-10-15 01:18:29 +0000229 self.close()
230
Johnny Chen690fcef2010-10-15 23:55:05 +0000231# From 2.7's subprocess.check_output() convenience function.
Johnny Chenac77f3b2011-03-23 20:28:59 +0000232# Return a tuple (stdoutdata, stderrdata).
Johnny Chen690fcef2010-10-15 23:55:05 +0000233def system(*popenargs, **kwargs):
Johnny Chen8eb14a92011-11-16 22:44:28 +0000234 r"""Run an os command with arguments and return its output as a byte string.
Johnny Chen690fcef2010-10-15 23:55:05 +0000235
236 If the exit code was non-zero it raises a CalledProcessError. The
237 CalledProcessError object will have the return code in the returncode
238 attribute and output in the output attribute.
239
240 The arguments are the same as for the Popen constructor. Example:
241
242 >>> check_output(["ls", "-l", "/dev/null"])
243 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
244
245 The stdout argument is not allowed as it is used internally.
246 To capture standard error in the result, use stderr=STDOUT.
247
248 >>> check_output(["/bin/sh", "-c",
249 ... "ls -l non_existent_file ; exit 0"],
250 ... stderr=STDOUT)
251 'ls: non_existent_file: No such file or directory\n'
252 """
253
254 # Assign the sender object to variable 'test' and remove it from kwargs.
255 test = kwargs.pop('sender', None)
256
257 if 'stdout' in kwargs:
258 raise ValueError('stdout argument not allowed, it will be overridden.')
Johnny Chenac77f3b2011-03-23 20:28:59 +0000259 process = Popen(stdout=PIPE, stderr=PIPE, *popenargs, **kwargs)
Johnny Chen0bd8c312011-11-16 22:41:53 +0000260 pid = process.pid
Johnny Chen690fcef2010-10-15 23:55:05 +0000261 output, error = process.communicate()
262 retcode = process.poll()
263
264 with recording(test, traceAlways) as sbuf:
265 if isinstance(popenargs, types.StringTypes):
266 args = [popenargs]
267 else:
268 args = list(popenargs)
269 print >> sbuf
270 print >> sbuf, "os command:", args
Johnny Chen0bd8c312011-11-16 22:41:53 +0000271 print >> sbuf, "with pid:", pid
Johnny Chen690fcef2010-10-15 23:55:05 +0000272 print >> sbuf, "stdout:", output
273 print >> sbuf, "stderr:", error
274 print >> sbuf, "retcode:", retcode
275 print >> sbuf
276
277 if retcode:
278 cmd = kwargs.get("args")
279 if cmd is None:
280 cmd = popenargs[0]
281 raise CalledProcessError(retcode, cmd)
Johnny Chenac77f3b2011-03-23 20:28:59 +0000282 return (output, error)
Johnny Chen690fcef2010-10-15 23:55:05 +0000283
Johnny Chenab9c1dd2010-11-01 20:35:01 +0000284def getsource_if_available(obj):
285 """
286 Return the text of the source code for an object if available. Otherwise,
287 a print representation is returned.
288 """
289 import inspect
290 try:
291 return inspect.getsource(obj)
292 except:
293 return repr(obj)
294
Peter Collingbourne19f48d52011-06-20 19:06:20 +0000295def builder_module():
296 return __import__("builder_" + sys.platform)
297
Johnny Chena74bb0a2011-08-01 18:46:13 +0000298#
299# Decorators for categorizing test cases.
300#
301
302from functools import wraps
303def python_api_test(func):
304 """Decorate the item as a Python API only test."""
305 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
306 raise Exception("@python_api_test can only be used to decorate a test method")
307 @wraps(func)
308 def wrapper(self, *args, **kwargs):
309 try:
310 if lldb.dont_do_python_api_test:
311 self.skipTest("python api tests")
312 except AttributeError:
313 pass
314 return func(self, *args, **kwargs)
315
316 # Mark this function as such to separate them from lldb command line tests.
317 wrapper.__python_api_test__ = True
318 return wrapper
319
Johnny Chena74bb0a2011-08-01 18:46:13 +0000320def benchmarks_test(func):
321 """Decorate the item as a benchmarks test."""
322 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
323 raise Exception("@benchmarks_test can only be used to decorate a test method")
324 @wraps(func)
325 def wrapper(self, *args, **kwargs):
326 try:
327 if not lldb.just_do_benchmarks_test:
328 self.skipTest("benchmarks tests")
329 except AttributeError:
330 pass
331 return func(self, *args, **kwargs)
332
333 # Mark this function as such to separate them from the regular tests.
334 wrapper.__benchmarks_test__ = True
335 return wrapper
336
Johnny Chenf1548d42012-04-06 00:56:05 +0000337def dsym_test(func):
338 """Decorate the item as a dsym test."""
339 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
340 raise Exception("@dsym_test can only be used to decorate a test method")
341 @wraps(func)
342 def wrapper(self, *args, **kwargs):
343 try:
344 if lldb.dont_do_dsym_test:
345 self.skipTest("dsym tests")
346 except AttributeError:
347 pass
348 return func(self, *args, **kwargs)
349
350 # Mark this function as such to separate them from the regular tests.
351 wrapper.__dsym_test__ = True
352 return wrapper
353
354def dwarf_test(func):
355 """Decorate the item as a dwarf test."""
356 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
357 raise Exception("@dwarf_test can only be used to decorate a test method")
358 @wraps(func)
359 def wrapper(self, *args, **kwargs):
360 try:
361 if lldb.dont_do_dwarf_test:
362 self.skipTest("dwarf tests")
363 except AttributeError:
364 pass
365 return func(self, *args, **kwargs)
366
367 # Mark this function as such to separate them from the regular tests.
368 wrapper.__dwarf_test__ = True
369 return wrapper
370
Johnny Chen31963ce2011-08-19 00:54:27 +0000371def expectedFailureClang(func):
372 """Decorate the item as a Clang only expectedFailure."""
373 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
374 raise Exception("@expectedFailureClang can only be used to decorate a test method")
375 @wraps(func)
376 def wrapper(*args, **kwargs):
377 from unittest2 import case
378 self = args[0]
379 compiler = self.getCompiler()
380 try:
381 func(*args, **kwargs)
Johnny Chenb5825b82011-08-19 01:17:09 +0000382 except Exception:
Johnny Chen31963ce2011-08-19 00:54:27 +0000383 if "clang" in compiler:
384 raise case._ExpectedFailure(sys.exc_info())
385 else:
Johnny Chenb5825b82011-08-19 01:17:09 +0000386 raise
Johnny Chen31963ce2011-08-19 00:54:27 +0000387
388 if "clang" in compiler:
389 raise case._UnexpectedSuccess
390 return wrapper
391
Johnny Chena33843f2011-12-22 21:14:31 +0000392def expectedFailurei386(func):
393 """Decorate the item as an i386 only expectedFailure."""
394 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
395 raise Exception("@expectedFailurei386 can only be used to decorate a test method")
396 @wraps(func)
397 def wrapper(*args, **kwargs):
398 from unittest2 import case
399 self = args[0]
400 arch = self.getArchitecture()
401 try:
402 func(*args, **kwargs)
403 except Exception:
404 if "i386" in arch:
405 raise case._ExpectedFailure(sys.exc_info())
406 else:
407 raise
408
409 if "i386" in arch:
410 raise case._UnexpectedSuccess
411 return wrapper
412
Daniel Malea93aec0f2012-11-23 21:59:29 +0000413def expectedFailureLinux(func):
414 """Decorate the item as a Linux only expectedFailure."""
415 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
416 raise Exception("@expectedFailureLinux can only be used to decorate a test method")
417 @wraps(func)
418 def wrapper(*args, **kwargs):
419 from unittest2 import case
420 self = args[0]
421 platform = sys.platform
422 try:
423 func(*args, **kwargs)
424 except Exception:
425 if "linux" in platform:
426 raise case._ExpectedFailure(sys.exc_info())
427 else:
428 raise
429
430 if "linux" in platform:
431 raise case._UnexpectedSuccess
432 return wrapper
433
434def skipOnLinux(func):
435 """Decorate the item to skip tests that should be skipped on Linux."""
436 if isinstance(func, type) and issubclass(func, unittest2.TestCase):
437 raise Exception("@skipOnLinux can only be used to decorate a test method")
438 @wraps(func)
439 def wrapper(*args, **kwargs):
440 from unittest2 import case
441 self = args[0]
442 platform = sys.platform
443 if "linux" in platform:
444 self.skipTest("skip on linux")
445 else:
446 func(self, *args, **kwargs)
447 return wrapper
448
Johnny Chena74bb0a2011-08-01 18:46:13 +0000449class Base(unittest2.TestCase):
Johnny Chen8334dad2010-10-22 23:15:46 +0000450 """
Johnny Chena74bb0a2011-08-01 18:46:13 +0000451 Abstract base for performing lldb (see TestBase) or other generic tests (see
452 BenchBase for one example). lldbtest.Base works with the test driver to
453 accomplish things.
454
Johnny Chen8334dad2010-10-22 23:15:46 +0000455 """
Enrico Granata5020f952012-10-24 21:42:49 +0000456
Enrico Granata19186272012-10-24 21:44:48 +0000457 # The concrete subclass should override this attribute.
458 mydir = None
Johnny Chenbf6ffa32010-07-03 03:41:59 +0000459
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000460 # Keep track of the old current working directory.
461 oldcwd = None
Johnny Chena2124952010-08-05 21:23:45 +0000462
Johnny Chenfb4264c2011-08-01 19:50:58 +0000463 def TraceOn(self):
464 """Returns True if we are in trace mode (tracing detailed test execution)."""
465 return traceAlways
466
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000467 @classmethod
468 def setUpClass(cls):
Johnny Chenda884342010-10-01 22:59:49 +0000469 """
470 Python unittest framework class setup fixture.
471 Do current directory manipulation.
472 """
473
Johnny Chenf02ec122010-07-03 20:41:42 +0000474 # Fail fast if 'mydir' attribute is not overridden.
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000475 if not cls.mydir or len(cls.mydir) == 0:
Johnny Chenf02ec122010-07-03 20:41:42 +0000476 raise Exception("Subclasses must override the 'mydir' attribute.")
Enrico Granata7e137e32012-10-24 18:14:21 +0000477
Johnny Chenbf6ffa32010-07-03 03:41:59 +0000478 # Save old working directory.
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000479 cls.oldcwd = os.getcwd()
Johnny Chenbf6ffa32010-07-03 03:41:59 +0000480
481 # Change current working directory if ${LLDB_TEST} is defined.
482 # See also dotest.py which sets up ${LLDB_TEST}.
483 if ("LLDB_TEST" in os.environ):
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000484 if traceAlways:
Johnny Chen703dbd02010-09-30 17:06:24 +0000485 print >> sys.stderr, "Change dir to:", os.path.join(os.environ["LLDB_TEST"], cls.mydir)
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000486 os.chdir(os.path.join(os.environ["LLDB_TEST"], cls.mydir))
487
488 @classmethod
489 def tearDownClass(cls):
Johnny Chenda884342010-10-01 22:59:49 +0000490 """
491 Python unittest framework class teardown fixture.
492 Do class-wide cleanup.
493 """
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000494
Johnny Chen0fddfb22011-11-17 19:57:27 +0000495 if doCleanup and not lldb.skip_build_and_cleanup:
Johnny Chen707b3c92010-10-11 22:25:46 +0000496 # First, let's do the platform-specific cleanup.
Peter Collingbourne19f48d52011-06-20 19:06:20 +0000497 module = builder_module()
Johnny Chen707b3c92010-10-11 22:25:46 +0000498 if not module.cleanup():
499 raise Exception("Don't know how to do cleanup")
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000500
Johnny Chen707b3c92010-10-11 22:25:46 +0000501 # Subclass might have specific cleanup function defined.
502 if getattr(cls, "classCleanup", None):
503 if traceAlways:
504 print >> sys.stderr, "Call class-specific cleanup function for class:", cls
505 try:
506 cls.classCleanup()
507 except:
508 exc_type, exc_value, exc_tb = sys.exc_info()
509 traceback.print_exception(exc_type, exc_value, exc_tb)
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000510
511 # Restore old working directory.
512 if traceAlways:
Johnny Chen703dbd02010-09-30 17:06:24 +0000513 print >> sys.stderr, "Restore dir to:", cls.oldcwd
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000514 os.chdir(cls.oldcwd)
515
Johnny Chena74bb0a2011-08-01 18:46:13 +0000516 @classmethod
517 def skipLongRunningTest(cls):
518 """
519 By default, we skip long running test case.
520 This can be overridden by passing '-l' to the test driver (dotest.py).
521 """
522 if "LLDB_SKIP_LONG_RUNNING_TEST" in os.environ and "NO" == os.environ["LLDB_SKIP_LONG_RUNNING_TEST"]:
523 return False
524 else:
525 return True
Johnny Chened492022011-06-21 00:53:00 +0000526
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000527 def setUp(self):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000528 """Fixture for unittest test case setup.
529
530 It works with the test driver to conditionally skip tests and does other
531 initializations."""
Johnny Chen1a9f4dd2010-09-16 01:53:04 +0000532 #import traceback
533 #traceback.print_stack()
Johnny Chenbf6ffa32010-07-03 03:41:59 +0000534
Johnny Chenaaa82ff2011-08-02 22:54:37 +0000535 if "LLDB_EXEC" in os.environ:
536 self.lldbExec = os.environ["LLDB_EXEC"]
Johnny Chend890bfc2011-08-26 00:00:01 +0000537 else:
538 self.lldbExec = None
539 if "LLDB_HERE" in os.environ:
540 self.lldbHere = os.environ["LLDB_HERE"]
541 else:
542 self.lldbHere = None
Johnny Chenebe51722011-10-07 19:21:09 +0000543 # If we spawn an lldb process for test (via pexpect), do not load the
544 # init file unless told otherwise.
545 if "NO_LLDBINIT" in os.environ and "NO" == os.environ["NO_LLDBINIT"]:
546 self.lldbOption = ""
547 else:
548 self.lldbOption = "--no-lldbinit"
Johnny Chenaaa82ff2011-08-02 22:54:37 +0000549
Johnny Chen985e7402011-08-01 21:13:26 +0000550 # Assign the test method name to self.testMethodName.
551 #
552 # For an example of the use of this attribute, look at test/types dir.
553 # There are a bunch of test cases under test/types and we don't want the
554 # module cacheing subsystem to be confused with executable name "a.out"
555 # used for all the test cases.
556 self.testMethodName = self._testMethodName
557
Johnny Chenf3e22ac2010-12-10 18:52:10 +0000558 # Python API only test is decorated with @python_api_test,
559 # which also sets the "__python_api_test__" attribute of the
560 # function object to True.
Johnny Chen4533dad2011-05-31 23:21:42 +0000561 try:
562 if lldb.just_do_python_api_test:
563 testMethod = getattr(self, self._testMethodName)
564 if getattr(testMethod, "__python_api_test__", False):
565 pass
566 else:
Johnny Chen5ccbccf2011-07-30 01:39:58 +0000567 self.skipTest("non python api test")
568 except AttributeError:
569 pass
570
571 # Benchmarks test is decorated with @benchmarks_test,
572 # which also sets the "__benchmarks_test__" attribute of the
573 # function object to True.
574 try:
575 if lldb.just_do_benchmarks_test:
576 testMethod = getattr(self, self._testMethodName)
577 if getattr(testMethod, "__benchmarks_test__", False):
578 pass
579 else:
580 self.skipTest("non benchmarks test")
Johnny Chen4533dad2011-05-31 23:21:42 +0000581 except AttributeError:
582 pass
Johnny Chenf3e22ac2010-12-10 18:52:10 +0000583
Johnny Chen985e7402011-08-01 21:13:26 +0000584 # This is for the case of directly spawning 'lldb'/'gdb' and interacting
585 # with it using pexpect.
586 self.child = None
587 self.child_prompt = "(lldb) "
588 # If the child is interacting with the embedded script interpreter,
589 # there are two exits required during tear down, first to quit the
590 # embedded script interpreter and second to quit the lldb command
591 # interpreter.
592 self.child_in_script_interpreter = False
593
Johnny Chenfb4264c2011-08-01 19:50:58 +0000594 # These are for customized teardown cleanup.
595 self.dict = None
596 self.doTearDownCleanup = False
597 # And in rare cases where there are multiple teardown cleanups.
598 self.dicts = []
599 self.doTearDownCleanups = False
600
601 # Create a string buffer to record the session info, to be dumped into a
602 # test case specific file if test failure is encountered.
603 self.session = StringIO.StringIO()
604
605 # Optimistically set __errored__, __failed__, __expected__ to False
606 # initially. If the test errored/failed, the session info
607 # (self.session) is then dumped into a session specific file for
608 # diagnosis.
609 self.__errored__ = False
610 self.__failed__ = False
611 self.__expected__ = False
612 # We are also interested in unexpected success.
613 self.__unexpected__ = False
Johnny Chenf79b0762011-08-16 00:48:58 +0000614 # And skipped tests.
615 self.__skipped__ = False
Johnny Chenfb4264c2011-08-01 19:50:58 +0000616
617 # See addTearDownHook(self, hook) which allows the client to add a hook
618 # function to be run during tearDown() time.
619 self.hooks = []
620
621 # See HideStdout(self).
622 self.sys_stdout_hidden = False
623
Daniel Malea179ff292012-11-26 21:21:11 +0000624 # set environment variable names for finding shared libraries
625 if sys.platform.startswith("darwin"):
626 self.dylibPath = 'DYLD_LIBRARY_PATH'
627 elif sys.platform.startswith("linux") or sys.platform.startswith("freebsd"):
628 self.dylibPath = 'LD_LIBRARY_PATH'
629
Johnny Chen2a808582011-10-19 16:48:07 +0000630 def runHooks(self, child=None, child_prompt=None, use_cmd_api=False):
Johnny Chena737ba52011-10-19 01:06:21 +0000631 """Perform the run hooks to bring lldb debugger to the desired state.
632
Johnny Chen2a808582011-10-19 16:48:07 +0000633 By default, expect a pexpect spawned child and child prompt to be
634 supplied (use_cmd_api=False). If use_cmd_api is true, ignore the child
635 and child prompt and use self.runCmd() to run the hooks one by one.
636
Johnny Chena737ba52011-10-19 01:06:21 +0000637 Note that child is a process spawned by pexpect.spawn(). If not, your
638 test case is mostly likely going to fail.
639
640 See also dotest.py where lldb.runHooks are processed/populated.
641 """
642 if not lldb.runHooks:
643 self.skipTest("No runhooks specified for lldb, skip the test")
Johnny Chen2a808582011-10-19 16:48:07 +0000644 if use_cmd_api:
645 for hook in lldb.runhooks:
646 self.runCmd(hook)
647 else:
648 if not child or not child_prompt:
649 self.fail("Both child and child_prompt need to be defined.")
650 for hook in lldb.runHooks:
651 child.sendline(hook)
652 child.expect_exact(child_prompt)
Johnny Chena737ba52011-10-19 01:06:21 +0000653
Johnny Chenfb4264c2011-08-01 19:50:58 +0000654 def HideStdout(self):
655 """Hide output to stdout from the user.
656
657 During test execution, there might be cases where we don't want to show the
658 standard output to the user. For example,
659
660 self.runCmd(r'''sc print "\n\n\tHello!\n"''')
661
662 tests whether command abbreviation for 'script' works or not. There is no
663 need to show the 'Hello' output to the user as long as the 'script' command
664 succeeds and we are not in TraceOn() mode (see the '-t' option).
665
666 In this case, the test method calls self.HideStdout(self) to redirect the
667 sys.stdout to a null device, and restores the sys.stdout upon teardown.
668
669 Note that you should only call this method at most once during a test case
670 execution. Any subsequent call has no effect at all."""
671 if self.sys_stdout_hidden:
672 return
673
674 self.sys_stdout_hidden = True
675 old_stdout = sys.stdout
676 sys.stdout = open(os.devnull, 'w')
677 def restore_stdout():
678 sys.stdout = old_stdout
679 self.addTearDownHook(restore_stdout)
680
681 # =======================================================================
682 # Methods for customized teardown cleanups as well as execution of hooks.
683 # =======================================================================
684
685 def setTearDownCleanup(self, dictionary=None):
686 """Register a cleanup action at tearDown() time with a dictinary"""
687 self.dict = dictionary
688 self.doTearDownCleanup = True
689
690 def addTearDownCleanup(self, dictionary):
691 """Add a cleanup action at tearDown() time with a dictinary"""
692 self.dicts.append(dictionary)
693 self.doTearDownCleanups = True
694
695 def addTearDownHook(self, hook):
696 """
697 Add a function to be run during tearDown() time.
698
699 Hooks are executed in a first come first serve manner.
700 """
701 if callable(hook):
702 with recording(self, traceAlways) as sbuf:
703 print >> sbuf, "Adding tearDown hook:", getsource_if_available(hook)
704 self.hooks.append(hook)
705
706 def tearDown(self):
707 """Fixture for unittest test case teardown."""
708 #import traceback
709 #traceback.print_stack()
710
Johnny Chen985e7402011-08-01 21:13:26 +0000711 # This is for the case of directly spawning 'lldb' and interacting with it
712 # using pexpect.
713 import pexpect
714 if self.child and self.child.isalive():
715 with recording(self, traceAlways) as sbuf:
716 print >> sbuf, "tearing down the child process...."
717 if self.child_in_script_interpreter:
718 self.child.sendline('quit()')
719 self.child.expect_exact(self.child_prompt)
720 self.child.sendline('quit')
721 try:
722 self.child.expect(pexpect.EOF)
723 except:
724 pass
Johnny Chenac257132012-02-27 23:07:40 +0000725 # Give it one final blow to make sure the child is terminated.
726 self.child.close()
Johnny Chen985e7402011-08-01 21:13:26 +0000727
Johnny Chenfb4264c2011-08-01 19:50:58 +0000728 # Check and run any hook functions.
729 for hook in reversed(self.hooks):
730 with recording(self, traceAlways) as sbuf:
731 print >> sbuf, "Executing tearDown hook:", getsource_if_available(hook)
732 hook()
733
734 del self.hooks
735
736 # Perform registered teardown cleanup.
737 if doCleanup and self.doTearDownCleanup:
Johnny Chen0fddfb22011-11-17 19:57:27 +0000738 self.cleanup(dictionary=self.dict)
Johnny Chenfb4264c2011-08-01 19:50:58 +0000739
740 # In rare cases where there are multiple teardown cleanups added.
741 if doCleanup and self.doTearDownCleanups:
Johnny Chenfb4264c2011-08-01 19:50:58 +0000742 if self.dicts:
743 for dict in reversed(self.dicts):
Johnny Chen0fddfb22011-11-17 19:57:27 +0000744 self.cleanup(dictionary=dict)
Johnny Chenfb4264c2011-08-01 19:50:58 +0000745
746 # Decide whether to dump the session info.
747 self.dumpSessionInfo()
748
749 # =========================================================
750 # Various callbacks to allow introspection of test progress
751 # =========================================================
752
753 def markError(self):
754 """Callback invoked when an error (unexpected exception) errored."""
755 self.__errored__ = True
756 with recording(self, False) as sbuf:
757 # False because there's no need to write "ERROR" to the stderr twice.
758 # Once by the Python unittest framework, and a second time by us.
759 print >> sbuf, "ERROR"
760
761 def markFailure(self):
762 """Callback invoked when a failure (test assertion failure) occurred."""
763 self.__failed__ = True
764 with recording(self, False) as sbuf:
765 # False because there's no need to write "FAIL" to the stderr twice.
766 # Once by the Python unittest framework, and a second time by us.
767 print >> sbuf, "FAIL"
768
769 def markExpectedFailure(self):
770 """Callback invoked when an expected failure/error occurred."""
771 self.__expected__ = True
772 with recording(self, False) as sbuf:
773 # False because there's no need to write "expected failure" to the
774 # stderr twice.
775 # Once by the Python unittest framework, and a second time by us.
776 print >> sbuf, "expected failure"
777
Johnny Chenc5cc6252011-08-15 23:09:08 +0000778 def markSkippedTest(self):
779 """Callback invoked when a test is skipped."""
780 self.__skipped__ = True
781 with recording(self, False) as sbuf:
782 # False because there's no need to write "skipped test" to the
783 # stderr twice.
784 # Once by the Python unittest framework, and a second time by us.
785 print >> sbuf, "skipped test"
786
Johnny Chenfb4264c2011-08-01 19:50:58 +0000787 def markUnexpectedSuccess(self):
788 """Callback invoked when an unexpected success occurred."""
789 self.__unexpected__ = True
790 with recording(self, False) as sbuf:
791 # False because there's no need to write "unexpected success" to the
792 # stderr twice.
793 # Once by the Python unittest framework, and a second time by us.
794 print >> sbuf, "unexpected success"
795
796 def dumpSessionInfo(self):
797 """
798 Dump the debugger interactions leading to a test error/failure. This
799 allows for more convenient postmortem analysis.
800
801 See also LLDBTestResult (dotest.py) which is a singlton class derived
802 from TextTestResult and overwrites addError, addFailure, and
803 addExpectedFailure methods to allow us to to mark the test instance as
804 such.
805 """
806
807 # We are here because self.tearDown() detected that this test instance
808 # either errored or failed. The lldb.test_result singleton contains
809 # two lists (erros and failures) which get populated by the unittest
810 # framework. Look over there for stack trace information.
811 #
812 # The lists contain 2-tuples of TestCase instances and strings holding
813 # formatted tracebacks.
814 #
815 # See http://docs.python.org/library/unittest.html#unittest.TestResult.
816 if self.__errored__:
817 pairs = lldb.test_result.errors
818 prefix = 'Error'
819 elif self.__failed__:
820 pairs = lldb.test_result.failures
821 prefix = 'Failure'
822 elif self.__expected__:
823 pairs = lldb.test_result.expectedFailures
824 prefix = 'ExpectedFailure'
Johnny Chenc5cc6252011-08-15 23:09:08 +0000825 elif self.__skipped__:
826 prefix = 'SkippedTest'
Johnny Chenfb4264c2011-08-01 19:50:58 +0000827 elif self.__unexpected__:
828 prefix = "UnexpectedSuccess"
829 else:
830 # Simply return, there's no session info to dump!
831 return
832
Johnny Chenc5cc6252011-08-15 23:09:08 +0000833 if not self.__unexpected__ and not self.__skipped__:
Johnny Chenfb4264c2011-08-01 19:50:58 +0000834 for test, traceback in pairs:
835 if test is self:
836 print >> self.session, traceback
837
Johnny Chen8082a002011-08-11 00:16:28 +0000838 testMethod = getattr(self, self._testMethodName)
839 if getattr(testMethod, "__benchmarks_test__", False):
840 benchmarks = True
841 else:
842 benchmarks = False
843
Johnny Chen5daa6de2011-12-03 00:16:59 +0000844 # This records the compiler version used for the test.
845 system([self.getCompiler(), "-v"], sender=self)
846
Johnny Chenfb4264c2011-08-01 19:50:58 +0000847 dname = os.path.join(os.environ["LLDB_TEST"],
848 os.environ["LLDB_SESSION_DIRNAME"])
849 if not os.path.isdir(dname):
850 os.mkdir(dname)
Sean Callanan794baf62012-10-16 18:22:04 +0000851 fname = os.path.join(dname, "%s-%s-%s-%s.log" % (prefix, self.getArchitecture(), "_".join(self.getCompiler().split('/')), self.id()))
Johnny Chenfb4264c2011-08-01 19:50:58 +0000852 with open(fname, "w") as f:
853 import datetime
854 print >> f, "Session info generated @", datetime.datetime.now().ctime()
855 print >> f, self.session.getvalue()
856 print >> f, "To rerun this test, issue the following command from the 'test' directory:\n"
Johnny Chen8082a002011-08-11 00:16:28 +0000857 print >> f, "./dotest.py %s -v %s -f %s.%s" % (self.getRunOptions(),
858 ('+b' if benchmarks else '-t'),
Johnny Chenfb4264c2011-08-01 19:50:58 +0000859 self.__class__.__name__,
860 self._testMethodName)
861
862 # ====================================================
863 # Config. methods supported through a plugin interface
864 # (enables reading of the current test configuration)
865 # ====================================================
866
867 def getArchitecture(self):
868 """Returns the architecture in effect the test suite is running with."""
869 module = builder_module()
870 return module.getArchitecture()
871
872 def getCompiler(self):
873 """Returns the compiler in effect the test suite is running with."""
874 module = builder_module()
875 return module.getCompiler()
876
877 def getRunOptions(self):
878 """Command line option for -A and -C to run this test again, called from
879 self.dumpSessionInfo()."""
880 arch = self.getArchitecture()
881 comp = self.getCompiler()
Johnny Chenb7bdd102011-08-24 19:48:51 +0000882 if arch:
883 option_str = "-A " + arch
Johnny Chenfb4264c2011-08-01 19:50:58 +0000884 else:
Johnny Chenb7bdd102011-08-24 19:48:51 +0000885 option_str = ""
886 if comp:
Johnny Chen531c0852012-03-16 20:44:00 +0000887 option_str += " -C " + comp
Johnny Chenb7bdd102011-08-24 19:48:51 +0000888 return option_str
Johnny Chenfb4264c2011-08-01 19:50:58 +0000889
890 # ==================================================
891 # Build methods supported through a plugin interface
892 # ==================================================
893
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000894 def buildDefault(self, architecture=None, compiler=None, dictionary=None, clean=True):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000895 """Platform specific way to build the default binaries."""
Johnny Chen0fddfb22011-11-17 19:57:27 +0000896 if lldb.skip_build_and_cleanup:
897 return
Johnny Chenfb4264c2011-08-01 19:50:58 +0000898 module = builder_module()
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000899 if not module.buildDefault(self, architecture, compiler, dictionary, clean):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000900 raise Exception("Don't know how to build default binary")
901
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000902 def buildDsym(self, architecture=None, compiler=None, dictionary=None, clean=True):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000903 """Platform specific way to build binaries with dsym info."""
Johnny Chen0fddfb22011-11-17 19:57:27 +0000904 if lldb.skip_build_and_cleanup:
905 return
Johnny Chenfb4264c2011-08-01 19:50:58 +0000906 module = builder_module()
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000907 if not module.buildDsym(self, architecture, compiler, dictionary, clean):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000908 raise Exception("Don't know how to build binary with dsym")
909
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000910 def buildDwarf(self, architecture=None, compiler=None, dictionary=None, clean=True):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000911 """Platform specific way to build binaries with dwarf maps."""
Johnny Chen0fddfb22011-11-17 19:57:27 +0000912 if lldb.skip_build_and_cleanup:
913 return
Johnny Chenfb4264c2011-08-01 19:50:58 +0000914 module = builder_module()
Johnny Chenfdc80a5c2012-02-01 01:49:50 +0000915 if not module.buildDwarf(self, architecture, compiler, dictionary, clean):
Johnny Chenfb4264c2011-08-01 19:50:58 +0000916 raise Exception("Don't know how to build binary with dwarf")
Johnny Chena74bb0a2011-08-01 18:46:13 +0000917
Johnny Chen9f4f5d92011-08-12 20:19:22 +0000918 def cleanup(self, dictionary=None):
919 """Platform specific way to do cleanup after build."""
Johnny Chen0fddfb22011-11-17 19:57:27 +0000920 if lldb.skip_build_and_cleanup:
921 return
Johnny Chen9f4f5d92011-08-12 20:19:22 +0000922 module = builder_module()
923 if not module.cleanup(self, dictionary):
Johnny Chen0fddfb22011-11-17 19:57:27 +0000924 raise Exception("Don't know how to do cleanup with dictionary: "+dictionary)
Johnny Chen9f4f5d92011-08-12 20:19:22 +0000925
Johnny Chena74bb0a2011-08-01 18:46:13 +0000926
927class TestBase(Base):
928 """
929 This abstract base class is meant to be subclassed. It provides default
930 implementations for setUpClass(), tearDownClass(), setUp(), and tearDown(),
931 among other things.
932
933 Important things for test class writers:
934
935 - Overwrite the mydir class attribute, otherwise your test class won't
936 run. It specifies the relative directory to the top level 'test' so
937 the test harness can change to the correct working directory before
938 running your test.
939
940 - The setUp method sets up things to facilitate subsequent interactions
941 with the debugger as part of the test. These include:
942 - populate the test method name
943 - create/get a debugger set with synchronous mode (self.dbg)
944 - get the command interpreter from with the debugger (self.ci)
945 - create a result object for use with the command interpreter
946 (self.res)
947 - plus other stuffs
948
949 - The tearDown method tries to perform some necessary cleanup on behalf
950 of the test to return the debugger to a good state for the next test.
951 These include:
952 - execute any tearDown hooks registered by the test method with
953 TestBase.addTearDownHook(); examples can be found in
954 settings/TestSettings.py
955 - kill the inferior process associated with each target, if any,
956 and, then delete the target from the debugger's target list
957 - perform build cleanup before running the next test method in the
958 same test class; examples of registering for this service can be
959 found in types/TestIntegerTypes.py with the call:
960 - self.setTearDownCleanup(dictionary=d)
961
962 - Similarly setUpClass and tearDownClass perform classwise setup and
963 teardown fixtures. The tearDownClass method invokes a default build
964 cleanup for the entire test class; also, subclasses can implement the
965 classmethod classCleanup(cls) to perform special class cleanup action.
966
967 - The instance methods runCmd and expect are used heavily by existing
968 test cases to send a command to the command interpreter and to perform
969 string/pattern matching on the output of such command execution. The
970 expect method also provides a mode to peform string/pattern matching
971 without running a command.
972
973 - The build methods buildDefault, buildDsym, and buildDwarf are used to
974 build the binaries used during a particular test scenario. A plugin
975 should be provided for the sys.platform running the test suite. The
976 Mac OS X implementation is located in plugins/darwin.py.
977 """
978
979 # Maximum allowed attempts when launching the inferior process.
980 # Can be overridden by the LLDB_MAX_LAUNCH_COUNT environment variable.
981 maxLaunchCount = 3;
982
983 # Time to wait before the next launching attempt in second(s).
984 # Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable.
985 timeWaitNextLaunch = 1.0;
986
987 def doDelay(self):
988 """See option -w of dotest.py."""
989 if ("LLDB_WAIT_BETWEEN_TEST_CASES" in os.environ and
990 os.environ["LLDB_WAIT_BETWEEN_TEST_CASES"] == 'YES'):
991 waitTime = 1.0
992 if "LLDB_TIME_WAIT_BETWEEN_TEST_CASES" in os.environ:
993 waitTime = float(os.environ["LLDB_TIME_WAIT_BETWEEN_TEST_CASES"])
994 time.sleep(waitTime)
995
Enrico Granata165f8af2012-09-21 19:10:53 +0000996 # Returns the list of categories to which this test case belongs
997 # by default, look for a ".categories" file, and read its contents
998 # if no such file exists, traverse the hierarchy - we guarantee
999 # a .categories to exist at the top level directory so we do not end up
1000 # looping endlessly - subclasses are free to define their own categories
1001 # in whatever way makes sense to them
1002 def getCategories(self):
1003 import inspect
1004 import os.path
1005 folder = inspect.getfile(self.__class__)
1006 folder = os.path.dirname(folder)
1007 while folder != '/':
1008 categories_file_name = os.path.join(folder,".categories")
1009 if os.path.exists(categories_file_name):
1010 categories_file = open(categories_file_name,'r')
1011 categories = categories_file.readline()
1012 categories_file.close()
1013 categories = str.replace(categories,'\n','')
1014 categories = str.replace(categories,'\r','')
1015 return categories.split(',')
1016 else:
1017 folder = os.path.dirname(folder)
1018 continue
1019
Johnny Chena74bb0a2011-08-01 18:46:13 +00001020 def setUp(self):
1021 #import traceback
1022 #traceback.print_stack()
1023
1024 # Works with the test driver to conditionally skip tests via decorators.
1025 Base.setUp(self)
1026
Johnny Chena74bb0a2011-08-01 18:46:13 +00001027 try:
1028 if lldb.blacklist:
1029 className = self.__class__.__name__
1030 classAndMethodName = "%s.%s" % (className, self._testMethodName)
1031 if className in lldb.blacklist:
1032 self.skipTest(lldb.blacklist.get(className))
1033 elif classAndMethodName in lldb.blacklist:
1034 self.skipTest(lldb.blacklist.get(classAndMethodName))
1035 except AttributeError:
1036 pass
1037
Johnny Chened492022011-06-21 00:53:00 +00001038 # Insert some delay between successive test cases if specified.
1039 self.doDelay()
Johnny Chen0ed37c92010-10-07 02:04:14 +00001040
Johnny Chenf2b70232010-08-25 18:49:48 +00001041 if "LLDB_MAX_LAUNCH_COUNT" in os.environ:
1042 self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"])
1043
Johnny Chen430eb762010-10-19 16:00:42 +00001044 if "LLDB_TIME_WAIT_NEXT_LAUNCH" in os.environ:
Johnny Chen4921b112010-11-29 20:20:34 +00001045 self.timeWaitNextLaunch = float(os.environ["LLDB_TIME_WAIT_NEXT_LAUNCH"])
Johnny Chenf2b70232010-08-25 18:49:48 +00001046
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001047 # Create the debugger instance if necessary.
1048 try:
1049 self.dbg = lldb.DBG
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001050 except AttributeError:
1051 self.dbg = lldb.SBDebugger.Create()
Johnny Chenf02ec122010-07-03 20:41:42 +00001052
Johnny Chen3cd1e552011-05-25 19:06:18 +00001053 if not self.dbg:
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001054 raise Exception('Invalid debugger instance')
1055
1056 # We want our debugger to be synchronous.
1057 self.dbg.SetAsync(False)
1058
1059 # Retrieve the associated command interpreter instance.
1060 self.ci = self.dbg.GetCommandInterpreter()
1061 if not self.ci:
1062 raise Exception('Could not get the command interpreter')
1063
1064 # And the result object.
1065 self.res = lldb.SBCommandReturnObject()
1066
Johnny Chen44d24972012-04-16 18:55:15 +00001067 # Run global pre-flight code, if defined via the config file.
1068 if lldb.pre_flight:
1069 lldb.pre_flight(self)
1070
Enrico Granata44818162012-10-24 01:23:57 +00001071 # utility methods that tests can use to access the current objects
1072 def target(self):
1073 if not self.dbg:
1074 raise Exception('Invalid debugger instance')
1075 return self.dbg.GetSelectedTarget()
1076
1077 def process(self):
1078 if not self.dbg:
1079 raise Exception('Invalid debugger instance')
1080 return self.dbg.GetSelectedTarget().GetProcess()
1081
1082 def thread(self):
1083 if not self.dbg:
1084 raise Exception('Invalid debugger instance')
1085 return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread()
1086
1087 def frame(self):
1088 if not self.dbg:
1089 raise Exception('Invalid debugger instance')
1090 return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame()
1091
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001092 def tearDown(self):
Johnny Chen7d1d7532010-09-02 21:23:12 +00001093 #import traceback
1094 #traceback.print_stack()
1095
Johnny Chenfb4264c2011-08-01 19:50:58 +00001096 Base.tearDown(self)
Johnny Chen707d8222010-10-19 23:40:13 +00001097
Johnny Chen3794ad92011-06-15 21:24:24 +00001098 # Delete the target(s) from the debugger as a general cleanup step.
1099 # This includes terminating the process for each target, if any.
1100 # We'd like to reuse the debugger for our next test without incurring
1101 # the initialization overhead.
1102 targets = []
1103 for target in self.dbg:
1104 if target:
1105 targets.append(target)
1106 process = target.GetProcess()
1107 if process:
1108 rc = self.invoke(process, "Kill")
1109 self.assertTrue(rc.Success(), PROCESS_KILLED)
1110 for target in targets:
1111 self.dbg.DeleteTarget(target)
Johnny Chen6ca006c2010-08-16 21:28:10 +00001112
Johnny Chen44d24972012-04-16 18:55:15 +00001113 # Run global post-flight code, if defined via the config file.
1114 if lldb.post_flight:
1115 lldb.post_flight(self)
1116
Johnny Chenbf6ffa32010-07-03 03:41:59 +00001117 del self.dbg
Johnny Chen150c3cc2010-10-15 01:18:29 +00001118
Johnny Chen86268e42011-09-30 21:48:35 +00001119 def switch_to_thread_with_stop_reason(self, stop_reason):
1120 """
1121 Run the 'thread list' command, and select the thread with stop reason as
1122 'stop_reason'. If no such thread exists, no select action is done.
1123 """
1124 from lldbutil import stop_reason_to_str
1125 self.runCmd('thread list')
1126 output = self.res.GetOutput()
1127 thread_line_pattern = re.compile("^[ *] thread #([0-9]+):.*stop reason = %s" %
1128 stop_reason_to_str(stop_reason))
1129 for line in output.splitlines():
1130 matched = thread_line_pattern.match(line)
1131 if matched:
1132 self.runCmd('thread select %s' % matched.group(1))
1133
Johnny Chen5b67ca82011-06-15 21:38:39 +00001134 def runCmd(self, cmd, msg=None, check=True, trace=False):
Johnny Chen27f212d2010-08-19 23:26:59 +00001135 """
1136 Ask the command interpreter to handle the command and then check its
1137 return status.
1138 """
1139 # Fail fast if 'cmd' is not meaningful.
1140 if not cmd or len(cmd) == 0:
1141 raise Exception("Bad 'cmd' parameter encountered")
Johnny Chen5bbb88f2010-08-20 17:57:32 +00001142
Johnny Chen8d55a342010-08-31 17:42:54 +00001143 trace = (True if traceAlways else trace)
Johnny Chend0190a62010-08-23 17:10:44 +00001144
Johnny Chen63dfb272010-09-01 00:15:19 +00001145 running = (cmd.startswith("run") or cmd.startswith("process launch"))
Johnny Chen5bbb88f2010-08-20 17:57:32 +00001146
Johnny Chen63dfb272010-09-01 00:15:19 +00001147 for i in range(self.maxLaunchCount if running else 1):
Johnny Chenf2b70232010-08-25 18:49:48 +00001148 self.ci.HandleCommand(cmd, self.res)
Johnny Chen5bbb88f2010-08-20 17:57:32 +00001149
Johnny Chen150c3cc2010-10-15 01:18:29 +00001150 with recording(self, trace) as sbuf:
1151 print >> sbuf, "runCmd:", cmd
Johnny Chenab254f52010-10-15 16:13:00 +00001152 if not check:
Johnny Chen27b107b2010-10-15 18:52:22 +00001153 print >> sbuf, "check of return status not required"
Johnny Chenf2b70232010-08-25 18:49:48 +00001154 if self.res.Succeeded():
Johnny Chen150c3cc2010-10-15 01:18:29 +00001155 print >> sbuf, "output:", self.res.GetOutput()
Johnny Chenf2b70232010-08-25 18:49:48 +00001156 else:
Johnny Chen150c3cc2010-10-15 01:18:29 +00001157 print >> sbuf, "runCmd failed!"
1158 print >> sbuf, self.res.GetError()
Johnny Chen5bbb88f2010-08-20 17:57:32 +00001159
Johnny Chenff3d01d2010-08-20 21:03:09 +00001160 if self.res.Succeeded():
Johnny Chenf2b70232010-08-25 18:49:48 +00001161 break
Johnny Chen150c3cc2010-10-15 01:18:29 +00001162 elif running:
Johnny Chencf7f74e2011-01-19 02:02:08 +00001163 # For process launch, wait some time before possible next try.
1164 time.sleep(self.timeWaitNextLaunch)
Johnny Chen552d6712012-08-01 19:56:04 +00001165 with recording(self, trace) as sbuf:
Johnny Chen150c3cc2010-10-15 01:18:29 +00001166 print >> sbuf, "Command '" + cmd + "' failed!"
Johnny Chen5bbb88f2010-08-20 17:57:32 +00001167
Johnny Chen27f212d2010-08-19 23:26:59 +00001168 if check:
1169 self.assertTrue(self.res.Succeeded(),
Johnny Chenc0c67f22010-11-09 18:42:22 +00001170 msg if msg else CMD_MSG(cmd))
Johnny Chen27f212d2010-08-19 23:26:59 +00001171
Jim Ingham63dfc722012-09-22 00:05:11 +00001172 def match (self, str, patterns, msg=None, trace=False, error=False, matching=True, exe=True):
1173 """run command in str, and match the result against regexp in patterns returning the match object for the first matching pattern
1174
1175 Otherwise, all the arguments have the same meanings as for the expect function"""
1176
1177 trace = (True if traceAlways else trace)
1178
1179 if exe:
1180 # First run the command. If we are expecting error, set check=False.
1181 # Pass the assert message along since it provides more semantic info.
1182 self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error)
1183
1184 # Then compare the output against expected strings.
1185 output = self.res.GetError() if error else self.res.GetOutput()
1186
1187 # If error is True, the API client expects the command to fail!
1188 if error:
1189 self.assertFalse(self.res.Succeeded(),
1190 "Command '" + str + "' is expected to fail!")
1191 else:
1192 # No execution required, just compare str against the golden input.
1193 output = str
1194 with recording(self, trace) as sbuf:
1195 print >> sbuf, "looking at:", output
1196
1197 # The heading says either "Expecting" or "Not expecting".
1198 heading = "Expecting" if matching else "Not expecting"
1199
1200 for pattern in patterns:
1201 # Match Objects always have a boolean value of True.
1202 match_object = re.search(pattern, output)
1203 matched = bool(match_object)
1204 with recording(self, trace) as sbuf:
1205 print >> sbuf, "%s pattern: %s" % (heading, pattern)
1206 print >> sbuf, "Matched" if matched else "Not matched"
1207 if matched:
1208 break
1209
1210 self.assertTrue(matched if matching else not matched,
1211 msg if msg else EXP_MSG(str, exe))
1212
1213 return match_object
1214
Johnny Chen86268e42011-09-30 21:48:35 +00001215 def expect(self, str, msg=None, patterns=None, startstr=None, endstr=None, substrs=None, trace=False, error=False, matching=True, exe=True):
Johnny Chen27f212d2010-08-19 23:26:59 +00001216 """
1217 Similar to runCmd; with additional expect style output matching ability.
1218
1219 Ask the command interpreter to handle the command and then check its
1220 return status. The 'msg' parameter specifies an informational assert
1221 message. We expect the output from running the command to start with
Johnny Chenea88e942010-09-21 21:08:53 +00001222 'startstr', matches the substrings contained in 'substrs', and regexp
1223 matches the patterns contained in 'patterns'.
Johnny Chenb3307862010-09-17 22:28:51 +00001224
1225 If the keyword argument error is set to True, it signifies that the API
1226 client is expecting the command to fail. In this case, the error stream
Johnny Chenaa902922010-09-17 22:45:27 +00001227 from running the command is retrieved and compared against the golden
Johnny Chenb3307862010-09-17 22:28:51 +00001228 input, instead.
Johnny Chenea88e942010-09-21 21:08:53 +00001229
1230 If the keyword argument matching is set to False, it signifies that the API
1231 client is expecting the output of the command not to match the golden
1232 input.
Johnny Chen9c48b8d2010-09-21 23:33:30 +00001233
1234 Finally, the required argument 'str' represents the lldb command to be
1235 sent to the command interpreter. In case the keyword argument 'exe' is
1236 set to False, the 'str' is treated as a string to be matched/not-matched
1237 against the golden input.
Johnny Chen27f212d2010-08-19 23:26:59 +00001238 """
Johnny Chen8d55a342010-08-31 17:42:54 +00001239 trace = (True if traceAlways else trace)
Johnny Chend0190a62010-08-23 17:10:44 +00001240
Johnny Chen9c48b8d2010-09-21 23:33:30 +00001241 if exe:
1242 # First run the command. If we are expecting error, set check=False.
Johnny Chen62d4f862010-10-28 21:10:32 +00001243 # Pass the assert message along since it provides more semantic info.
Johnny Chenebfff952010-10-28 18:24:22 +00001244 self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error)
Johnny Chen27f212d2010-08-19 23:26:59 +00001245
Johnny Chen9c48b8d2010-09-21 23:33:30 +00001246 # Then compare the output against expected strings.
1247 output = self.res.GetError() if error else self.res.GetOutput()
Johnny Chenb3307862010-09-17 22:28:51 +00001248
Johnny Chen9c48b8d2010-09-21 23:33:30 +00001249 # If error is True, the API client expects the command to fail!
1250 if error:
1251 self.assertFalse(self.res.Succeeded(),
1252 "Command '" + str + "' is expected to fail!")
1253 else:
1254 # No execution required, just compare str against the golden input.
Enrico Granatabc08ab42012-10-23 00:09:02 +00001255 if isinstance(str,lldb.SBCommandReturnObject):
1256 output = str.GetOutput()
1257 else:
1258 output = str
Johnny Chen150c3cc2010-10-15 01:18:29 +00001259 with recording(self, trace) as sbuf:
1260 print >> sbuf, "looking at:", output
Johnny Chenb3307862010-09-17 22:28:51 +00001261
Johnny Chenea88e942010-09-21 21:08:53 +00001262 # The heading says either "Expecting" or "Not expecting".
Johnny Chen150c3cc2010-10-15 01:18:29 +00001263 heading = "Expecting" if matching else "Not expecting"
Johnny Chenea88e942010-09-21 21:08:53 +00001264
1265 # Start from the startstr, if specified.
1266 # If there's no startstr, set the initial state appropriately.
1267 matched = output.startswith(startstr) if startstr else (True if matching else False)
Johnny Chenb145bba2010-08-20 18:25:15 +00001268
Johnny Chen150c3cc2010-10-15 01:18:29 +00001269 if startstr:
1270 with recording(self, trace) as sbuf:
1271 print >> sbuf, "%s start string: %s" % (heading, startstr)
1272 print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chenb145bba2010-08-20 18:25:15 +00001273
Johnny Chen86268e42011-09-30 21:48:35 +00001274 # Look for endstr, if specified.
1275 keepgoing = matched if matching else not matched
1276 if endstr:
1277 matched = output.endswith(endstr)
1278 with recording(self, trace) as sbuf:
1279 print >> sbuf, "%s end string: %s" % (heading, endstr)
1280 print >> sbuf, "Matched" if matched else "Not matched"
1281
Johnny Chenea88e942010-09-21 21:08:53 +00001282 # Look for sub strings, if specified.
1283 keepgoing = matched if matching else not matched
1284 if substrs and keepgoing:
Johnny Chen27f212d2010-08-19 23:26:59 +00001285 for str in substrs:
Johnny Chenb052f6c2010-09-23 23:35:28 +00001286 matched = output.find(str) != -1
Johnny Chen150c3cc2010-10-15 01:18:29 +00001287 with recording(self, trace) as sbuf:
1288 print >> sbuf, "%s sub string: %s" % (heading, str)
1289 print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chenea88e942010-09-21 21:08:53 +00001290 keepgoing = matched if matching else not matched
1291 if not keepgoing:
Johnny Chen27f212d2010-08-19 23:26:59 +00001292 break
1293
Johnny Chenea88e942010-09-21 21:08:53 +00001294 # Search for regular expression patterns, if specified.
1295 keepgoing = matched if matching else not matched
1296 if patterns and keepgoing:
1297 for pattern in patterns:
1298 # Match Objects always have a boolean value of True.
1299 matched = bool(re.search(pattern, output))
Johnny Chen150c3cc2010-10-15 01:18:29 +00001300 with recording(self, trace) as sbuf:
1301 print >> sbuf, "%s pattern: %s" % (heading, pattern)
1302 print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chenea88e942010-09-21 21:08:53 +00001303 keepgoing = matched if matching else not matched
1304 if not keepgoing:
1305 break
Johnny Chenea88e942010-09-21 21:08:53 +00001306
1307 self.assertTrue(matched if matching else not matched,
Johnny Chenc0c67f22010-11-09 18:42:22 +00001308 msg if msg else EXP_MSG(str, exe))
Johnny Chen27f212d2010-08-19 23:26:59 +00001309
Johnny Chenf3c59232010-08-25 22:52:45 +00001310 def invoke(self, obj, name, trace=False):
Johnny Chen61703c92010-08-25 22:56:10 +00001311 """Use reflection to call a method dynamically with no argument."""
Johnny Chen8d55a342010-08-31 17:42:54 +00001312 trace = (True if traceAlways else trace)
Johnny Chenf3c59232010-08-25 22:52:45 +00001313
1314 method = getattr(obj, name)
1315 import inspect
1316 self.assertTrue(inspect.ismethod(method),
1317 name + "is a method name of object: " + str(obj))
1318 result = method()
Johnny Chen150c3cc2010-10-15 01:18:29 +00001319 with recording(self, trace) as sbuf:
1320 print >> sbuf, str(method) + ":", result
Johnny Chenf3c59232010-08-25 22:52:45 +00001321 return result
Johnny Chen827edff2010-08-27 00:15:48 +00001322
Johnny Chenf359cf22011-05-27 23:36:52 +00001323 # =================================================
1324 # Misc. helper methods for debugging test execution
1325 # =================================================
1326
Johnny Chen56b92a72011-07-11 19:15:11 +00001327 def DebugSBValue(self, val):
Johnny Chen8d55a342010-08-31 17:42:54 +00001328 """Debug print a SBValue object, if traceAlways is True."""
Johnny Chende90f1d2011-04-27 17:43:07 +00001329 from lldbutil import value_type_to_str
Johnny Chen87bb5892010-11-03 21:37:58 +00001330
Johnny Chen8d55a342010-08-31 17:42:54 +00001331 if not traceAlways:
Johnny Chen827edff2010-08-27 00:15:48 +00001332 return
1333
1334 err = sys.stderr
1335 err.write(val.GetName() + ":\n")
Johnny Chen86268e42011-09-30 21:48:35 +00001336 err.write('\t' + "TypeName -> " + val.GetTypeName() + '\n')
1337 err.write('\t' + "ByteSize -> " + str(val.GetByteSize()) + '\n')
1338 err.write('\t' + "NumChildren -> " + str(val.GetNumChildren()) + '\n')
1339 err.write('\t' + "Value -> " + str(val.GetValue()) + '\n')
1340 err.write('\t' + "ValueAsUnsigned -> " + str(val.GetValueAsUnsigned())+ '\n')
1341 err.write('\t' + "ValueType -> " + value_type_to_str(val.GetValueType()) + '\n')
1342 err.write('\t' + "Summary -> " + str(val.GetSummary()) + '\n')
1343 err.write('\t' + "IsPointerType -> " + str(val.TypeIsPointerType()) + '\n')
1344 err.write('\t' + "Location -> " + val.GetLocation() + '\n')
Johnny Chen827edff2010-08-27 00:15:48 +00001345
Johnny Chen36c5eb12011-08-05 20:17:27 +00001346 def DebugSBType(self, type):
1347 """Debug print a SBType object, if traceAlways is True."""
1348 if not traceAlways:
1349 return
1350
1351 err = sys.stderr
1352 err.write(type.GetName() + ":\n")
1353 err.write('\t' + "ByteSize -> " + str(type.GetByteSize()) + '\n')
1354 err.write('\t' + "IsPointerType -> " + str(type.IsPointerType()) + '\n')
1355 err.write('\t' + "IsReferenceType -> " + str(type.IsReferenceType()) + '\n')
1356
Johnny Chenb877f1e2011-03-12 01:18:19 +00001357 def DebugPExpect(self, child):
1358 """Debug the spwaned pexpect object."""
1359 if not traceAlways:
1360 return
1361
1362 print child
Filipe Cabecinhas0eec15a2012-06-20 10:13:40 +00001363
1364 @classmethod
1365 def RemoveTempFile(cls, file):
1366 if os.path.exists(file):
1367 os.remove(file)