/usr/share/pyshared/qm/test/suite.py is in qmtest 2.4.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | ########################################################################
#
# File: suite.py
# Author: Mark Mitchell
# Date: 11/05/2001
#
# Contents:
# QMTest Suite class
#
# Copyright (c) 2001 by CodeSourcery, LLC. All rights reserved.
#
# For license terms see the file COPYING.
#
########################################################################
########################################################################
# Imports
########################################################################
import qm
import qm.extension
########################################################################
# Classes
########################################################################
class Suite(qm.extension.Extension):
"""A collection of tests.
A test suite is a collection of tests. The suite may contain other
suites by reference as well; all tests contained in these contained
suites are considered contained in the containing suite as well."""
arguments = [
]
kind = "suite"
EXTRA_ID = "qmtest_id"
"""The name of the extra keyword argument to '__init__' that
specifies the name of the test or resource."""
EXTRA_DATABASE = "qmtest_database"
"""The name of the extra keyword argument to '__init__' that
specifies the database containing the test or resource."""
def __init__(self, arguments = None, **args):
"""Construct a new 'Runnable'.
'arguments' -- As for 'Extension.__init__'.
'args' -- As for 'Extension.__init__'."""
self.__id = args.pop(self.EXTRA_ID)
self.__database = args.pop(self.EXTRA_DATABASE)
if arguments: args.update(arguments)
super(Suite, self).__init__(**args)
def GetDatabase(self):
"""Return the 'Database' that contains this suite.
returns -- The 'Database' that contains this suite."""
return self.__database
def GetId(self):
"""Return the ID of this test suite."""
return self.__id
def GetTestIds(self):
"""Return the tests contained in this suite.
returns -- A sequence of labels corresponding to the tests
contained in this suite. Tests that are contained in this suite
only because they are contained in a suite which is itself
contained in this suite are not returned."""
return []
def GetSuiteIds(self):
"""Return the suites contained in this suite.
returns -- A sequence of labels corresponding to the suites
contained in this suite. Suites that are contained in this suite
only because they are contained in a suite which is itself
contained in this suite are not returned."""
return []
def IsImplicit(self):
"""Return true if this is an implicit test suite.
Implicit test suites cannot be edited."""
raise NotImplementedError
def GetAllTestAndSuiteIds(self):
"""Return the tests/suites contained in this suite and its subsuites.
returns -- A pair '(test_ids, suite_ids)'. The 'test_ids' and
'suite_ids' elements are both sequences of labels. The values
returned include all tests and suites that are contained in this
suite and its subsuites, recursively."""
suite = self
test_ids = []
suite_ids = []
# Maintain a work list of suites to process.
work_list = [suite]
# Process until the work list is empty.
while len(work_list) > 0:
suite = work_list.pop(0)
# Accumulate test and resource IDs in the suite.
test_ids.extend(suite.GetTestIds())
# Find sub suites in the suite.
sub_suite_ids = suite.GetSuiteIds()
# Accumulate them.
suite_ids.extend(sub_suite_ids)
# Retrieve the 'Suite' objects.
sub_suites = map(self.GetDatabase().GetSuite, sub_suite_ids)
# Don't expand ordinary suites contained in implicit suites.
if suite.IsImplicit():
sub_suites = filter(lambda s: s.IsImplicit(), sub_suites)
# Add contained suites to the work list.
work_list.extend(sub_suites)
return test_ids, suite_ids
|