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']
25 VALID_RESULTS
= ['success', 'successful', 'failure', 'fail', 'skip', 'knownfail', 'error', 'xfail', 'skip-testsuite', 'testsuite-failure', 'testsuite-xfail', 'testsuite-success', 'testsuite-error']
27 def parse_results(msg_ops
, statistics
, fh
):
35 if l
.startswith("test: "):
36 msg_ops
.control_msg(l
)
37 name
= l
.split(":", 1)[1].strip()
38 msg_ops
.start_test(name
)
39 open_tests
.append(name
)
40 elif l
.startswith("time: "):
42 "^time: (\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)\n", l
)
43 msg_ops
.report_time(time
.mktime((int(grp
.group(1)), int(grp
.group(2)), int(grp
.group(3)), int(grp
.group(4)), int(grp
.group(5)), int(grp
.group(6)), 0, 0, 0)))
44 elif re
.match("^(" + "|".join(VALID_RESULTS
) + "): (.*?)( \[)?([ \t]*)( multipart)?\n", l
):
45 msg_ops
.control_msg(l
)
46 grp
= re
.match("^(" + "|".join(VALID_RESULTS
) + "): (.*?)( \[)?([ \t]*)( multipart)?\n", l
)
47 (result
, testname
, hasreason
) = (grp
.group(1), grp
.group(2), grp
.group(3))
50 # reason may be specified in next lines
56 msg_ops
.control_msg(l
)
64 statistics
['TESTS_ERROR']+=1
65 msg_ops
.end_test(testname
, "error", True,
66 "reason (%s) interrupted" % result
)
70 if result
in ("success", "successful"):
71 open_tests
.pop() #FIXME: Check that popped value == $testname
72 statistics
['TESTS_EXPECTED_OK']+=1
73 msg_ops
.end_test(testname
, "success", False, reason
)
74 elif result
in ("xfail", "knownfail"):
75 open_tests
.pop() #FIXME: Check that popped value == $testname
76 statistics
['TESTS_EXPECTED_FAIL']+=1
77 msg_ops
.end_test(testname
, "xfail", False, reason
)
79 elif result
in ("failure", "fail"):
80 open_tests
.pop() #FIXME: Check that popped value == $testname
81 statistics
['TESTS_UNEXPECTED_FAIL']+=1
82 msg_ops
.end_test(testname
, "failure", True, reason
)
83 elif result
== "skip":
84 statistics
['TESTS_SKIP']+=1
85 # Allow tests to be skipped without prior announcement of test
86 last
= open_tests
.pop()
87 if last
is not None and last
!= testname
:
88 open_tests
.append(testname
)
89 msg_ops
.end_test(testname
, "skip", False, reason
)
90 elif result
== "error":
91 statistics
['TESTS_ERROR']+=1
92 open_tests
.pop() #FIXME: Check that popped value == $testname
93 msg_ops
.end_test(testname
, "error", True, reason
)
94 elif result
== "skip-testsuite":
95 msg_ops
.skip_testsuite(testname
)
96 elif result
== "testsuite-success":
97 msg_ops
.end_testsuite(testname
, "success", reason
)
98 elif result
== "testsuite-failure":
99 msg_ops
.end_testsuite(testname
, "failure", reason
)
100 elif result
== "testsuite-xfail":
101 msg_ops
.end_testsuite(testname
, "xfail", reason
)
102 elif result
== "testsuite-error":
103 msg_ops
.end_testsuite(testname
, "error", reason
)
104 elif l
.startswith("testsuite: "):
105 msg_ops
.start_testsuite(l
.split(":", 1)[1].strip())
106 elif l
.startswith("progress: "):
107 arg
= l
.split(":", 1)[1].strip()
109 msg_ops
.progress(None, subunit
.PROGRESS_POP
)
111 msg_ops
.progress(None, subunit
.PROGRESS_PUSH
)
113 msg_ops
.progress(int(arg
), subunit
.PROGRESS_CUR
)
115 msg_ops
.progress(int(arg
), subunit
.PROGRESS_SET
)
117 msg_ops
.output_msg(l
)
120 msg_ops
.end_test(open_tests
.pop(), "error", True,
121 "was started but never finished!")
122 statistics
['TESTS_ERROR']+=1
124 if statistics
['TESTS_ERROR'] > 0:
126 if statistics
['TESTS_UNEXPECTED_FAIL'] > 0:
131 class SubunitOps(object):
133 def start_test(self
, testname
):
134 print "test: %s" % testname
136 def end_test(self
, name
, result
, reason
=None):
138 print "%s: %s [" % (result
, name
)
142 print "%s: %s" % (result
, name
)
144 def skip_test(self
, name
, reason
=None):
145 self
.end_test(name
, "skip", reason
)
147 def fail_test(self
, name
, reason
=None):
148 self
.end_test(name
, "fail", reason
)
150 def success_test(self
, name
, reason
=None):
151 self
.end_test(name
, "success", reason
)
153 def xfail_test(self
, name
, reason
=None):
154 self
.end_test(name
, "xfail", reason
)
156 def report_time(self
, t
):
157 (year
, mon
, mday
, hour
, min, sec
, wday
, yday
, isdst
) = time
.localtime(t
)
158 print "time: %04d-%02d-%02d %02d:%02d:%02d" % (year
, mon
, mday
, hour
, min, sec
)
160 def progress(self
, offset
, whence
):
161 if whence
== subunit
.PROGRESS_CUR
and offset
> -1:
163 elif whence
== subunit
.PROGRESS_PUSH
:
166 elif whence
== subunit
.PROGRESS_POP
:
171 print "progress: %s%s" % (prefix
, offset
)
173 # The following are Samba extensions:
174 def start_testsuite(self
, name
):
175 print "testsuite: %s" % name
177 def skip_testsuite(self
, name
, reason
=None):
179 print "skip-testsuite: %s [\n%s\n]" % (name
, reason
)
181 print "skip-testsuite: %s" % name
183 def end_testsuite(self
, name
, result
, reason
=None):
185 print "testsuite-%s: %s [" % (result
, name
)
189 print "testsuite-%s: %s" % (result
, name
)
192 def read_test_regexes(name
):
198 if l
== "" or l
[0] == "#":
201 (regex
, reason
) = l
.split("#", 1)
202 ret
[regex
.strip()] = reason
.strip()
210 def find_in_list(regexes
, fullname
):
211 for regex
, reason
in regexes
.iteritems():
212 if re
.match(regex
, fullname
):
219 class FilterOps(object):
221 def control_msg(self
, msg
):
222 pass # We regenerate control messages, so ignore this
224 def report_time(self
, time
):
225 self
._ops
.report_time(time
)
227 def progress(self
, delta
, whence
):
228 self
._ops
.progress(delta
, whence
)
230 def output_msg(self
, msg
):
231 if self
.output
is None:
232 sys
.stdout
.write(msg
)
236 def start_test(self
, testname
):
237 if self
.prefix
is not None:
238 testname
= self
.prefix
+ testname
240 if self
.strip_ok_output
:
243 self
._ops
.start_test(testname
)
245 def end_test(self
, testname
, result
, unexpected
, reason
):
246 if self
.prefix
is not None:
247 testname
= self
.prefix
+ testname
249 if result
in ("fail", "failure") and not unexpected
:
253 xfail_reason
= find_in_list(self
.expected_failures
, testname
)
254 if xfail_reason
is not None and result
in ("fail", "failure"):
258 reason
+= xfail_reason
260 if result
in ("fail", "failure"):
264 if result
== "error":
268 if self
.strip_ok_output
:
269 if result
not in ("success", "xfail", "skip"):
273 self
._ops
.end_test(testname
, result
, reason
)
275 def skip_testsuite(self
, name
, reason
=None):
276 self
._ops
.skip_testsuite(name
, reason
)
278 def start_testsuite(self
, name
):
279 self
._ops
.start_testsuite(name
)
285 def end_testsuite(self
, name
, result
, reason
=None):
288 if self
.xfail_added
> 0:
290 if self
.fail_added
> 0 or self
.error_added
> 0:
293 if xfail
and result
in ("fail", "failure"):
296 if self
.fail_added
> 0 and result
!= "failure":
299 reason
= "Subunit/Filter Reason"
300 reason
+= "\n failures[%d]" % self
.fail_added
302 if self
.error_added
> 0 and result
!= "error":
305 reason
= "Subunit/Filter Reason"
306 reason
+= "\n errors[%d]" % self
.error_added
308 self
._ops
.end_testsuite(name
, result
, reason
)
310 def __init__(self
, prefix
, expected_failures
, strip_ok_output
):
311 self
._ops
= SubunitOps()
314 self
.expected_failures
= expected_failures
315 self
.strip_ok_output
= strip_ok_output