autobuild: Add options to set mail host and send e-mail with logs
[sfrench/samba-autobuild/.git] / selftest / filter-subunit
1 #!/usr/bin/env python
2 # Filter a subunit stream
3 # Copyright (C) 2009-2011 Jelmer Vernooij <jelmer@samba.org>
4
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.
9
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.
14
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/>.
17
18 # NOTE: This script is a hack, meant as a placeholder until we can migrate
19 # to upstream subunit's filtering tools.
20
21 import optparse
22 import sys
23 import signal
24
25 sys.path.insert(0, "bin/python")
26
27 import subunithelper
28
29 parser = optparse.OptionParser("filter-subunit [options] < instream > outstream")
30 parser.add_option("--expected-failures", type="string",
31     help="File containing list of regexes matching tests to consider known "
32          "failures")
33 parser.add_option("--flapping", type="string",
34     help="File containing list of flapping tests, of which to ignore results.")
35 parser.add_option("--strip-passed-output", action="store_true",
36     help="Whether to strip output from tests that passed")
37 parser.add_option("--fail-immediately", action="store_true",
38     help="Whether to stop on the first error", default=False)
39 parser.add_option("--prefix", type="string",
40     help="Add prefix to all test names")
41 parser.add_option("--suffix", type="string",
42     help="Add suffix to all test names")
43 parser.add_option("--fail-on-empty", default=False,
44     action="store_true", help="Fail if there was no subunit output")
45 parser.add_option("--list", default=False,
46     action="store_true", help="Operate in list mode")
47 opts, args = parser.parse_args()
48
49 if opts.list:
50     prefix = opts.prefix
51     suffix = opts.suffix
52     if not prefix:
53         prefix = ""
54     if not suffix:
55         suffix = ""
56     for l in sys.stdin:
57          sys.stdout.write("%s%s%s\n" % (prefix, l.rstrip(), suffix))
58     sys.exit(0)
59
60 if opts.expected_failures:
61     expected_failures = subunithelper.read_test_regexes(opts.expected_failures)
62 else:
63     expected_failures = {}
64
65
66 if opts.flapping:
67     flapping = subunithelper.read_test_regexes(opts.flapping)
68 else:
69     flapping = {}
70
71 statistics = {
72     'TESTS_UNEXPECTED_OK': 0,
73     'TESTS_EXPECTED_OK': 0,
74     'TESTS_UNEXPECTED_FAIL': 0,
75     'TESTS_EXPECTED_FAIL': 0,
76     'TESTS_ERROR': 0,
77     'TESTS_SKIP': 0,
78 }
79
80 def handle_sigint(sig, stack):
81     sys.exit(0)
82 signal.signal(signal.SIGINT, handle_sigint)
83
84 out = subunithelper.SubunitOps(sys.stdout)
85 msg_ops = subunithelper.FilterOps(out, opts.prefix, opts.suffix, expected_failures,
86     opts.strip_passed_output,
87     fail_immediately=opts.fail_immediately,
88     flapping=flapping)
89
90 try:
91     ret = subunithelper.parse_results(msg_ops, statistics, sys.stdin)
92 except subunithelper.ImmediateFail:
93     sys.stdout.flush()
94     sys.exit(1)
95
96 if opts.fail_on_empty and not msg_ops.seen_output:
97     sys.exit(1)
98 else:
99     sys.exit(ret)