2
# Copyright (C) 2011 Canonical Ltd
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.
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.
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
18
"""Displays the sum of a counter found in a subunit stream.
20
Each test have (or not) the counter as a named detail in the stream.
29
class TestSumCounter(testtools.TestResult):
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
37
for name in counter_names:
39
if l > self.longest: self.longest = l
42
def addSuccess(self, test, details):
43
for name in self.counter_names:
45
counter_text = ''.join(details[name].iter_text())
47
# this counter doesn't exist for the test
49
self.totals[name] += int(counter_text)
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]))
57
counter_names = sys.argv[1:]
58
result = TestSumCounter(counter_names)
59
test = subunit.ProtocolTestCase(sys.stdin)
61
result.display_totals(sys.stdout)