Harman Patil (Editor)

Test Template Framework

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The Test Template Framework (TTF) is a model-based testing (MBT) framework proposed by Phil Stocks and David Carrington in (Stocks & Carrington 1996) for the purpose of software testing. Although the TTF was meant to be notation-independent, the original presentation was made using the Z formal notation. It is one of the few MBT frameworks approaching unit testing.

Contents

Introduction

The TTF is a specific proposal of model-based testing (MBT). It considers models to be Z specifications. Each operation within the specification is analyzed to derive or generate abstract test cases. This analysis consists of the following steps:

  1. Define the input space (IS) of each operation.
  2. Derive the valid input space (VIS) from the IS of each operation.
  3. Apply one or more testing tactics, starting from each VIS, to build a testing tree for each operation. Testing trees are populated with nodes called test classes.
  4. Prune each of the resulting testing trees.
  5. Find one or more abstract test cases from each leaf in each testing tree.

One of the main advantages of the TTF is that all of these concepts are expressed in the same notation of the specification, i.e. the Z notation. Hence, the engineer has to know only one notation to perform the analysis down to the generation of abstract test cases.

Important concepts

In this section the main concepts defined by the TTF are described.

Input space

Let O p be a Z operation. Let x 1 x n be all the input and (non-primed) state variables referenced in O p , and T 1 T n their corresponding types. The Input Space (IS) of O p , written I S O p , is the Z schema box defined by [ x 1 : T 1 x n : T n ] .

Valid input space

Let O p be a Z operation. Let pre  O p be the precondition of O p . The Valid Input Space (VIS) of O p , written V I S O p , is the Z schema box defined by [ I S O p | pre  O p ] .

Test class

Let O p be a Z operation and let P be any predicate depending on one or more of the variables defined in V I S O p . Then, the Z schema box [ V I S O p | P ] is a test class of O p . Note that this schema is equivalent to [ I S O p | pre  O p P ] . This observation can be generalized by saying that if C O p is a test class of O p , then the Z schema box defined by [ C O p | P ] is also a test class of O p . According to this definition the VIS is also a test class.

If C O p is a test class of O p , then the predicate P in C O p == [ C O p | P ] is said to be the characteristic predicate of C O p or C O p is characterized by P .

Test classes are also called test objectives (Utting & Legeard 2007), test templates (Stocks & Carrington 1996) and test specifications.

Testing tactic

In the context of the TTF a testing tactic is a means to partition any test class of any operation. However, some of the testing tactics used in practice actually do not always generate a partition of some test classes.

Some testing tactics originally proposed for the TTF are the following:

  • Disjunctive Normal Form (DNF). By applying this tactic the operation is written in Disjunctive Normal Form and the test class is divided in as many test classes as terms are in the resulting operation's predicate. The predicate added to each new test class is the precondition of one of the terms in the operation's predicate.
  • Standard Partitions (SP). This tactic uses a predefined partition of some mathematical operator (Stocks 1993). For example, the following is a good partition for expressions of the form S T where is one of , and (see Set theory). S = , T = S , T , S T S = , T S , T , T S S , T = S , T , T = S S , T , S T = S , T , S T , ¬ ( S T ) , ¬ ( T S ) , S T As can be noticed, standard partitions might change according to how much testing the engineer wants to perform.
  • Sub-domain Propagation (SDP). This tactic is applied to expressions containing:
    1. Two or more mathematical operators for which there are already defined standard partitions, or
    2. Mathematical operators which are defined in terms of other mathematical operators.
    In any of these cases, the standard partitions of the operators appearing in the expression or in the definition of a complex one, are combined to produce a partition for the expression. If the tactic is applied to the second case, then the resulting partition can be considered as the standard partition for that operator. Stocks and Carrington in (Stocks & Carrington 1996) illustrate this situation with R G = ( dom  G R ) G , where means domain anti-restriction, by giving standard partitions for and and propagating them to calculate a partition for .
  • Specification Mutation (SM). The first step of this tactic consists in generating a mutant of the Z operation. A mutant of a Z operation is similar in concept to a mutant of a program, i.e. it is a modified version of the operation. The modification is introduced by the engineer with the intention of uncovering an error in the implementation. The mutant should be the specification that the engineer guesses the programmer has implemented. Then, the engineer has to calculate the subset of the VIS that yields different results in both specifications. The predicate of this set is used to derive a new test class.
  • Some other testing tactics that may also be used are the following:

  • In Set Extension (ISE). It applies to predicates of the form e x p r { e x p r 1 , , e x p r n } . In this case, it generates n test classes such that a predicate of the form e x p r = e x p r i is added to each of them.
  • Mandatory Test Set (MTS). This tactic associates a set of constant values to a VIS' variable and generates as many test classes as elements are in the set. Each test class is characterized by a predicate of the form v a r = v a l where var is the name of the variable and val is one of the values of the set.
  • Numeric Ranges (NR). This tactic applies only to VIS' variables of type Z (or its "subtype" N ). It consists in associating a range to a variable and deriving test classes by comparing the variable with the limits of the range in some ways. More formally, let n be a variable of type Z and let [ i , j ] be the associated range. Then, the tactic generates the test classes characterized by the following predicates: n < i , n = i , i < n n < j , n = j , n > j .
  • Free Type (FT). This tactic generates as many test classes as elements a free (enumerated) type has. In other words, if a model defines type COLOUR ::= red | blue | green and some operation uses c of type COLOUR, then by applying this tactic each test class will by divided into three new test classes: one in which c equals red, the other in which c equals blue, and the third where c equals green.
  • Proper Subset of Set Extension (PSSE). This tactic uses the same concept of ISE but applied to set inclusions. PSSE helps to test operations including predicates like e x p r { e x p r 1 , , e x p r n } . When PSSE is applied it generates 2 n 1 test classes where a predicate of the form e x p r = A i with i [ 1 , 2 n 1 ] and A i P { e x p r 1 , , e x p r n } { { e x p r 1 , , e x p r n } } , is added to each class. { e x p r 1 , , e x p r n } is excluded from P { e x p r 1 , , e x p r n } because expr is a proper subset of { e x p r 1 , , e x p r n } .
  • Subset of Set Extension (SSE). It is identical to PSSE but it applies to predicates of the form e x p r { e x p r 1 , , e x p r n } in which case it generates 2 n by considering also { e x p r 1 , , e x p r n } .
  • Testing tree&

    The application of a testing tactic to the VIS generates some test classes. If some of these test classes are further partitioned by applying one or more testing tactics, a new set of test classes is obtained. This process can continue by applying testing tactics to the test classes generated so far. Evidently, the result of this process can be drawn as a tree with the VIS as the root node, the test classes generated by the first testing tactic as its children, and so on. Furthermore, Stocks and Carrington in (Stocks & Carrington 1996) propose to use the Z notation to build the tree, as follows.

    V I S == [ I S | P ] T C L T 1 1 == [ V I S | P T 1 1 ] T C L T 1 n == [ V I S | P T 1 n ] T C L T 2 1 == [ T C L T 1 i | P T 2 1 ] T C L T 2 m == [ T C L T 1 i | P T 2 m ] T C L T 3 1 == [ T C L T 2 j | P T 3 1 ] T C L T 3 k == [ T C L T 2 j | P T 3 k ]

    Pruning testing trees

    In general a test class' predicate is a conjunction of two or more predicates. It is likely, then, that some test classes are empty because their predicates are contradictions. These test classes must be pruned from the testing tree because they represent impossible combinations of input values, i.e. no abstract test case can be derived out of them.

    Abstract test case

    An abstract test case is an element belonging to a test class. The TTF prescribes that abstract test cases should be derived only from the leaves of the testing tree. Abstract test cases can also be written as Z schema boxes. Let O p be some operation, let V I S O p be the VIS of O p , let x 1 : T 1 x n : T n be all the variables declared in V I S O p , let C O p be a (leaf) test class of the testing tree associated to O p , let P 1 P m be the characteristic predicates of each test class from C O p up to V I S O p (by following the edges from child to parent), and let v 1 : T 1 v n : T n be n constant values satisfying P 1 P m . Then, an abstract test case of C O p is the Z schema box defined by [ C O p | x 1 = v 1 x n = v n ] .

    References

    Test Template Framework Wikipedia