blob: 1aa175ef7227fb144466b11f7705b1a4fa4af7d4 [file] [log] [blame]
Todd Fiala68615ce2015-09-15 21:38:04 +00001"""
2 The LLVM Compiler Infrastructure
3
4This file is distributed under the University of Illinois Open Source
5License. See LICENSE.TXT for details.
6
7Provides classes used by the test results reporting infrastructure
8within the LLDB test suite.
9"""
10
11import argparse
12import cPickle
13import inspect
14import os
Todd Fiala33896a92015-09-18 21:01:13 +000015import pprint
Todd Fiala8effde42015-09-18 16:00:52 +000016import re
Todd Fiala68615ce2015-09-15 21:38:04 +000017import sys
18import threading
19import time
Todd Fialae7e911f2015-09-18 07:08:09 +000020import traceback
Todd Fiala68615ce2015-09-15 21:38:04 +000021import xml.sax.saxutils
22
23
24class EventBuilder(object):
25 """Helper class to build test result event dictionaries."""
Todd Fiala33896a92015-09-18 21:01:13 +000026
27 BASE_DICTIONARY = None
28
Todd Fiala68615ce2015-09-15 21:38:04 +000029 @staticmethod
30 def _get_test_name_info(test):
31 """Returns (test-class-name, test-method-name) from a test case instance.
32
33 @param test a unittest.TestCase instance.
34
35 @return tuple containing (test class name, test method name)
36 """
37 test_class_components = test.id().split(".")
38 test_class_name = ".".join(test_class_components[:-1])
39 test_name = test_class_components[-1]
40 return (test_class_name, test_name)
41
42 @staticmethod
Todd Fialae83f1402015-09-18 22:45:31 +000043 def bare_event(event_type):
44 """Creates an event with default additions, event type and timestamp.
45
46 @param event_type the value set for the "event" key, used
47 to distinguish events.
48
49 @returns an event dictionary with all default additions, the "event"
50 key set to the passed in event_type, and the event_time value set to
51 time.time().
52 """
53 if EventBuilder.BASE_DICTIONARY is not None:
54 # Start with a copy of the "always include" entries.
55 event = dict(EventBuilder.BASE_DICTIONARY)
56 else:
57 event = {}
58
59 event.update({
60 "event": event_type,
61 "event_time": time.time()
62 })
63 return event
64
65 @staticmethod
Todd Fiala68615ce2015-09-15 21:38:04 +000066 def _event_dictionary_common(test, event_type):
67 """Returns an event dictionary setup with values for the given event type.
68
69 @param test the unittest.TestCase instance
70
71 @param event_type the name of the event type (string).
72
73 @return event dictionary with common event fields set.
74 """
75 test_class_name, test_name = EventBuilder._get_test_name_info(test)
Todd Fiala33896a92015-09-18 21:01:13 +000076
Todd Fialae83f1402015-09-18 22:45:31 +000077 event = EventBuilder.bare_event(event_type)
78 event.update({
Todd Fiala68615ce2015-09-15 21:38:04 +000079 "test_class": test_class_name,
80 "test_name": test_name,
Todd Fialaf77f8ae2015-09-18 22:57:04 +000081 "test_filename": inspect.getfile(test.__class__)
Todd Fiala33896a92015-09-18 21:01:13 +000082 })
Todd Fialae83f1402015-09-18 22:45:31 +000083 return event
Todd Fiala68615ce2015-09-15 21:38:04 +000084
85 @staticmethod
86 def _error_tuple_class(error_tuple):
87 """Returns the unittest error tuple's error class as a string.
88
89 @param error_tuple the error tuple provided by the test framework.
90
91 @return the error type (typically an exception) raised by the
92 test framework.
93 """
94 type_var = error_tuple[0]
95 module = inspect.getmodule(type_var)
96 if module:
97 return "{}.{}".format(module.__name__, type_var.__name__)
98 else:
99 return type_var.__name__
100
101 @staticmethod
102 def _error_tuple_message(error_tuple):
103 """Returns the unittest error tuple's error message.
104
105 @param error_tuple the error tuple provided by the test framework.
106
107 @return the error message provided by the test framework.
108 """
109 return str(error_tuple[1])
110
111 @staticmethod
Todd Fialae7e911f2015-09-18 07:08:09 +0000112 def _error_tuple_traceback(error_tuple):
113 """Returns the unittest error tuple's error message.
114
115 @param error_tuple the error tuple provided by the test framework.
116
117 @return the error message provided by the test framework.
118 """
119 return error_tuple[2]
120
121 @staticmethod
Todd Fiala68615ce2015-09-15 21:38:04 +0000122 def _event_dictionary_test_result(test, status):
123 """Returns an event dictionary with common test result fields set.
124
125 @param test a unittest.TestCase instance.
126
127 @param status the status/result of the test
128 (e.g. "success", "failure", etc.)
129
130 @return the event dictionary
131 """
132 event = EventBuilder._event_dictionary_common(test, "test_result")
133 event["status"] = status
134 return event
135
136 @staticmethod
137 def _event_dictionary_issue(test, status, error_tuple):
138 """Returns an event dictionary with common issue-containing test result
139 fields set.
140
141 @param test a unittest.TestCase instance.
142
143 @param status the status/result of the test
144 (e.g. "success", "failure", etc.)
145
146 @param error_tuple the error tuple as reported by the test runner.
147 This is of the form (type<error>, error).
148
149 @return the event dictionary
150 """
151 event = EventBuilder._event_dictionary_test_result(test, status)
152 event["issue_class"] = EventBuilder._error_tuple_class(error_tuple)
153 event["issue_message"] = EventBuilder._error_tuple_message(error_tuple)
Todd Fiala33896a92015-09-18 21:01:13 +0000154 backtrace = EventBuilder._error_tuple_traceback(error_tuple)
155 if backtrace is not None:
156 event["issue_backtrace"] = traceback.format_tb(backtrace)
Todd Fiala68615ce2015-09-15 21:38:04 +0000157 return event
158
159 @staticmethod
160 def event_for_start(test):
161 """Returns an event dictionary for the test start event.
162
163 @param test a unittest.TestCase instance.
164
165 @return the event dictionary
166 """
167 return EventBuilder._event_dictionary_common(test, "test_start")
168
169 @staticmethod
170 def event_for_success(test):
171 """Returns an event dictionary for a successful test.
172
173 @param test a unittest.TestCase instance.
174
175 @return the event dictionary
176 """
177 return EventBuilder._event_dictionary_test_result(test, "success")
178
179 @staticmethod
180 def event_for_unexpected_success(test, bugnumber):
181 """Returns an event dictionary for a test that succeeded but was
182 expected to fail.
183
184 @param test a unittest.TestCase instance.
185
186 @param bugnumber the issue identifier for the bug tracking the
187 fix request for the test expected to fail (but is in fact
188 passing here).
189
190 @return the event dictionary
191
192 """
193 event = EventBuilder._event_dictionary_test_result(
194 test, "unexpected_success")
195 if bugnumber:
196 event["bugnumber"] = str(bugnumber)
197 return event
198
199 @staticmethod
200 def event_for_failure(test, error_tuple):
201 """Returns an event dictionary for a test that failed.
202
203 @param test a unittest.TestCase instance.
204
205 @param error_tuple the error tuple as reported by the test runner.
206 This is of the form (type<error>, error).
207
208 @return the event dictionary
209 """
210 return EventBuilder._event_dictionary_issue(
211 test, "failure", error_tuple)
212
213 @staticmethod
214 def event_for_expected_failure(test, error_tuple, bugnumber):
215 """Returns an event dictionary for a test that failed as expected.
216
217 @param test a unittest.TestCase instance.
218
219 @param error_tuple the error tuple as reported by the test runner.
220 This is of the form (type<error>, error).
221
222 @param bugnumber the issue identifier for the bug tracking the
223 fix request for the test expected to fail.
224
225 @return the event dictionary
226
227 """
228 event = EventBuilder._event_dictionary_issue(
229 test, "expected_failure", error_tuple)
230 if bugnumber:
231 event["bugnumber"] = str(bugnumber)
232 return event
233
234 @staticmethod
235 def event_for_skip(test, reason):
236 """Returns an event dictionary for a test that was skipped.
237
238 @param test a unittest.TestCase instance.
239
240 @param reason the reason why the test is being skipped.
241
242 @return the event dictionary
243 """
244 event = EventBuilder._event_dictionary_test_result(test, "skip")
245 event["skip_reason"] = reason
246 return event
247
248 @staticmethod
249 def event_for_error(test, error_tuple):
250 """Returns an event dictionary for a test that hit a test execution error.
251
252 @param test a unittest.TestCase instance.
253
254 @param error_tuple the error tuple as reported by the test runner.
255 This is of the form (type<error>, error).
256
257 @return the event dictionary
258 """
259 return EventBuilder._event_dictionary_issue(test, "error", error_tuple)
260
261 @staticmethod
262 def event_for_cleanup_error(test, error_tuple):
263 """Returns an event dictionary for a test that hit a test execution error
264 during the test cleanup phase.
265
266 @param test a unittest.TestCase instance.
267
268 @param error_tuple the error tuple as reported by the test runner.
269 This is of the form (type<error>, error).
270
271 @return the event dictionary
272 """
273 event = EventBuilder._event_dictionary_issue(
274 test, "error", error_tuple)
275 event["issue_phase"] = "cleanup"
276 return event
277
Todd Fiala33896a92015-09-18 21:01:13 +0000278 @staticmethod
279 def add_entries_to_all_events(entries_dict):
280 """Specifies a dictionary of entries to add to all test events.
281
282 This provides a mechanism for, say, a parallel test runner to
283 indicate to each inferior dotest.py that it should add a
284 worker index to each.
285
286 Calling this method replaces all previous entries added
287 by a prior call to this.
288
289 Event build methods will overwrite any entries that collide.
290 Thus, the passed in dictionary is the base, which gets merged
291 over by event building when keys collide.
292
293 @param entries_dict a dictionary containing key and value
294 pairs that should be merged into all events created by the
295 event generator. May be None to clear out any extra entries.
296 """
297 EventBuilder.BASE_DICTIONARY = dict(entries_dict)
298
Todd Fiala68615ce2015-09-15 21:38:04 +0000299
300class ResultsFormatter(object):
Todd Fiala33896a92015-09-18 21:01:13 +0000301
Todd Fiala68615ce2015-09-15 21:38:04 +0000302 """Provides interface to formatting test results out to a file-like object.
303
304 This class allows the LLDB test framework's raw test-realted
305 events to be processed and formatted in any manner desired.
306 Test events are represented by python dictionaries, formatted
307 as in the EventBuilder class above.
308
309 ResultFormatter instances are given a file-like object in which
310 to write their results.
311
312 ResultFormatter lifetime looks like the following:
313
314 # The result formatter is created.
315 # The argparse options dictionary is generated from calling
316 # the SomeResultFormatter.arg_parser() with the options data
317 # passed to dotest.py via the "--results-formatter-options"
318 # argument. See the help on that for syntactic requirements
319 # on getting that parsed correctly.
320 formatter = SomeResultFormatter(file_like_object, argpared_options_dict)
321
322 # Single call to session start, before parsing any events.
323 formatter.begin_session()
324
Todd Fialae83f1402015-09-18 22:45:31 +0000325 formatter.handle_event({"event":"initialize",...})
326
Todd Fiala68615ce2015-09-15 21:38:04 +0000327 # Zero or more calls specified for events recorded during the test session.
328 # The parallel test runner manages getting results from all the inferior
329 # dotest processes, so from a new format perspective, don't worry about
330 # that. The formatter will be presented with a single stream of events
331 # sandwiched between a single begin_session()/end_session() pair in the
332 # parallel test runner process/thread.
333 for event in zero_or_more_test_events():
Todd Fialae83f1402015-09-18 22:45:31 +0000334 formatter.handle_event(event)
Todd Fiala68615ce2015-09-15 21:38:04 +0000335
Todd Fialae83f1402015-09-18 22:45:31 +0000336 # Single call to terminate/wrap-up. Formatters that need all the
337 # data before they can print a correct result (e.g. xUnit/JUnit),
338 # this is where the final report can be generated.
339 formatter.handle_event({"event":"terminate",...})
Todd Fiala68615ce2015-09-15 21:38:04 +0000340
341 It is not the formatter's responsibility to close the file_like_object.
342 (i.e. do not close it).
343
344 The lldb test framework passes these test events in real time, so they
345 arrive as they come in.
346
347 In the case of the parallel test runner, the dotest inferiors
348 add a 'pid' field to the dictionary that indicates which inferior
349 pid generated the event.
350
351 Note more events may be added in the future to support richer test
352 reporting functionality. One example: creating a true flaky test
353 result category so that unexpected successes really mean the test
354 is marked incorrectly (either should be marked flaky, or is indeed
355 passing consistently now and should have the xfail marker
356 removed). In this case, a flaky_success and flaky_fail event
357 likely will be added to capture these and support reporting things
358 like percentages of flaky test passing so we can see if we're
359 making some things worse/better with regards to failure rates.
360
361 Another example: announcing all the test methods that are planned
362 to be run, so we can better support redo operations of various kinds
363 (redo all non-run tests, redo non-run tests except the one that
364 was running [perhaps crashed], etc.)
365
366 Implementers are expected to override all the public methods
367 provided in this class. See each method's docstring to see
368 expectations about when the call should be chained.
369
370 """
371
372 @classmethod
373 def arg_parser(cls):
374 """@return arg parser used to parse formatter-specific options."""
375 parser = argparse.ArgumentParser(
376 description='{} options'.format(cls.__name__),
377 usage=('dotest.py --results-formatter-options='
378 '"--option1 value1 [--option2 value2 [...]]"'))
379 return parser
380
381 def __init__(self, out_file, options):
382 super(ResultsFormatter, self).__init__()
383 self.out_file = out_file
384 self.options = options
Greg Clayton1827fc22015-09-19 00:39:09 +0000385 self.using_terminal = False
Todd Fiala68615ce2015-09-15 21:38:04 +0000386 if not self.out_file:
387 raise Exception("ResultsFormatter created with no file object")
388 self.start_time_by_test = {}
389
390 # Lock that we use while mutating inner state, like the
391 # total test count and the elements. We minimize how
392 # long we hold the lock just to keep inner state safe, not
393 # entirely consistent from the outside.
394 self.lock = threading.Lock()
395
Todd Fialae83f1402015-09-18 22:45:31 +0000396 def handle_event(self, test_event):
397 """Handles the test event for collection into the formatter output.
Todd Fiala68615ce2015-09-15 21:38:04 +0000398
399 Derived classes may override this but should call down to this
400 implementation first.
401
402 @param test_event the test event as formatted by one of the
403 event_for_* calls.
404 """
405 pass
406
407 def track_start_time(self, test_class, test_name, start_time):
408 """Tracks the start time of a test so elapsed time can be computed.
409
410 This alleviates the need for test results to be processed serially
411 by test. It will save the start time for the test so that
412 elapsed_time_for_test() can compute the elapsed time properly.
413 """
414 if test_class is None or test_name is None:
415 return
416
417 test_key = "{}.{}".format(test_class, test_name)
418 with self.lock:
419 self.start_time_by_test[test_key] = start_time
420
421 def elapsed_time_for_test(self, test_class, test_name, end_time):
422 """Returns the elapsed time for a test.
423
424 This function can only be called once per test and requires that
425 the track_start_time() method be called sometime prior to calling
426 this method.
427 """
428 if test_class is None or test_name is None:
429 return -2.0
430
431 test_key = "{}.{}".format(test_class, test_name)
432 with self.lock:
433 if test_key not in self.start_time_by_test:
434 return -1.0
435 else:
436 start_time = self.start_time_by_test[test_key]
437 del self.start_time_by_test[test_key]
438 return end_time - start_time
439
Greg Clayton1827fc22015-09-19 00:39:09 +0000440 def is_using_terminal(self):
441 """Returns True if this results formatter is using the terminal and output should be avoided"""
442 return self.using_terminal
Todd Fiala68615ce2015-09-15 21:38:04 +0000443
444class XunitFormatter(ResultsFormatter):
445 """Provides xUnit-style formatted output.
446 """
447
448 # Result mapping arguments
449 RM_IGNORE = 'ignore'
450 RM_SUCCESS = 'success'
451 RM_FAILURE = 'failure'
452 RM_PASSTHRU = 'passthru'
453
454 @staticmethod
Todd Fiala8effde42015-09-18 16:00:52 +0000455 def _build_illegal_xml_regex():
Todd Fiala33896a92015-09-18 21:01:13 +0000456 """Contructs a regex to match all illegal xml characters.
457
458 Expects to be used against a unicode string."""
Todd Fiala8effde42015-09-18 16:00:52 +0000459 # Construct the range pairs of invalid unicode chareacters.
460 illegal_chars_u = [
461 (0x00, 0x08), (0x0B, 0x0C), (0x0E, 0x1F), (0x7F, 0x84),
462 (0x86, 0x9F), (0xFDD0, 0xFDDF), (0xFFFE, 0xFFFF)]
463
464 # For wide builds, we have more.
465 if sys.maxunicode >= 0x10000:
466 illegal_chars_u.extend(
467 [(0x1FFFE, 0x1FFFF), (0x2FFFE, 0x2FFFF), (0x3FFFE, 0x3FFFF),
468 (0x4FFFE, 0x4FFFF), (0x5FFFE, 0x5FFFF), (0x6FFFE, 0x6FFFF),
469 (0x7FFFE, 0x7FFFF), (0x8FFFE, 0x8FFFF), (0x9FFFE, 0x9FFFF),
470 (0xAFFFE, 0xAFFFF), (0xBFFFE, 0xBFFFF), (0xCFFFE, 0xCFFFF),
471 (0xDFFFE, 0xDFFFF), (0xEFFFE, 0xEFFFF), (0xFFFFE, 0xFFFFF),
472 (0x10FFFE, 0x10FFFF)])
473
474 # Build up an array of range expressions.
475 illegal_ranges = [
476 "%s-%s" % (unichr(low), unichr(high))
477 for (low, high) in illegal_chars_u]
478
479 # Compile the regex
480 return re.compile(u'[%s]' % u''.join(illegal_ranges))
481
482 @staticmethod
Todd Fiala68615ce2015-09-15 21:38:04 +0000483 def _quote_attribute(text):
484 """Returns the given text in a manner safe for usage in an XML attribute.
485
486 @param text the text that should appear within an XML attribute.
487 @return the attribute-escaped version of the input text.
488 """
489 return xml.sax.saxutils.quoteattr(text)
490
Todd Fiala8effde42015-09-18 16:00:52 +0000491 def _replace_invalid_xml(self, str_or_unicode):
Todd Fiala33896a92015-09-18 21:01:13 +0000492 """Replaces invalid XML characters with a '?'.
493
494 @param str_or_unicode a string to replace invalid XML
495 characters within. Can be unicode or not. If not unicode,
496 assumes it is a byte string in utf-8 encoding.
497
498 @returns a utf-8-encoded byte string with invalid
499 XML replaced with '?'.
500 """
Todd Fiala8effde42015-09-18 16:00:52 +0000501 # Get the content into unicode
502 if isinstance(str_or_unicode, str):
503 unicode_content = str_or_unicode.decode('utf-8')
504 else:
505 unicode_content = str_or_unicode
506 return self.invalid_xml_re.sub(u'?', unicode_content).encode('utf-8')
507
Todd Fiala68615ce2015-09-15 21:38:04 +0000508 @classmethod
509 def arg_parser(cls):
510 """@return arg parser used to parse formatter-specific options."""
511 parser = super(XunitFormatter, cls).arg_parser()
512
513 # These are valid choices for results mapping.
514 results_mapping_choices = [
515 XunitFormatter.RM_IGNORE,
516 XunitFormatter.RM_SUCCESS,
517 XunitFormatter.RM_FAILURE,
518 XunitFormatter.RM_PASSTHRU]
519 parser.add_argument(
Todd Fiala33896a92015-09-18 21:01:13 +0000520 "--assert-on-unknown-events",
521 action="store_true",
522 help=('cause unknown test events to generate '
523 'a python assert. Default is to ignore.'))
524 parser.add_argument(
Todd Fiala68615ce2015-09-15 21:38:04 +0000525 "--xpass", action="store", choices=results_mapping_choices,
526 default=XunitFormatter.RM_FAILURE,
527 help=('specify mapping from unexpected success to jUnit/xUnit '
528 'result type'))
529 parser.add_argument(
530 "--xfail", action="store", choices=results_mapping_choices,
531 default=XunitFormatter.RM_IGNORE,
532 help=('specify mapping from expected failure to jUnit/xUnit '
533 'result type'))
534 return parser
535
536 def __init__(self, out_file, options):
537 """Initializes the XunitFormatter instance.
538 @param out_file file-like object where formatted output is written.
539 @param options_dict specifies a dictionary of options for the
540 formatter.
541 """
542 # Initialize the parent
543 super(XunitFormatter, self).__init__(out_file, options)
544 self.text_encoding = "UTF-8"
Todd Fiala8effde42015-09-18 16:00:52 +0000545 self.invalid_xml_re = XunitFormatter._build_illegal_xml_regex()
Todd Fiala68615ce2015-09-15 21:38:04 +0000546
547 self.total_test_count = 0
548
549 self.elements = {
550 "successes": [],
551 "errors": [],
552 "failures": [],
553 "skips": [],
554 "unexpected_successes": [],
555 "expected_failures": [],
556 "all": []
557 }
558
559 self.status_handlers = {
560 "success": self._handle_success,
561 "failure": self._handle_failure,
562 "error": self._handle_error,
563 "skip": self._handle_skip,
564 "expected_failure": self._handle_expected_failure,
565 "unexpected_success": self._handle_unexpected_success
566 }
567
Todd Fialae83f1402015-09-18 22:45:31 +0000568 def handle_event(self, test_event):
569 super(XunitFormatter, self).handle_event(test_event)
Todd Fiala68615ce2015-09-15 21:38:04 +0000570
571 event_type = test_event["event"]
572 if event_type is None:
573 return
574
Todd Fialae83f1402015-09-18 22:45:31 +0000575 if event_type == "terminate":
576 self._finish_output()
577 elif event_type == "test_start":
Todd Fiala68615ce2015-09-15 21:38:04 +0000578 self.track_start_time(
579 test_event["test_class"],
580 test_event["test_name"],
581 test_event["event_time"])
582 elif event_type == "test_result":
583 self._process_test_result(test_event)
584 else:
Todd Fiala33896a92015-09-18 21:01:13 +0000585 # This is an unknown event.
586 if self.options.assert_on_unknown_events:
587 raise Exception("unknown event type {} from {}\n".format(
588 event_type, test_event))
Todd Fiala68615ce2015-09-15 21:38:04 +0000589
590 def _handle_success(self, test_event):
591 """Handles a test success.
592 @param test_event the test event to handle.
593 """
594 result = self._common_add_testcase_entry(test_event)
595 with self.lock:
596 self.elements["successes"].append(result)
597
598 def _handle_failure(self, test_event):
599 """Handles a test failure.
600 @param test_event the test event to handle.
601 """
Todd Fiala8effde42015-09-18 16:00:52 +0000602 message = self._replace_invalid_xml(test_event["issue_message"])
603 backtrace = self._replace_invalid_xml(
604 "".join(test_event.get("issue_backtrace", [])))
Todd Fialae7e911f2015-09-18 07:08:09 +0000605
Todd Fiala68615ce2015-09-15 21:38:04 +0000606 result = self._common_add_testcase_entry(
607 test_event,
Todd Fiala8effde42015-09-18 16:00:52 +0000608 inner_content=(
609 '<failure type={} message={}><![CDATA[{}]]></failure>'.format(
610 XunitFormatter._quote_attribute(test_event["issue_class"]),
611 XunitFormatter._quote_attribute(message),
612 backtrace)
Todd Fialae7e911f2015-09-18 07:08:09 +0000613 ))
Todd Fiala68615ce2015-09-15 21:38:04 +0000614 with self.lock:
615 self.elements["failures"].append(result)
616
617 def _handle_error(self, test_event):
618 """Handles a test error.
619 @param test_event the test event to handle.
620 """
Todd Fiala8effde42015-09-18 16:00:52 +0000621 message = self._replace_invalid_xml(test_event["issue_message"])
622 backtrace = self._replace_invalid_xml(
623 "".join(test_event.get("issue_backtrace", [])))
Todd Fialae7e911f2015-09-18 07:08:09 +0000624
Todd Fiala68615ce2015-09-15 21:38:04 +0000625 result = self._common_add_testcase_entry(
626 test_event,
Todd Fiala8effde42015-09-18 16:00:52 +0000627 inner_content=(
628 '<error type={} message={}><![CDATA[{}]]></error>'.format(
629 XunitFormatter._quote_attribute(test_event["issue_class"]),
630 XunitFormatter._quote_attribute(message),
631 backtrace)
Todd Fialae7e911f2015-09-18 07:08:09 +0000632 ))
Todd Fiala68615ce2015-09-15 21:38:04 +0000633 with self.lock:
634 self.elements["errors"].append(result)
635
636 def _handle_skip(self, test_event):
637 """Handles a skipped test.
638 @param test_event the test event to handle.
639 """
Todd Fiala8effde42015-09-18 16:00:52 +0000640 reason = self._replace_invalid_xml(test_event.get("skip_reason", ""))
Todd Fiala68615ce2015-09-15 21:38:04 +0000641 result = self._common_add_testcase_entry(
642 test_event,
643 inner_content='<skipped message={} />'.format(
Todd Fiala8effde42015-09-18 16:00:52 +0000644 XunitFormatter._quote_attribute(reason)))
Todd Fiala68615ce2015-09-15 21:38:04 +0000645 with self.lock:
646 self.elements["skips"].append(result)
647
648 def _handle_expected_failure(self, test_event):
649 """Handles a test that failed as expected.
650 @param test_event the test event to handle.
651 """
652 if self.options.xfail == XunitFormatter.RM_PASSTHRU:
653 # This is not a natively-supported junit/xunit
654 # testcase mode, so it might fail a validating
655 # test results viewer.
656 if "bugnumber" in test_event:
657 bug_id_attribute = 'bug-id={} '.format(
658 XunitFormatter._quote_attribute(test_event["bugnumber"]))
659 else:
660 bug_id_attribute = ''
661
662 result = self._common_add_testcase_entry(
663 test_event,
664 inner_content=(
665 '<expected-failure {}type={} message={} />'.format(
666 bug_id_attribute,
667 XunitFormatter._quote_attribute(
668 test_event["issue_class"]),
669 XunitFormatter._quote_attribute(
670 test_event["issue_message"]))
671 ))
672 with self.lock:
673 self.elements["expected_failures"].append(result)
674 elif self.options.xfail == XunitFormatter.RM_SUCCESS:
675 result = self._common_add_testcase_entry(test_event)
676 with self.lock:
677 self.elements["successes"].append(result)
678 elif self.options.xfail == XunitFormatter.RM_FAILURE:
679 result = self._common_add_testcase_entry(
680 test_event,
681 inner_content='<failure type={} message={} />'.format(
682 XunitFormatter._quote_attribute(test_event["issue_class"]),
683 XunitFormatter._quote_attribute(
684 test_event["issue_message"])))
685 with self.lock:
686 self.elements["failures"].append(result)
687 elif self.options.xfail == XunitFormatter.RM_IGNORE:
688 pass
689 else:
690 raise Exception(
691 "unknown xfail option: {}".format(self.options.xfail))
692
693 def _handle_unexpected_success(self, test_event):
694 """Handles a test that passed but was expected to fail.
695 @param test_event the test event to handle.
696 """
697 if self.options.xpass == XunitFormatter.RM_PASSTHRU:
698 # This is not a natively-supported junit/xunit
699 # testcase mode, so it might fail a validating
700 # test results viewer.
701 result = self._common_add_testcase_entry(
702 test_event,
703 inner_content=("<unexpected-success />"))
704 with self.lock:
705 self.elements["unexpected_successes"].append(result)
706 elif self.options.xpass == XunitFormatter.RM_SUCCESS:
707 # Treat the xpass as a success.
708 result = self._common_add_testcase_entry(test_event)
709 with self.lock:
710 self.elements["successes"].append(result)
711 elif self.options.xpass == XunitFormatter.RM_FAILURE:
712 # Treat the xpass as a failure.
713 if "bugnumber" in test_event:
714 message = "unexpected success (bug_id:{})".format(
715 test_event["bugnumber"])
716 else:
717 message = "unexpected success (bug_id:none)"
718 result = self._common_add_testcase_entry(
719 test_event,
720 inner_content='<failure type={} message={} />'.format(
721 XunitFormatter._quote_attribute("unexpected_success"),
722 XunitFormatter._quote_attribute(message)))
723 with self.lock:
724 self.elements["failures"].append(result)
725 elif self.options.xpass == XunitFormatter.RM_IGNORE:
726 # Ignore the xpass result as far as xUnit reporting goes.
727 pass
728 else:
729 raise Exception("unknown xpass option: {}".format(
730 self.options.xpass))
731
732 def _process_test_result(self, test_event):
733 """Processes the test_event known to be a test result.
734
735 This categorizes the event appropriately and stores the data needed
736 to generate the final xUnit report. This method skips events that
737 cannot be represented in xUnit output.
738 """
739 if "status" not in test_event:
740 raise Exception("test event dictionary missing 'status' key")
741
742 status = test_event["status"]
743 if status not in self.status_handlers:
744 raise Exception("test event status '{}' unsupported".format(
745 status))
746
747 # Call the status handler for the test result.
748 self.status_handlers[status](test_event)
749
750 def _common_add_testcase_entry(self, test_event, inner_content=None):
751 """Registers a testcase result, and returns the text created.
752
753 The caller is expected to manage failure/skip/success counts
754 in some kind of appropriate way. This call simply constructs
755 the XML and appends the returned result to the self.all_results
756 list.
757
758 @param test_event the test event dictionary.
759
760 @param inner_content if specified, gets included in the <testcase>
761 inner section, at the point before stdout and stderr would be
762 included. This is where a <failure/>, <skipped/>, <error/>, etc.
763 could go.
764
765 @return the text of the xml testcase element.
766 """
767
768 # Get elapsed time.
769 test_class = test_event["test_class"]
770 test_name = test_event["test_name"]
771 event_time = test_event["event_time"]
772 time_taken = self.elapsed_time_for_test(
773 test_class, test_name, event_time)
774
775 # Plumb in stdout/stderr once we shift over to only test results.
776 test_stdout = ''
777 test_stderr = ''
778
779 # Formulate the output xml.
780 if not inner_content:
781 inner_content = ""
782 result = (
783 '<testcase classname="{}" name="{}" time="{:.3f}">'
784 '{}{}{}</testcase>'.format(
785 test_class,
786 test_name,
787 time_taken,
788 inner_content,
789 test_stdout,
790 test_stderr))
791
792 # Save the result, update total test count.
793 with self.lock:
794 self.total_test_count += 1
795 self.elements["all"].append(result)
796
797 return result
798
Todd Fialae83f1402015-09-18 22:45:31 +0000799 def _finish_output_no_lock(self):
Todd Fiala68615ce2015-09-15 21:38:04 +0000800 """Flushes out the report of test executions to form valid xml output.
801
802 xUnit output is in XML. The reporting system cannot complete the
803 formatting of the output without knowing when there is no more input.
804 This call addresses notifcation of the completed test run and thus is
805 when we can finish off the report output.
806 """
807
808 # Figure out the counts line for the testsuite. If we have
809 # been counting either unexpected successes or expected
810 # failures, we'll output those in the counts, at the risk of
811 # being invalidated by a validating test results viewer.
812 # These aren't counted by default so they won't show up unless
813 # the user specified a formatter option to include them.
814 xfail_count = len(self.elements["expected_failures"])
815 xpass_count = len(self.elements["unexpected_successes"])
816 if xfail_count > 0 or xpass_count > 0:
817 extra_testsuite_attributes = (
818 ' expected-failures="{}"'
819 ' unexpected-successes="{}"'.format(xfail_count, xpass_count))
820 else:
821 extra_testsuite_attributes = ""
822
823 # Output the header.
824 self.out_file.write(
825 '<?xml version="1.0" encoding="{}"?>\n'
Todd Fiala038bf832015-09-18 01:43:08 +0000826 '<testsuites>'
Todd Fiala68615ce2015-09-15 21:38:04 +0000827 '<testsuite name="{}" tests="{}" errors="{}" failures="{}" '
828 'skip="{}"{}>\n'.format(
829 self.text_encoding,
830 "LLDB test suite",
831 self.total_test_count,
832 len(self.elements["errors"]),
833 len(self.elements["failures"]),
834 len(self.elements["skips"]),
835 extra_testsuite_attributes))
836
837 # Output each of the test result entries.
838 for result in self.elements["all"]:
839 self.out_file.write(result + '\n')
840
841 # Close off the test suite.
Todd Fiala038bf832015-09-18 01:43:08 +0000842 self.out_file.write('</testsuite></testsuites>\n')
Todd Fiala68615ce2015-09-15 21:38:04 +0000843
Todd Fialae83f1402015-09-18 22:45:31 +0000844 def _finish_output(self):
Todd Fiala68615ce2015-09-15 21:38:04 +0000845 with self.lock:
Todd Fialae83f1402015-09-18 22:45:31 +0000846 self._finish_output_no_lock()
Todd Fiala68615ce2015-09-15 21:38:04 +0000847
848
849class RawPickledFormatter(ResultsFormatter):
850 """Formats events as a pickled stream.
851
852 The parallel test runner has inferiors pickle their results and send them
853 over a socket back to the parallel test. The parallel test runner then
854 aggregates them into the final results formatter (e.g. xUnit).
855 """
856
857 @classmethod
858 def arg_parser(cls):
859 """@return arg parser used to parse formatter-specific options."""
860 parser = super(RawPickledFormatter, cls).arg_parser()
861 return parser
862
863 def __init__(self, out_file, options):
864 super(RawPickledFormatter, self).__init__(out_file, options)
865 self.pid = os.getpid()
866
Todd Fialae83f1402015-09-18 22:45:31 +0000867 def handle_event(self, test_event):
868 super(RawPickledFormatter, self).handle_event(test_event)
Todd Fiala68615ce2015-09-15 21:38:04 +0000869
Todd Fialae83f1402015-09-18 22:45:31 +0000870 # Convert initialize/terminate events into job_begin/job_end events.
871 event_type = test_event["event"]
872 if event_type is None:
873 return
874
875 if event_type == "initialize":
876 test_event["event"] = "job_begin"
877 elif event_type == "terminate":
878 test_event["event"] = "job_end"
879
880 # Tack on the pid.
881 test_event["pid"] = self.pid
Todd Fiala68615ce2015-09-15 21:38:04 +0000882
Todd Fiala68615ce2015-09-15 21:38:04 +0000883 # Send it as {serialized_length_of_serialized_bytes}#{serialized_bytes}
884 pickled_message = cPickle.dumps(test_event)
885 self.out_file.send(
886 "{}#{}".format(len(pickled_message), pickled_message))
887
Greg Clayton1827fc22015-09-19 00:39:09 +0000888class Curses(ResultsFormatter):
889 """Receives live results from tests that are running and reports them to the terminal in a curses GUI"""
890
891 def clear_line(self, y):
892 self.out_file.write("\033[%u;0H\033[2K" % (y))
893 self.out_file.flush()
894
895 def print_line(self, y, str):
896 self.out_file.write("\033[%u;0H\033[2K%s" % (y, str))
897 self.out_file.flush()
898
899 def __init__(self, out_file, options):
900 # Initialize the parent
901 super(Curses, self).__init__(out_file, options)
902 self.using_terminal = True
903 self.have_curses = True
904 self.initialize_event = None
905 self.jobs = [None] * 64
906 self.job_tests = [None] * 64
907 try:
908 import lldbcurses
909 self.main_window = lldbcurses.intialize_curses()
Greg Clayton1827fc22015-09-19 00:39:09 +0000910 self.main_window.refresh()
911 except:
912 self.have_curses = False
913 lldbcurses.terminate_curses()
914 self.using_terminal = False
915 print "Unexpected error:", sys.exc_info()[0]
916 raise
917
918
919 self.line_dict = dict()
920 self.events_file = open("/tmp/events.txt", "w")
921 # self.formatters = list()
922 # if tee_results_formatter:
923 # self.formatters.append(tee_results_formatter)
924
925 def status_to_short_str(self, status):
926 if status == 'success':
927 return '.'
928 elif status == 'failure':
929 return 'F'
930 elif status == 'unexpected_success':
931 return '?'
932 elif status == 'expected_failure':
933 return 'X'
934 elif status == 'skip':
935 return 'S'
936 elif status == 'error':
937 return 'E'
938 else:
939 return status
940 def handle_event(self, test_event):
Greg Claytonb0d148e2015-09-21 17:25:01 +0000941 with self.lock:
942 super(Curses, self).handle_event(test_event)
943 # for formatter in self.formatters:
944 # formatter.process_event(test_event)
945 if self.have_curses:
946 import lldbcurses
947 worker_index = -1
948 if 'worker_index' in test_event:
949 worker_index = test_event['worker_index']
950 if 'event' in test_event:
951 print >>self.events_file, str(test_event)
952 event = test_event['event']
953 if event == 'test_start':
954 name = test_event['test_class'] + '.' + test_event['test_name']
955 self.job_tests[worker_index] = test_event
956 if 'pid' in test_event:
957 line = 'pid: %5d ' % (test_event['pid']) + name
958 else:
959 line = name
960 self.job_panel.set_line(worker_index, line)
961 self.main_window.refresh()
962 elif event == 'test_result':
963 status = test_event['status']
964 self.status_panel.increment_status(status)
965 if 'pid' in test_event:
966 line = 'pid: %5d ' % (test_event['pid'])
967 else:
968 line = ''
969 self.job_panel.set_line(worker_index, line)
970 # if status != 'success' and status != 'skip' and status != 'expect_failure':
971 name = test_event['test_class'] + '.' + test_event['test_name']
972 time = test_event['event_time'] - self.job_tests[worker_index]['event_time']
973 self.fail_panel.append_line('%s (%6.2f sec) %s' % (self.status_to_short_str(status), time, name))
974 self.main_window.refresh()
975 self.job_tests[worker_index] = ''
976 elif event == 'job_begin':
977 self.jobs[worker_index] = test_event
978 if 'pid' in test_event:
979 line = 'pid: %5d ' % (test_event['pid'])
980 else:
981 line = ''
982 self.job_panel.set_line(worker_index, line)
983 elif event == 'job_end':
984 self.jobs[worker_index] = ''
985 self.job_panel.set_line(worker_index, '')
986 elif event == 'initialize':
987 self.initialize_event = test_event
988 num_jobs = test_event['worker_count']
989 job_frame = self.main_window.get_contained_rect(height=num_jobs+2)
990 fail_frame = self.main_window.get_contained_rect(top_inset=num_jobs+2, bottom_inset=1)
991 status_frame = self.main_window.get_contained_rect(height=1, top_inset=self.main_window.get_size().h-1)
992 self.job_panel = lldbcurses.BoxedPanel(job_frame, "Jobs")
993 self.fail_panel = lldbcurses.BoxedPanel(fail_frame, "Completed Tests")
994 self.status_panel = lldbcurses.StatusPanel(status_frame)
995 self.status_panel.add_status_item(name="success", title="Success", format="%u", width=20, value=0, update=False)
996 self.status_panel.add_status_item(name="failure", title="Failure", format="%u", width=20, value=0, update=False)
997 self.status_panel.add_status_item(name="error", title="Error", format="%u", width=20, value=0, update=False)
998 self.status_panel.add_status_item(name="skip", title="Skipped", format="%u", width=20, value=0, update=True)
999 self.status_panel.add_status_item(name="expected_failure", title="Expected Failure", format="%u", width=30, value=0, update=False)
1000 self.status_panel.add_status_item(name="unexpected_success", title="Unexpected Success", format="%u", width=30, value=0, update=False)
1001 self.main_window.refresh()
1002 elif event == 'terminate':
1003 lldbcurses.terminate_curses()
1004 self.using_terminal = False
1005
Todd Fiala33896a92015-09-18 21:01:13 +00001006
1007class DumpFormatter(ResultsFormatter):
1008 """Formats events to the file as their raw python dictionary format."""
1009
Todd Fialae83f1402015-09-18 22:45:31 +00001010 def handle_event(self, test_event):
1011 super(DumpFormatter, self).handle_event(test_event)
Todd Fiala33896a92015-09-18 21:01:13 +00001012 self.out_file.write("\n" + pprint.pformat(test_event) + "\n")