567999cadb07d4025dc4cc425ac98b5dd755cd2b
[third_party/subunit] / filters / subunit-filter
1 #!/usr/bin/env python
2 #  subunit: extensions to python unittest to get test results from subprocesses.
3 #  Copyright (C) 2008  Robert Collins <robertc@robertcollins.net>
4 #            (C) 2009  Martin Pool
5 #
6 #  Licensed under either the Apache License, Version 2.0 or the BSD 3-clause
7 #  license at the users choice. A copy of both licenses are available in the
8 #  project source as Apache-2.0 and BSD. You may not use this file except in
9 #  compliance with one of these two licences.
10 #  
11 #  Unless required by applicable law or agreed to in writing, software
12 #  distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
13 #  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
14 #  license you chose for the specific language governing permissions and
15 #  limitations under that license.
16 #
17
18 """Filter a subunit stream to include/exclude tests.
19
20 The default is to strip successful tests.
21
22 Tests can be filtered by Python regular expressions with --with and --without,
23 which match both the test name and the error text (if any).  The result
24 contains tests which match any of the --with expressions and none of the
25 --without expressions.  For case-insensitive matching prepend '(?i)'.
26 Remember to quote shell metacharacters.
27 """
28
29 from optparse import OptionParser
30 import sys
31 import re
32
33 from subunit import (
34     DiscardStream,
35     ProtocolTestCase,
36     TestProtocolClient,
37     read_test_list,
38     )
39 from subunit.test_results import TestResultFilter
40
41 parser = OptionParser(description=__doc__)
42 parser.add_option("--error", action="store_false",
43     help="include errors", default=False, dest="error")
44 parser.add_option("-e", "--no-error", action="store_true",
45     help="exclude errors", dest="error")
46 parser.add_option("--failure", action="store_false",
47     help="include failures", default=False, dest="failure")
48 parser.add_option("-f", "--no-failure", action="store_true",
49     help="exclude failures", dest="failure")
50 parser.add_option("--no-passthrough", action="store_true",
51     help="Hide all non subunit input.", default=False, dest="no_passthrough")
52 parser.add_option("-s", "--success", action="store_false",
53     help="include successes", dest="success")
54 parser.add_option("--no-success", action="store_true",
55     help="exclude successes", default=True, dest="success")
56 parser.add_option("--no-skip", action="store_true",
57     help="exclude skips", dest="skip")
58 parser.add_option("--xfail", action="store_false",
59     help="include expected falures", default=True, dest="xfail")
60 parser.add_option("--no-xfail", action="store_true",
61     help="exclude expected falures", default=True, dest="xfail")
62 parser.add_option("-m", "--with", type=str,
63     help="regexp to include (case-sensitive by default)",
64     action="append", dest="with_regexps")
65 parser.add_option("--fixup-expected-failures", type=str,
66     help="File with list of test ids that are expected to fail; on failure "
67          "their result will be changed to xfail; on success they will be "
68          "changed to error.", dest="fixup_expected_failures", action="append")
69 parser.add_option("--without", type=str,
70     help="regexp to exclude (case-sensitive by default)",
71     action="append", dest="without_regexps")
72
73 (options, args) = parser.parse_args()
74
75
76 def _compile_re_from_list(l):
77     return re.compile("|".join(l), re.MULTILINE)
78
79
80 def _make_regexp_filter(with_regexps, without_regexps):
81     """Make a callback that checks tests against regexps.
82
83     with_regexps and without_regexps are each either a list of regexp strings,
84     or None.
85     """
86     with_re = with_regexps and _compile_re_from_list(with_regexps)
87     without_re = without_regexps and _compile_re_from_list(without_regexps)
88
89     def check_regexps(test, outcome, err, details):
90         """Check if this test and error match the regexp filters."""
91         test_str = str(test) + outcome + str(err) + str(details)
92         if with_re and not with_re.search(test_str):
93             return False
94         if without_re and without_re.search(test_str):
95             return False
96         return True
97     return check_regexps
98
99
100 regexp_filter = _make_regexp_filter(options.with_regexps,
101         options.without_regexps)
102 fixup_expected_failures = set()
103 for path in options.fixup_expected_failures or ():
104     fixup_expected_failures.update(read_test_list(path))
105 result = TestProtocolClient(sys.stdout)
106 result = TestResultFilter(result, filter_error=options.error,
107     filter_failure=options.failure, filter_success=options.success,
108     filter_skip=options.skip, filter_xfail=options.xfail,
109     filter_predicate=regexp_filter,
110     fixup_expected_failures=fixup_expected_failures)
111 if options.no_passthrough:
112     passthrough_stream = DiscardStream()
113 else:
114     passthrough_stream = None
115 test = ProtocolTestCase(sys.stdin, passthrough=passthrough_stream)
116 test.run(result)
117 sys.exit(0)