~bzr-pqm/bzr/bzr.dev

5743.14.14 by Vincent Ladeuil
Add the subunit-sum script as-is.
1
#!/usr/bin/env python
5743.14.15 by Vincent Ladeuil
Add copyright notice, some docs and some cleanups.
2
# Copyright (C) 2011 Canonical Ltd
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18
"""Displays the sum of a counter found in a subunit stream.
19
20
Each test have (or not) the counter as a named detail in the stream.
21
"""
22
23
import subunit
5743.14.14 by Vincent Ladeuil
Add the subunit-sum script as-is.
24
import sys
25
import testtools
26
import unittest
27
28
29
class TestSumCounter(testtools.TestResult):
30
31
    def __init__(self, counter_names):
32
        """Create a FilterResult object outputting to stream."""
33
        testtools.TestResult.__init__(self)
34
        self.counter_names = counter_names
35
        self.totals = {}
36
        self.longest = 0
37
        for name in counter_names:
38
            l = len(name)
39
            if l > self.longest: self.longest = l
40
            self.totals[name] = 0
41
42
    def addSuccess(self, test, details):
43
        for name in self.counter_names:
44
            try:
45
                counter_text = ''.join(details[name].iter_text())
46
            except KeyError, e:
47
                # this counter doesn't exist for the test
48
                continue
49
            self.totals[name] += int(counter_text)
50
51
    def display_totals(self, stream):
52
        for name in self.counter_names:
53
            stream.write('%-*s: %s\n'
54
                         % (self.longest, name, self.totals[name]))
55
56
57
counter_names = sys.argv[1:]
58
result = TestSumCounter(counter_names)
5743.14.15 by Vincent Ladeuil
Add copyright notice, some docs and some cleanups.
59
test = subunit.ProtocolTestCase(sys.stdin)
5743.14.14 by Vincent Ladeuil
Add the subunit-sum script as-is.
60
test.run(result)
61
result.display_totals(sys.stdout)