samba-tool: Fix enum values in dns.py
[Samba.git] / selftest / subunithelper.py
blob6f1fdcee127284e057282ba0d1c9ec854e73bbf4
1 # Python module for parsing and generating the Subunit protocol
2 # (Samba-specific)
3 # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 __all__ = ['parse_results']
20 import re
21 import sys
22 import subunit
23 import subunit.iso8601
24 import testtools
25 from testtools import content, content_type
27 VALID_RESULTS = ['success', 'successful', 'failure', 'fail', 'skip', 'knownfail', 'error', 'xfail', 'skip-testsuite', 'testsuite-failure', 'testsuite-xfail', 'testsuite-success', 'testsuite-error', 'uxsuccess', 'testsuite-uxsuccess']
29 class TestsuiteEnabledTestResult(testtools.testresult.TestResult):
31 def start_testsuite(self, name):
32 raise NotImplementedError(self.start_testsuite)
35 def parse_results(msg_ops, statistics, fh):
36 exitcode = 0
37 open_tests = {}
39 while fh:
40 l = fh.readline()
41 if l == "":
42 break
43 parts = l.split(None, 1)
44 if not len(parts) == 2 or not l.startswith(parts[0]):
45 msg_ops.output_msg(l)
46 continue
47 command = parts[0].rstrip(":")
48 arg = parts[1]
49 if command in ("test", "testing"):
50 msg_ops.control_msg(l)
51 name = arg.rstrip()
52 test = subunit.RemotedTestCase(name)
53 if name in open_tests:
54 msg_ops.addError(open_tests.pop(name), subunit.RemoteError(u"Test already running"))
55 msg_ops.startTest(test)
56 open_tests[name] = test
57 elif command == "time":
58 msg_ops.control_msg(l)
59 try:
60 dt = subunit.iso8601.parse_date(arg.rstrip("\n"))
61 except TypeError, e:
62 print "Unable to parse time line: %s" % arg.rstrip("\n")
63 else:
64 msg_ops.time(dt)
65 elif command in VALID_RESULTS:
66 msg_ops.control_msg(l)
67 result = command
68 grp = re.match("(.*?)( \[)?([ \t]*)( multipart)?\n", arg)
69 (testname, hasreason) = (grp.group(1), grp.group(2))
70 if hasreason:
71 reason = ""
72 # reason may be specified in next lines
73 terminated = False
74 while fh:
75 l = fh.readline()
76 if l == "":
77 break
78 msg_ops.control_msg(l)
79 if l == "]\n":
80 terminated = True
81 break
82 else:
83 reason += l
85 remote_error = subunit.RemoteError(reason.decode("utf-8"))
87 if not terminated:
88 statistics['TESTS_ERROR']+=1
89 msg_ops.addError(subunit.RemotedTestCase(testname), subunit.RemoteError(u"reason (%s) interrupted" % result))
90 return 1
91 else:
92 reason = None
93 remote_error = subunit.RemoteError(u"No reason specified")
94 if result in ("success", "successful"):
95 try:
96 test = open_tests.pop(testname)
97 except KeyError:
98 statistics['TESTS_ERROR']+=1
99 exitcode = 1
100 msg_ops.addError(subunit.RemotedTestCase(testname), subunit.RemoteError(u"Test was never started"))
101 else:
102 statistics['TESTS_EXPECTED_OK']+=1
103 msg_ops.addSuccess(test)
104 elif result in ("xfail", "knownfail"):
105 try:
106 test = open_tests.pop(testname)
107 except KeyError:
108 statistics['TESTS_ERROR']+=1
109 exitcode = 1
110 msg_ops.addError(subunit.RemotedTestCase(testname), subunit.RemoteError(u"Test was never started"))
111 else:
112 statistics['TESTS_EXPECTED_FAIL']+=1
113 msg_ops.addExpectedFailure(test, remote_error)
114 elif result in ("uxsuccess", ):
115 try:
116 test = open_tests.pop(testname)
117 except KeyError:
118 statistics['TESTS_ERROR']+=1
119 exitcode = 1
120 msg_ops.addError(subunit.RemotedTestCase(testname), subunit.RemoteError(u"Test was never started"))
121 else:
122 statistics['TESTS_UNEXPECTED_OK']+=1
123 msg_ops.addUnexpectedSuccess(test, remote_error)
124 exitcode = 1
125 elif result in ("failure", "fail"):
126 try:
127 test = open_tests.pop(testname)
128 except KeyError:
129 statistics['TESTS_ERROR']+=1
130 exitcode = 1
131 msg_ops.addError(subunit.RemotedTestCase(testname), subunit.RemoteError(u"Test was never started"))
132 else:
133 statistics['TESTS_UNEXPECTED_FAIL']+=1
134 exitcode = 1
135 msg_ops.addFailure(test, remote_error)
136 elif result == "skip":
137 statistics['TESTS_SKIP']+=1
138 # Allow tests to be skipped without prior announcement of test
139 try:
140 test = open_tests.pop(testname)
141 except KeyError:
142 test = subunit.RemotedTestCase(testname)
143 msg_ops.addSkip(test, reason)
144 elif result == "error":
145 statistics['TESTS_ERROR']+=1
146 exitcode = 1
147 try:
148 test = open_tests.pop(testname)
149 except KeyError:
150 test = subunit.RemotedTestCase(testname)
151 msg_ops.addError(test, remote_error)
152 elif result == "skip-testsuite":
153 msg_ops.skip_testsuite(testname)
154 elif result == "testsuite-success":
155 msg_ops.end_testsuite(testname, "success", reason)
156 elif result == "testsuite-failure":
157 msg_ops.end_testsuite(testname, "failure", reason)
158 exitcode = 1
159 elif result == "testsuite-xfail":
160 msg_ops.end_testsuite(testname, "xfail", reason)
161 elif result == "testsuite-uxsuccess":
162 msg_ops.end_testsuite(testname, "uxsuccess", reason)
163 exitcode = 1
164 elif result == "testsuite-error":
165 msg_ops.end_testsuite(testname, "error", reason)
166 exitcode = 1
167 else:
168 raise AssertionError("Recognized but unhandled result %r" %
169 result)
170 elif command == "testsuite":
171 msg_ops.start_testsuite(arg.strip())
172 elif command == "progress":
173 arg = arg.strip()
174 if arg == "pop":
175 msg_ops.progress(None, subunit.PROGRESS_POP)
176 elif arg == "push":
177 msg_ops.progress(None, subunit.PROGRESS_PUSH)
178 elif arg[0] in '+-':
179 msg_ops.progress(int(arg), subunit.PROGRESS_CUR)
180 else:
181 msg_ops.progress(int(arg), subunit.PROGRESS_SET)
182 else:
183 msg_ops.output_msg(l)
185 while open_tests:
186 test = subunit.RemotedTestCase(open_tests.popitem()[1])
187 msg_ops.addError(test, subunit.RemoteError(u"was started but never finished!"))
188 statistics['TESTS_ERROR']+=1
189 exitcode = 1
191 return exitcode
194 class SubunitOps(subunit.TestProtocolClient,TestsuiteEnabledTestResult):
196 # The following are Samba extensions:
197 def start_testsuite(self, name):
198 self._stream.write("testsuite: %s\n" % name)
200 def skip_testsuite(self, name, reason=None):
201 if reason:
202 self._stream.write("skip-testsuite: %s [\n%s\n]\n" % (name, reason))
203 else:
204 self._stream.write("skip-testsuite: %s\n" % name)
206 def end_testsuite(self, name, result, reason=None):
207 if reason:
208 self._stream.write("testsuite-%s: %s [\n%s\n]\n" % (result, name, reason))
209 else:
210 self._stream.write("testsuite-%s: %s\n" % (result, name))
212 def output_msg(self, msg):
213 self._stream.write(msg)
216 def read_test_regexes(name):
217 ret = {}
218 f = open(name, 'r')
219 try:
220 for l in f:
221 l = l.strip()
222 if l == "" or l[0] == "#":
223 continue
224 if "#" in l:
225 (regex, reason) = l.split("#", 1)
226 ret[regex.strip()] = reason.strip()
227 else:
228 ret[l] = None
229 finally:
230 f.close()
231 return ret
234 def find_in_list(regexes, fullname):
235 for regex, reason in regexes.iteritems():
236 if re.match(regex, fullname):
237 if reason is None:
238 return ""
239 return reason
240 return None
243 class ImmediateFail(Exception):
244 """Raised to abort immediately."""
246 def __init__(self):
247 super(ImmediateFail, self).__init__("test failed and fail_immediately set")
250 class FilterOps(testtools.testresult.TestResult):
252 def control_msg(self, msg):
253 pass # We regenerate control messages, so ignore this
255 def time(self, time):
256 self._ops.time(time)
258 def progress(self, delta, whence):
259 self._ops.progress(delta, whence)
261 def output_msg(self, msg):
262 if self.output is None:
263 sys.stdout.write(msg)
264 else:
265 self.output+=msg
267 def startTest(self, test):
268 self.seen_output = True
269 test = self._add_prefix(test)
270 if self.strip_ok_output:
271 self.output = ""
273 self._ops.startTest(test)
275 def _add_prefix(self, test):
276 prefix = ""
277 suffix = ""
278 if self.prefix is not None:
279 prefix = self.prefix
280 if self.suffix is not None:
281 suffix = self.suffix
283 return subunit.RemotedTestCase(prefix + test.id() + suffix)
285 def addError(self, test, details=None):
286 test = self._add_prefix(test)
287 self.error_added+=1
288 self.total_error+=1
289 self._ops.addError(test, details)
290 self.output = None
291 if self.fail_immediately:
292 raise ImmediateFail()
294 def addSkip(self, test, details=None):
295 self.seen_output = True
296 test = self._add_prefix(test)
297 self._ops.addSkip(test, details)
298 self.output = None
300 def addExpectedFailure(self, test, details=None):
301 test = self._add_prefix(test)
302 self._ops.addExpectedFailure(test, details)
303 self.output = None
305 def addUnexpectedSuccess(self, test, details=None):
306 test = self._add_prefix(test)
307 self.uxsuccess_added+=1
308 self.total_uxsuccess+=1
309 self._ops.addUnexpectedSuccess(test, details)
310 if self.output:
311 self._ops.output_msg(self.output)
312 self.output = None
313 if self.fail_immediately:
314 raise ImmediateFail()
316 def addFailure(self, test, details=None):
317 test = self._add_prefix(test)
318 xfail_reason = find_in_list(self.expected_failures, test.id())
319 if xfail_reason is None:
320 xfail_reason = find_in_list(self.flapping, test.id())
321 if xfail_reason is not None:
322 self.xfail_added+=1
323 self.total_xfail+=1
324 if details is not None:
325 details = subunit.RemoteError(unicode(details[1]) + xfail_reason.decode("utf-8"))
326 else:
327 details = subunit.RemoteError(xfail_reason.decode("utf-8"))
328 self._ops.addExpectedFailure(test, details)
329 else:
330 self.fail_added+=1
331 self.total_fail+=1
332 self._ops.addFailure(test, details)
333 if self.output:
334 self._ops.output_msg(self.output)
335 if self.fail_immediately:
336 raise ImmediateFail()
337 self.output = None
339 def addSuccess(self, test, details=None):
340 test = self._add_prefix(test)
341 xfail_reason = find_in_list(self.expected_failures, test.id())
342 if xfail_reason is not None:
343 self.uxsuccess_added += 1
344 self.total_uxsuccess += 1
345 if details is None:
346 details = {}
347 details['reason'] = content.Content(
348 content_type.ContentType("text", "plain",
349 {"charset": "utf8"}), lambda: xfail_reason)
350 self._ops.addUnexpectedSuccess(test, details)
351 if self.output:
352 self._ops.output_msg(self.output)
353 if self.fail_immediately:
354 raise ImmediateFail()
355 else:
356 self._ops.addSuccess(test, details)
357 self.output = None
359 def skip_testsuite(self, name, reason=None):
360 self._ops.skip_testsuite(name, reason)
362 def start_testsuite(self, name):
363 self._ops.start_testsuite(name)
364 self.error_added = 0
365 self.fail_added = 0
366 self.xfail_added = 0
367 self.uxsuccess_added = 0
369 def end_testsuite(self, name, result, reason=None):
370 xfail = False
372 if self.xfail_added > 0:
373 xfail = True
374 if self.fail_added > 0 or self.error_added > 0 or self.uxsuccess_added > 0:
375 xfail = False
377 if xfail and result in ("fail", "failure"):
378 result = "xfail"
380 if self.uxsuccess_added > 0 and result != "uxsuccess":
381 result = "uxsuccess"
382 if reason is None:
383 reason = "Subunit/Filter Reason"
384 reason += "\n uxsuccess[%d]" % self.uxsuccess_added
386 if self.fail_added > 0 and result != "failure":
387 result = "failure"
388 if reason is None:
389 reason = "Subunit/Filter Reason"
390 reason += "\n failures[%d]" % self.fail_added
392 if self.error_added > 0 and result != "error":
393 result = "error"
394 if reason is None:
395 reason = "Subunit/Filter Reason"
396 reason += "\n errors[%d]" % self.error_added
398 self._ops.end_testsuite(name, result, reason)
399 if result not in ("success", "xfail"):
400 if self.output:
401 self._ops.output_msg(self.output)
402 if self.fail_immediately:
403 raise ImmediateFail()
404 self.output = None
406 def __init__(self, out, prefix=None, suffix=None, expected_failures=None,
407 strip_ok_output=False, fail_immediately=False,
408 flapping=None):
409 self._ops = out
410 self.seen_output = False
411 self.output = None
412 self.prefix = prefix
413 self.suffix = suffix
414 if expected_failures is not None:
415 self.expected_failures = expected_failures
416 else:
417 self.expected_failures = {}
418 if flapping is not None:
419 self.flapping = flapping
420 else:
421 self.flapping = {}
422 self.strip_ok_output = strip_ok_output
423 self.xfail_added = 0
424 self.fail_added = 0
425 self.uxsuccess_added = 0
426 self.total_xfail = 0
427 self.total_error = 0
428 self.total_fail = 0
429 self.total_uxsuccess = 0
430 self.error_added = 0
431 self.fail_immediately = fail_immediately
434 class PlainFormatter(TestsuiteEnabledTestResult):
436 def __init__(self, verbose, immediate, statistics,
437 totaltests=None):
438 super(PlainFormatter, self).__init__()
439 self.verbose = verbose
440 self.immediate = immediate
441 self.statistics = statistics
442 self.start_time = None
443 self.test_output = {}
444 self.suitesfailed = []
445 self.suites_ok = 0
446 self.skips = {}
447 self.index = 0
448 self.name = None
449 self._progress_level = 0
450 self.totalsuites = totaltests
451 self.last_time = None
453 @staticmethod
454 def _format_time(delta):
455 minutes, seconds = divmod(delta.seconds, 60)
456 hours, minutes = divmod(minutes, 60)
457 ret = ""
458 if hours:
459 ret += "%dh" % hours
460 if minutes:
461 ret += "%dm" % minutes
462 ret += "%ds" % seconds
463 return ret
465 def progress(self, offset, whence):
466 if whence == subunit.PROGRESS_POP:
467 self._progress_level -= 1
468 elif whence == subunit.PROGRESS_PUSH:
469 self._progress_level += 1
470 elif whence == subunit.PROGRESS_SET:
471 if self._progress_level == 0:
472 self.totalsuites = offset
473 elif whence == subunit.PROGRESS_CUR:
474 raise NotImplementedError
476 def time(self, dt):
477 if self.start_time is None:
478 self.start_time = dt
479 self.last_time = dt
481 def start_testsuite(self, name):
482 self.index += 1
483 self.name = name
485 if not self.verbose:
486 self.test_output[name] = ""
488 out = "[%d" % self.index
489 if self.totalsuites is not None:
490 out += "/%d" % self.totalsuites
491 if self.start_time is not None:
492 out += " in " + self._format_time(self.last_time - self.start_time)
493 if self.suitesfailed:
494 out += ", %d errors" % (len(self.suitesfailed),)
495 out += "] %s" % name
496 if self.immediate:
497 sys.stdout.write(out + "\n")
498 else:
499 sys.stdout.write(out + ": ")
501 def output_msg(self, output):
502 if self.verbose:
503 sys.stdout.write(output)
504 elif self.name is not None:
505 self.test_output[self.name] += output
506 else:
507 sys.stdout.write(output)
509 def control_msg(self, output):
510 pass
512 def end_testsuite(self, name, result, reason):
513 out = ""
514 unexpected = False
516 if not name in self.test_output:
517 print "no output for name[%s]" % name
519 if result in ("success", "xfail"):
520 self.suites_ok+=1
521 else:
522 self.output_msg("ERROR: Testsuite[%s]\n" % name)
523 if reason is not None:
524 self.output_msg("REASON: %s\n" % (reason,))
525 self.suitesfailed.append(name)
526 if self.immediate and not self.verbose and name in self.test_output:
527 out += self.test_output[name]
528 unexpected = True
530 if not self.immediate:
531 if not unexpected:
532 out += " ok\n"
533 else:
534 out += " " + result.upper() + "\n"
536 sys.stdout.write(out)
538 def startTest(self, test):
539 pass
541 def addSuccess(self, test):
542 self.end_test(test.id(), "success", False)
544 def addError(self, test, details=None):
545 self.end_test(test.id(), "error", True, details)
547 def addFailure(self, test, details=None):
548 self.end_test(test.id(), "failure", True, details)
550 def addSkip(self, test, details=None):
551 self.end_test(test.id(), "skip", False, details)
553 def addExpectedFailure(self, test, details=None):
554 self.end_test(test.id(), "xfail", False, details)
556 def addUnexpectedSuccess(self, test, details=None):
557 self.end_test(test.id(), "uxsuccess", True, details)
559 def end_test(self, testname, result, unexpected, details=None):
560 if not unexpected:
561 self.test_output[self.name] = ""
562 if not self.immediate:
563 sys.stdout.write({
564 'failure': 'f',
565 'xfail': 'X',
566 'skip': 's',
567 'success': '.'}.get(result, "?(%s)" % result))
568 return
570 if not self.name in self.test_output:
571 self.test_output[self.name] = ""
573 self.test_output[self.name] += "UNEXPECTED(%s): %s\n" % (result, testname)
574 if details is not None:
575 self.test_output[self.name] += "REASON: %s\n" % (unicode(details[1]).encode("utf-8").strip(),)
577 if self.immediate and not self.verbose:
578 sys.stdout.write(self.test_output[self.name])
579 self.test_output[self.name] = ""
581 if not self.immediate:
582 sys.stdout.write({
583 'error': 'E',
584 'failure': 'F',
585 'uxsuccess': 'U',
586 'success': 'S'}.get(result, "?"))
588 def write_summary(self, path):
589 f = open(path, 'w+')
591 if self.suitesfailed:
592 f.write("= Failed tests =\n")
594 for suite in self.suitesfailed:
595 f.write("== %s ==\n" % suite)
596 if suite in self.test_output:
597 f.write(self.test_output[suite]+"\n\n")
599 f.write("\n")
601 if not self.immediate and not self.verbose:
602 for suite in self.suitesfailed:
603 print "=" * 78
604 print "FAIL: %s" % suite
605 if suite in self.test_output:
606 print self.test_output[suite]
607 print ""
609 f.write("= Skipped tests =\n")
610 for reason in self.skips.keys():
611 f.write(reason + "\n")
612 for name in self.skips[reason]:
613 f.write("\t%s\n" % name)
614 f.write("\n")
615 f.close()
617 if (not self.suitesfailed and
618 not self.statistics['TESTS_UNEXPECTED_FAIL'] and
619 not self.statistics['TESTS_UNEXPECTED_OK'] and
620 not self.statistics['TESTS_ERROR']):
621 ok = (self.statistics['TESTS_EXPECTED_OK'] +
622 self.statistics['TESTS_EXPECTED_FAIL'])
623 print "\nALL OK (%d tests in %d testsuites)" % (ok, self.suites_ok)
624 else:
625 print "\nFAILED (%d failures, %d errors and %d unexpected successes in %d testsuites)" % (
626 self.statistics['TESTS_UNEXPECTED_FAIL'],
627 self.statistics['TESTS_ERROR'],
628 self.statistics['TESTS_UNEXPECTED_OK'],
629 len(self.suitesfailed))
631 def skip_testsuite(self, name, reason="UNKNOWN"):
632 self.skips.setdefault(reason, []).append(name)
633 if self.totalsuites:
634 self.totalsuites-=1