~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/subunit-sum

  • Committer: Vincent Ladeuil
  • Date: 2012-01-18 14:09:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120118140919-rlvdrhpc0nq1lbwi
Change set/remove to require a lock for the branch config files.

This means that tests (or any plugin for that matter) do not requires an
explicit lock on the branch anymore to change a single option. This also
means the optimisation becomes "opt-in" and as such won't be as
spectacular as it may be and/or harder to get right (nothing fails
anymore).

This reduces the diff by ~300 lines.

Code/tests that were updating more than one config option is still taking
a lock to at least avoid some IOs and demonstrate the benefits through
the decreased number of hpss calls.

The duplication between BranchStack and BranchOnlyStack will be removed
once the same sharing is in place for local config files, at which point
the Stack class itself may be able to host the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
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
 
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)
 
59
test = subunit.ProtocolTestCase(sys.stdin)
 
60
test.run(result)
 
61
result.display_totals(sys.stdout)