~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/variations.py

  • Committer: Martin Pool
  • Date: 2010-10-08 08:10:55 UTC
  • mto: This revision was merged to the branch mainline in revision 5483.
  • Revision ID: mbp@sourcefrog.net-20101008081055-xsv2cd0qcy3ba5mt
Split variations code to bzrlib.tests.variations

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2010 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
from bzrlib.tests import (
 
19
    multiply_scenarios,
 
20
    multiply_tests,
 
21
    )
 
22
 
 
23
 
 
24
class TestVariation(object):
 
25
    """Variations that can be applied to tests"""
 
26
 
 
27
    def scenarios(self):
 
28
        """Return a list of (name, params) tuples.
 
29
 
 
30
        All the tests subject to this varation will be repeated once per
 
31
        scenario.
 
32
        """
 
33
        raise NotImplementedError(self.scenarios)
 
34
 
 
35
 
 
36
def multiply_tests_by_variations(tests, variations, loader):
 
37
    """Given a test, multiply it by the full expansion of variations.
 
38
    
 
39
    :param tests: A TestSuite, or a single TestCase.
 
40
    :param variations: A list of TestVariation objects.
 
41
    :param loader: A TestLoader used to generate new suites.
 
42
 
 
43
    :returns: a TestSuite containing the expanded tests.
 
44
    """
 
45
    # TODO: Document the behaviour if there are no variations or any of them
 
46
    # returns empty
 
47
    combined_scenarios = reduce(multiply_scenarios,
 
48
        [v.scenarios() for v in variations])
 
49
    new_suite = loader.suiteClass()
 
50
    multiply_tests(tests, combined_scenarios, new_suite)
 
51
    return new_suite