1 # Python module for parsing and generating the Subunit protocol
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']
22 from samba
import subunit
23 from samba
.subunit
.run
import TestProtocolClient
24 from samba
.subunit
import iso8601
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(unittest
.TestResult
):
31 def start_testsuite(self
, name
):
32 raise NotImplementedError(self
.start_testsuite
)
35 def parse_results(msg_ops
, statistics
, fh
):
43 parts
= l
.split(None, 1)
44 if not len(parts
) == 2 or not l
.startswith(parts
[0]):
47 command
= parts
[0].rstrip(":")
49 if command
in ("test", "testing"):
50 msg_ops
.control_msg(l
)
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
)
60 dt
= iso8601
.parse_date(arg
.rstrip("\n"))
62 print "Unable to parse time line: %s" % arg
.rstrip("\n")
65 elif command
in VALID_RESULTS
:
66 msg_ops
.control_msg(l
)
68 grp
= re
.match("(.*?)( \[)?([ \t]*)( multipart)?\n", arg
)
69 (testname
, hasreason
) = (grp
.group(1), grp
.group(2))
72 # reason may be specified in next lines
78 msg_ops
.control_msg(l
)
85 remote_error
= subunit
.RemoteError(reason
.decode("utf-8"))
88 statistics
['TESTS_ERROR']+=1
89 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"reason (%s) interrupted" % result
))
93 remote_error
= subunit
.RemoteError(u
"No reason specified")
94 if result
in ("success", "successful"):
96 test
= open_tests
.pop(testname
)
98 statistics
['TESTS_ERROR']+=1
100 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
102 statistics
['TESTS_EXPECTED_OK']+=1
103 msg_ops
.addSuccess(test
)
104 elif result
in ("xfail", "knownfail"):
106 test
= open_tests
.pop(testname
)
108 statistics
['TESTS_ERROR']+=1
110 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
112 statistics
['TESTS_EXPECTED_FAIL']+=1
113 msg_ops
.addExpectedFailure(test
, remote_error
)
114 elif result
in ("uxsuccess", ):
116 test
= open_tests
.pop(testname
)
118 statistics
['TESTS_ERROR']+=1
120 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
122 statistics
['TESTS_UNEXPECTED_OK']+=1
123 msg_ops
.addUnexpectedSuccess(test
)
125 elif result
in ("failure", "fail"):
127 test
= open_tests
.pop(testname
)
129 statistics
['TESTS_ERROR']+=1
131 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
133 statistics
['TESTS_UNEXPECTED_FAIL']+=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
140 test
= open_tests
.pop(testname
)
142 test
= subunit
.RemotedTestCase(testname
)
143 msg_ops
.addSkip(test
, reason
)
144 elif result
== "error":
145 statistics
['TESTS_ERROR']+=1
148 test
= open_tests
.pop(testname
)
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
)
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
)
164 elif result
== "testsuite-error":
165 msg_ops
.end_testsuite(testname
, "error", reason
)
168 raise AssertionError("Recognized but unhandled result %r" %
170 elif command
== "testsuite":
171 msg_ops
.start_testsuite(arg
.strip())
172 elif command
== "progress":
175 msg_ops
.progress(None, subunit
.PROGRESS_POP
)
177 msg_ops
.progress(None, subunit
.PROGRESS_PUSH
)
179 msg_ops
.progress(int(arg
), subunit
.PROGRESS_CUR
)
181 msg_ops
.progress(int(arg
), subunit
.PROGRESS_SET
)
183 msg_ops
.output_msg(l
)
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
194 class SubunitOps(TestProtocolClient
,TestsuiteEnabledTestResult
):
196 def progress(self
, count
, whence
):
197 if whence
== subunit
.PROGRESS_POP
:
198 self
._stream
.write("progress: pop\n")
199 elif whence
== subunit
.PROGRESS_PUSH
:
200 self
._stream
.write("progress: push\n")
201 elif whence
== subunit
.PROGRESS_SET
:
202 self
._stream
.write("progress: %d\n" % count
)
203 elif whence
== subunit
.PROGRESS_CUR
:
204 raise NotImplementedError
206 # The following are Samba extensions:
207 def start_testsuite(self
, name
):
208 self
._stream
.write("testsuite: %s\n" % name
)
210 def skip_testsuite(self
, name
, reason
=None):
212 self
._stream
.write("skip-testsuite: %s [\n%s\n]\n" % (name
, reason
))
214 self
._stream
.write("skip-testsuite: %s\n" % name
)
216 def end_testsuite(self
, name
, result
, reason
=None):
218 self
._stream
.write("testsuite-%s: %s [\n%s\n]\n" % (result
, name
, reason
))
220 self
._stream
.write("testsuite-%s: %s\n" % (result
, name
))
222 def output_msg(self
, msg
):
223 self
._stream
.write(msg
)
226 def read_test_regexes(name
):
232 if l
== "" or l
[0] == "#":
235 (regex
, reason
) = l
.split("#", 1)
236 ret
[regex
.strip()] = reason
.strip()
244 def find_in_list(regexes
, fullname
):
245 for regex
, reason
in regexes
.iteritems():
246 if re
.match(regex
, fullname
):
253 class ImmediateFail(Exception):
254 """Raised to abort immediately."""
257 super(ImmediateFail
, self
).__init
__("test failed and fail_immediately set")
260 class FilterOps(unittest
.TestResult
):
262 def control_msg(self
, msg
):
263 pass # We regenerate control messages, so ignore this
265 def time(self
, time
):
268 def progress(self
, delta
, whence
):
269 self
._ops
.progress(delta
, whence
)
271 def output_msg(self
, msg
):
272 if self
.output
is None:
273 sys
.stdout
.write(msg
)
277 def startTest(self
, test
):
278 self
.seen_output
= True
279 test
= self
._add
_prefix
(test
)
280 if self
.strip_ok_output
:
283 self
._ops
.startTest(test
)
285 def _add_prefix(self
, test
):
288 if self
.prefix
is not None:
290 if self
.suffix
is not None:
293 return subunit
.RemotedTestCase(prefix
+ test
.id() + suffix
)
295 def addError(self
, test
, err
=None):
296 test
= self
._add
_prefix
(test
)
299 self
._ops
.addError(test
, err
)
301 if self
.fail_immediately
:
302 raise ImmediateFail()
304 def addSkip(self
, test
, reason
=None):
305 self
.seen_output
= True
306 test
= self
._add
_prefix
(test
)
307 self
._ops
.addSkip(test
, reason
)
310 def addExpectedFailure(self
, test
, err
=None):
311 test
= self
._add
_prefix
(test
)
312 self
._ops
.addExpectedFailure(test
, err
)
315 def addUnexpectedSuccess(self
, test
):
316 test
= self
._add
_prefix
(test
)
317 self
.uxsuccess_added
+=1
318 self
.total_uxsuccess
+=1
319 self
._ops
.addUnexpectedSuccess(test
)
321 self
._ops
.output_msg(self
.output
)
323 if self
.fail_immediately
:
324 raise ImmediateFail()
326 def addFailure(self
, test
, err
=None):
327 test
= self
._add
_prefix
(test
)
328 xfail_reason
= find_in_list(self
.expected_failures
, test
.id())
329 if xfail_reason
is None:
330 xfail_reason
= find_in_list(self
.flapping
, test
.id())
331 if xfail_reason
is not None:
334 self
._ops
.addExpectedFailure(test
, err
)
338 self
._ops
.addFailure(test
, err
)
340 self
._ops
.output_msg(self
.output
)
341 if self
.fail_immediately
:
342 raise ImmediateFail()
345 def addSuccess(self
, test
):
346 test
= self
._add
_prefix
(test
)
347 xfail_reason
= find_in_list(self
.expected_failures
, test
.id())
348 if xfail_reason
is not None:
349 self
.uxsuccess_added
+= 1
350 self
.total_uxsuccess
+= 1
351 self
._ops
.addUnexpectedSuccess(test
)
353 self
._ops
.output_msg(self
.output
)
354 if self
.fail_immediately
:
355 raise ImmediateFail()
357 self
._ops
.addSuccess(test
)
360 def skip_testsuite(self
, name
, reason
=None):
361 self
._ops
.skip_testsuite(name
, reason
)
363 def start_testsuite(self
, name
):
364 self
._ops
.start_testsuite(name
)
368 self
.uxsuccess_added
= 0
370 def end_testsuite(self
, name
, result
, reason
=None):
373 if self
.xfail_added
> 0:
375 if self
.fail_added
> 0 or self
.error_added
> 0 or self
.uxsuccess_added
> 0:
378 if xfail
and result
in ("fail", "failure"):
381 if self
.uxsuccess_added
> 0 and result
!= "uxsuccess":
384 reason
= "Subunit/Filter Reason"
385 reason
+= "\n uxsuccess[%d]" % self
.uxsuccess_added
387 if self
.fail_added
> 0 and result
!= "failure":
390 reason
= "Subunit/Filter Reason"
391 reason
+= "\n failures[%d]" % self
.fail_added
393 if self
.error_added
> 0 and result
!= "error":
396 reason
= "Subunit/Filter Reason"
397 reason
+= "\n errors[%d]" % self
.error_added
399 self
._ops
.end_testsuite(name
, result
, reason
)
400 if result
not in ("success", "xfail"):
402 self
._ops
.output_msg(self
.output
)
403 if self
.fail_immediately
:
404 raise ImmediateFail()
407 def __init__(self
, out
, prefix
=None, suffix
=None, expected_failures
=None,
408 strip_ok_output
=False, fail_immediately
=False,
411 self
.seen_output
= False
415 if expected_failures
is not None:
416 self
.expected_failures
= expected_failures
418 self
.expected_failures
= {}
419 if flapping
is not None:
420 self
.flapping
= flapping
423 self
.strip_ok_output
= strip_ok_output
426 self
.uxsuccess_added
= 0
430 self
.total_uxsuccess
= 0
432 self
.fail_immediately
= fail_immediately
435 class PlainFormatter(TestsuiteEnabledTestResult
):
437 def __init__(self
, verbose
, immediate
, statistics
,
439 super(PlainFormatter
, self
).__init
__()
440 self
.verbose
= verbose
441 self
.immediate
= immediate
442 self
.statistics
= statistics
443 self
.start_time
= None
444 self
.test_output
= {}
445 self
.suitesfailed
= []
450 self
._progress
_level
= 0
451 self
.totalsuites
= totaltests
452 self
.last_time
= None
455 def _format_time(delta
):
456 minutes
, seconds
= divmod(delta
.seconds
, 60)
457 hours
, minutes
= divmod(minutes
, 60)
462 ret
+= "%dm" % minutes
463 ret
+= "%ds" % seconds
466 def progress(self
, offset
, whence
):
467 if whence
== subunit
.PROGRESS_POP
:
468 self
._progress
_level
-= 1
469 elif whence
== subunit
.PROGRESS_PUSH
:
470 self
._progress
_level
+= 1
471 elif whence
== subunit
.PROGRESS_SET
:
472 if self
._progress
_level
== 0:
473 self
.totalsuites
= offset
474 elif whence
== subunit
.PROGRESS_CUR
:
475 raise NotImplementedError
478 if self
.start_time
is None:
482 def start_testsuite(self
, name
):
487 self
.test_output
[name
] = ""
489 total_tests
= (self
.statistics
['TESTS_EXPECTED_OK'] +
490 self
.statistics
['TESTS_EXPECTED_FAIL'] +
491 self
.statistics
['TESTS_ERROR'] +
492 self
.statistics
['TESTS_UNEXPECTED_FAIL'] +
493 self
.statistics
['TESTS_UNEXPECTED_OK'])
495 out
= "[%d(%d)" % (self
.index
, total_tests
)
496 if self
.totalsuites
is not None:
497 out
+= "/%d" % self
.totalsuites
498 if self
.start_time
is not None:
499 out
+= " at " + self
._format
_time
(self
.last_time
- self
.start_time
)
500 if self
.suitesfailed
:
501 out
+= ", %d errors" % (len(self
.suitesfailed
),)
504 sys
.stdout
.write(out
+ "\n")
506 sys
.stdout
.write(out
+ ": ")
508 def output_msg(self
, output
):
510 sys
.stdout
.write(output
)
511 elif self
.name
is not None:
512 self
.test_output
[self
.name
] += output
514 sys
.stdout
.write(output
)
516 def control_msg(self
, output
):
519 def end_testsuite(self
, name
, result
, reason
):
523 if not name
in self
.test_output
:
524 print "no output for name[%s]" % name
526 if result
in ("success", "xfail"):
529 self
.output_msg("ERROR: Testsuite[%s]\n" % name
)
530 if reason
is not None:
531 self
.output_msg("REASON: %s\n" % (reason
,))
532 self
.suitesfailed
.append(name
)
533 if self
.immediate
and not self
.verbose
and name
in self
.test_output
:
534 out
+= self
.test_output
[name
]
537 if not self
.immediate
:
541 out
+= " " + result
.upper() + "\n"
543 sys
.stdout
.write(out
)
545 def startTest(self
, test
):
548 def addSuccess(self
, test
):
549 self
.end_test(test
.id(), "success", False)
551 def addError(self
, test
, err
=None):
552 self
.end_test(test
.id(), "error", True, err
)
554 def addFailure(self
, test
, err
=None):
555 self
.end_test(test
.id(), "failure", True, err
)
557 def addSkip(self
, test
, reason
=None):
558 self
.end_test(test
.id(), "skip", False, reason
)
560 def addExpectedFailure(self
, test
, err
=None):
561 self
.end_test(test
.id(), "xfail", False, err
)
563 def addUnexpectedSuccess(self
, test
):
564 self
.end_test(test
.id(), "uxsuccess", True)
566 def end_test(self
, testname
, result
, unexpected
, err
=None):
568 self
.test_output
[self
.name
] = ""
569 if not self
.immediate
:
574 'success': '.'}.get(result
, "?(%s)" % result
))
577 if not self
.name
in self
.test_output
:
578 self
.test_output
[self
.name
] = ""
580 self
.test_output
[self
.name
] += "UNEXPECTED(%s): %s\n" % (result
, testname
)
582 self
.test_output
[self
.name
] += "REASON: %s\n" % str(err
[1]).strip()
584 if self
.immediate
and not self
.verbose
:
585 sys
.stdout
.write(self
.test_output
[self
.name
])
586 self
.test_output
[self
.name
] = ""
588 if not self
.immediate
:
593 'success': 'S'}.get(result
, "?"))
595 def write_summary(self
, path
):
598 if self
.suitesfailed
:
599 f
.write("= Failed tests =\n")
601 for suite
in self
.suitesfailed
:
602 f
.write("== %s ==\n" % suite
)
603 if suite
in self
.test_output
:
604 f
.write(self
.test_output
[suite
]+"\n\n")
608 if not self
.immediate
and not self
.verbose
:
609 for suite
in self
.suitesfailed
:
611 print "FAIL: %s" % suite
612 if suite
in self
.test_output
:
613 print self
.test_output
[suite
]
616 f
.write("= Skipped tests =\n")
617 for reason
in self
.skips
.keys():
618 f
.write(reason
+ "\n")
619 for name
in self
.skips
[reason
]:
620 f
.write("\t%s\n" % name
)
624 if (not self
.suitesfailed
and
625 not self
.statistics
['TESTS_UNEXPECTED_FAIL'] and
626 not self
.statistics
['TESTS_UNEXPECTED_OK'] and
627 not self
.statistics
['TESTS_ERROR']):
628 ok
= (self
.statistics
['TESTS_EXPECTED_OK'] +
629 self
.statistics
['TESTS_EXPECTED_FAIL'])
630 print "\nALL OK (%d tests in %d testsuites)" % (ok
, self
.suites_ok
)
632 print "\nFAILED (%d failures, %d errors and %d unexpected successes in %d testsuites)" % (
633 self
.statistics
['TESTS_UNEXPECTED_FAIL'],
634 self
.statistics
['TESTS_ERROR'],
635 self
.statistics
['TESTS_UNEXPECTED_OK'],
636 len(self
.suitesfailed
))
638 def skip_testsuite(self
, name
, reason
="UNKNOWN"):
639 self
.skips
.setdefault(reason
, []).append(name
)