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']
23 import subunit
.iso8601
26 VALID_RESULTS
= ['success', 'successful', 'failure', 'fail', 'skip', 'knownfail', 'error', 'xfail', 'skip-testsuite', 'testsuite-failure', 'testsuite-xfail', 'testsuite-success', 'testsuite-error']
28 class TestsuiteEnabledTestResult(testtools
.testresult
.TestResult
):
30 def start_testsuite(self
, name
):
31 raise NotImplementedError(self
.start_testsuite
)
34 def parse_results(msg_ops
, statistics
, fh
):
42 parts
= l
.split(None, 1)
43 if not len(parts
) == 2 or not l
.startswith(parts
[0]):
46 command
= parts
[0].rstrip(":")
48 if command
in ("test", "testing"):
49 msg_ops
.control_msg(l
)
51 test
= subunit
.RemotedTestCase(name
)
52 if name
in open_tests
:
53 msg_ops
.addError(open_tests
.pop(name
), subunit
.RemoteError(u
"Test already running"))
54 msg_ops
.startTest(test
)
55 open_tests
[name
] = test
56 elif command
== "time":
57 msg_ops
.control_msg(l
)
59 dt
= subunit
.iso8601
.parse_date(arg
.rstrip("\n"))
61 print "Unable to parse time line: %s" % arg
.rstrip("\n")
64 elif command
in VALID_RESULTS
:
65 msg_ops
.control_msg(l
)
67 grp
= re
.match("(.*?)( \[)?([ \t]*)( multipart)?\n", arg
)
68 (testname
, hasreason
) = (grp
.group(1), grp
.group(2))
71 # reason may be specified in next lines
77 msg_ops
.control_msg(l
)
84 remote_error
= subunit
.RemoteError(reason
.decode("utf-8"))
87 statistics
['TESTS_ERROR']+=1
88 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"reason (%s) interrupted" % result
))
92 remote_error
= subunit
.RemoteError(u
"No reason specified")
93 if result
in ("success", "successful"):
95 test
= open_tests
.pop(testname
)
97 statistics
['TESTS_ERROR']+=1
98 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
100 statistics
['TESTS_EXPECTED_OK']+=1
101 msg_ops
.addSuccess(test
)
102 elif result
in ("xfail", "knownfail"):
104 test
= open_tests
.pop(testname
)
106 statistics
['TESTS_ERROR']+=1
107 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
109 statistics
['TESTS_EXPECTED_FAIL']+=1
110 msg_ops
.addExpectedFailure(test
, remote_error
)
112 elif result
in ("failure", "fail"):
114 test
= open_tests
.pop(testname
)
116 statistics
['TESTS_ERROR']+=1
117 msg_ops
.addError(subunit
.RemotedTestCase(testname
), subunit
.RemoteError(u
"Test was never started"))
119 statistics
['TESTS_UNEXPECTED_FAIL']+=1
120 msg_ops
.addFailure(test
, remote_error
)
121 elif result
== "skip":
122 statistics
['TESTS_SKIP']+=1
123 # Allow tests to be skipped without prior announcement of test
125 test
= open_tests
.pop(testname
)
127 test
= subunit
.RemotedTestCase(testname
)
128 msg_ops
.addSkip(test
, reason
)
129 elif result
== "error":
130 statistics
['TESTS_ERROR']+=1
132 test
= open_tests
.pop(testname
)
134 test
= subunit
.RemotedTestCase(testname
)
135 msg_ops
.addError(test
, remote_error
)
136 elif result
== "skip-testsuite":
137 msg_ops
.skip_testsuite(testname
)
138 elif result
== "testsuite-success":
139 msg_ops
.end_testsuite(testname
, "success", reason
)
140 elif result
== "testsuite-failure":
141 msg_ops
.end_testsuite(testname
, "failure", reason
)
142 elif result
== "testsuite-xfail":
143 msg_ops
.end_testsuite(testname
, "xfail", reason
)
144 elif result
== "testsuite-error":
145 msg_ops
.end_testsuite(testname
, "error", reason
)
147 raise AssertionError("Recognized but unhandled result %r" %
149 elif command
== "testsuite":
150 msg_ops
.start_testsuite(arg
.strip())
151 elif command
== "progress":
154 msg_ops
.progress(None, subunit
.PROGRESS_POP
)
156 msg_ops
.progress(None, subunit
.PROGRESS_PUSH
)
158 msg_ops
.progress(int(arg
), subunit
.PROGRESS_CUR
)
160 msg_ops
.progress(int(arg
), subunit
.PROGRESS_SET
)
162 msg_ops
.output_msg(l
)
165 test
= subunit
.RemotedTestCase(open_tests
.popitem()[1])
166 msg_ops
.addError(test
, subunit
.RemoteError(u
"was started but never finished!"))
167 statistics
['TESTS_ERROR']+=1
169 if statistics
['TESTS_ERROR'] > 0:
171 if statistics
['TESTS_UNEXPECTED_FAIL'] > 0:
176 class SubunitOps(subunit
.TestProtocolClient
,TestsuiteEnabledTestResult
):
178 # The following are Samba extensions:
179 def start_testsuite(self
, name
):
180 self
._stream
.write("testsuite: %s\n" % name
)
182 def skip_testsuite(self
, name
, reason
=None):
184 self
._stream
.write("skip-testsuite: %s [\n%s\n]\n" % (name
, reason
))
186 self
._stream
.write("skip-testsuite: %s\n" % name
)
188 def end_testsuite(self
, name
, result
, reason
=None):
190 self
._stream
.write("testsuite-%s: %s [\n%s\n]\n" % (result
, name
, reason
))
192 self
._stream
.write("testsuite-%s: %s\n" % (result
, name
))
194 def output_msg(self
, msg
):
195 self
._stream
.write(msg
)
198 def read_test_regexes(name
):
204 if l
== "" or l
[0] == "#":
207 (regex
, reason
) = l
.split("#", 1)
208 ret
[regex
.strip()] = reason
.strip()
216 def find_in_list(regexes
, fullname
):
217 for regex
, reason
in regexes
.iteritems():
218 if re
.match(regex
, fullname
):
225 class ImmediateFail(Exception):
226 """Raised to abort immediately."""
229 super(ImmediateFail
, self
).__init
__("test failed and fail_immediately set")
232 class FilterOps(testtools
.testresult
.TestResult
):
234 def control_msg(self
, msg
):
235 pass # We regenerate control messages, so ignore this
237 def time(self
, time
):
240 def progress(self
, delta
, whence
):
241 self
._ops
.progress(delta
, whence
)
243 def output_msg(self
, msg
):
244 if self
.output
is None:
245 sys
.stdout
.write(msg
)
249 def startTest(self
, test
):
250 self
.seen_output
= True
251 test
= self
._add
_prefix
(test
)
252 if self
.strip_ok_output
:
255 self
._ops
.startTest(test
)
257 def _add_prefix(self
, test
):
258 if self
.prefix
is not None:
259 return subunit
.RemotedTestCase(self
.prefix
+ test
.id())
263 def addError(self
, test
, details
=None):
264 test
= self
._add
_prefix
(test
)
267 self
._ops
.addError(test
, details
)
269 if self
.fail_immediately
:
270 raise ImmediateFail()
272 def addSkip(self
, test
, details
=None):
273 self
.seen_output
= True
274 test
= self
._add
_prefix
(test
)
275 self
._ops
.addSkip(test
, details
)
278 def addExpectedFailure(self
, test
, details
=None):
279 test
= self
._add
_prefix
(test
)
280 self
._ops
.addExpectedFailure(test
, details
)
283 def addFailure(self
, test
, details
=None):
284 test
= self
._add
_prefix
(test
)
285 xfail_reason
= find_in_list(self
.expected_failures
, test
.id())
286 if xfail_reason
is not None:
289 if details
is not None:
290 details
= subunit
.RemoteError(unicode(details
[1]) + xfail_reason
.decode("utf-8"))
292 details
= subunit
.RemoteError(xfail_reason
.decode("utf-8"))
293 self
._ops
.addExpectedFailure(test
, details
)
297 self
._ops
.addFailure(test
, details
)
299 self
._ops
.output_msg(self
.output
)
300 if self
.fail_immediately
:
301 raise ImmediateFail()
304 def addSuccess(self
, test
, details
=None):
305 test
= self
._add
_prefix
(test
)
306 self
._ops
.addSuccess(test
, details
)
309 def skip_testsuite(self
, name
, reason
=None):
310 self
._ops
.skip_testsuite(name
, reason
)
312 def start_testsuite(self
, name
):
313 self
._ops
.start_testsuite(name
)
318 def end_testsuite(self
, name
, result
, reason
=None):
321 if self
.xfail_added
> 0:
323 if self
.fail_added
> 0 or self
.error_added
> 0:
326 if xfail
and result
in ("fail", "failure"):
329 if self
.fail_added
> 0 and result
!= "failure":
332 reason
= "Subunit/Filter Reason"
333 reason
+= "\n failures[%d]" % self
.fail_added
335 if self
.error_added
> 0 and result
!= "error":
338 reason
= "Subunit/Filter Reason"
339 reason
+= "\n errors[%d]" % self
.error_added
341 self
._ops
.end_testsuite(name
, result
, reason
)
343 def __init__(self
, out
, prefix
=None, expected_failures
=None,
344 strip_ok_output
=False, fail_immediately
=False):
346 self
.seen_output
= False
349 if expected_failures
is not None:
350 self
.expected_failures
= expected_failures
352 self
.expected_failures
= {}
353 self
.strip_ok_output
= strip_ok_output
360 self
.fail_immediately
= fail_immediately
363 class PlainFormatter(TestsuiteEnabledTestResult
):
365 def __init__(self
, verbose
, immediate
, statistics
,
367 super(PlainFormatter
, self
).__init
__()
368 self
.verbose
= verbose
369 self
.immediate
= immediate
370 self
.statistics
= statistics
371 self
.start_time
= None
372 self
.test_output
= {}
373 self
.suitesfailed
= []
378 self
._progress
_level
= 0
379 self
.totalsuites
= totaltests
380 self
.last_time
= None
383 def _format_time(delta
):
384 minutes
, seconds
= divmod(delta
.seconds
, 60)
385 hours
, minutes
= divmod(minutes
, 60)
390 ret
+= "%dm" % minutes
391 ret
+= "%ds" % seconds
394 def progress(self
, offset
, whence
):
395 if whence
== subunit
.PROGRESS_POP
:
396 self
._progress
_level
-= 1
397 elif whence
== subunit
.PROGRESS_PUSH
:
398 self
._progress
_level
+= 1
399 elif whence
== subunit
.PROGRESS_SET
:
400 if self
._progress
_level
== 0:
401 self
.totalsuites
= offset
402 elif whence
== subunit
.PROGRESS_CUR
:
403 raise NotImplementedError
406 if self
.start_time
is None:
410 def start_testsuite(self
, name
):
415 self
.test_output
[name
] = ""
417 out
= "[%d" % self
.index
418 if self
.totalsuites
is not None:
419 out
+= "/%d" % self
.totalsuites
420 if self
.start_time
is not None:
421 out
+= " in " + self
._format
_time
(self
.last_time
- self
.start_time
)
422 if self
.suitesfailed
:
423 out
+= ", %d errors" % (len(self
.suitesfailed
),)
426 sys
.stdout
.write(out
+ "\n")
428 sys
.stdout
.write(out
+ ": ")
430 def output_msg(self
, output
):
432 sys
.stdout
.write(output
)
433 elif self
.name
is not None:
434 self
.test_output
[self
.name
] += output
436 sys
.stdout
.write(output
)
438 def control_msg(self
, output
):
441 def end_testsuite(self
, name
, result
, reason
):
445 if not name
in self
.test_output
:
446 print "no output for name[%s]" % name
448 if result
in ("success", "xfail"):
451 self
.output_msg("ERROR: Testsuite[%s]\n" % name
)
452 if reason
is not None:
453 self
.output_msg("REASON: %s\n" % (reason
,))
454 self
.suitesfailed
.append(name
)
455 if self
.immediate
and not self
.verbose
and name
in self
.test_output
:
456 out
+= self
.test_output
[name
]
459 if not self
.immediate
:
463 out
+= " " + result
.upper() + "\n"
465 sys
.stdout
.write(out
)
467 def startTest(self
, test
):
470 def addSuccess(self
, test
):
471 self
.end_test(test
.id(), "success", False)
473 def addError(self
, test
, details
=None):
474 self
.end_test(test
.id(), "error", True, details
)
476 def addFailure(self
, test
, details
=None):
477 self
.end_test(test
.id(), "failure", True, details
)
479 def addSkip(self
, test
, details
=None):
480 self
.end_test(test
.id(), "skip", False, details
)
482 def addExpectedFail(self
, test
, details
=None):
483 self
.end_test(test
.id(), "xfail", False, details
)
485 def end_test(self
, testname
, result
, unexpected
, reason
=None):
487 self
.test_output
[self
.name
] = ""
488 if not self
.immediate
:
493 'success': '.'}.get(result
, "?(%s)" % result
))
496 if not self
.name
in self
.test_output
:
497 self
.test_output
[self
.name
] = ""
499 self
.test_output
[self
.name
] += "UNEXPECTED(%s): %s\n" % (result
, testname
)
500 if reason
is not None:
501 self
.test_output
[self
.name
] += "REASON: %s\n" % (unicode(reason
[1]).encode("utf-8").strip(),)
503 if self
.immediate
and not self
.verbose
:
504 print self
.test_output
[self
.name
]
505 self
.test_output
[self
.name
] = ""
507 if not self
.immediate
:
511 'success': 'S'}.get(result
, "?"))
513 def write_summary(self
, path
):
516 if self
.suitesfailed
:
517 f
.write("= Failed tests =\n")
519 for suite
in self
.suitesfailed
:
520 f
.write("== %s ==\n" % suite
)
521 if suite
in self
.test_output
:
522 f
.write(self
.test_output
[suite
]+"\n\n")
526 if not self
.immediate
and not self
.verbose
:
527 for suite
in self
.suitesfailed
:
529 print "FAIL: %s" % suite
530 if suite
in self
.test_output
:
531 print self
.test_output
[suite
]
534 f
.write("= Skipped tests =\n")
535 for reason
in self
.skips
.keys():
536 f
.write(reason
+ "\n")
537 for name
in self
.skips
[reason
]:
538 f
.write("\t%s\n" % name
)
542 if (not self
.suitesfailed
and
543 not self
.statistics
['TESTS_UNEXPECTED_FAIL'] and
544 not self
.statistics
['TESTS_ERROR']):
545 ok
= (self
.statistics
['TESTS_EXPECTED_OK'] +
546 self
.statistics
['TESTS_EXPECTED_FAIL'])
547 print "\nALL OK (%d tests in %d testsuites)" % (ok
, self
.suites_ok
)
549 print "\nFAILED (%d failures and %d errors in %d testsuites)" % (
550 self
.statistics
['TESTS_UNEXPECTED_FAIL'],
551 self
.statistics
['TESTS_ERROR'],
552 len(self
.suitesfailed
))
554 def skip_testsuite(self
, name
, reason
="UNKNOWN"):
555 self
.skips
.setdefault(reason
, []).append(name
)