Test Template Framework

From testwiki
Jump to navigation Jump to search

Template:Use dmy dates The Test Template Framework (TTF) is a model-based testing (MBT) framework proposed by Phil Stocks and David Carrington in Template:Harv 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.

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,[1] 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 Op be a Z operation. Let x1xn be all the input and (non-primed) state variables referenced in Op, and T1Tn their corresponding types. The Input Space (IS) of Op, written ISOp, is the Z schema box defined by [x1:T1xn:Tn].

Valid input space

Let Op be a Z operation. Let pre Op be the precondition of Op. The Valid Input Space (VIS) of Op, written VISOp, is the Z schema box defined by [ISOp|pre Op].

Test class

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

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

Test classes are also called test objectives Template:Harv, test templates Template:Harv and test specifications.

Testing tactic

In the context of the TTF a testing tactic[1] 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 Template:Harv. For example, the following is a good partition for expressions of the form ST where is one of , and (see Set theory).
    S=,T=S,T,STS=,TS,T,TSS,T=S,T,T=SS,T,ST=S,T,ST,¬(ST),¬(TS),ST
    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 Template:Harv illustrate this situation with RG=(dom GR)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 expr{expr1,,exprn}. In this case, it generates Template:Mvar test classes such that a predicate of the form expr=expri 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 var=val where Template:Mvar is the name of the variable and Template:Mvar is one of the values of the set.
  • Numeric Ranges (NR). This tactic applies only to VIS' variables of type (or its "subtype" ). 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 Template:Mvar be a variable of type 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<nn<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 Template:Math and some operation uses Template:Mvar of type Template:Math, then by applying this tactic each test class will by divided into three new test classes: one in which Template:Mvar equals Template:Math, the other in which Template:Mvar equals Template:Math, and the third where Template:Mvar equals Template:Math.
  • 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 expr{expr1,,exprn}. When PSSE is applied it generates 2n1 test classes where a predicate of the form expr=Ai with i[1,2n1] and Ai{expr1,,exprn}{{expr1,,exprn}}, is added to each class. {expr1,,exprn} is excluded from {expr1,,exprn} because Template:Mvar is a proper subset of {expr1,,exprn}.
  • Subset of Set Extension (SSE). It is identical to PSSE but it applies to predicates of the form expr{expr1,,exprn} in which case it generates 2n by considering also {expr1,,exprn}.

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 Template:Harv propose to use the Z notation to build the tree, as follows.

VIS==[IS|P]TCLT11==[VIS|PT11]TCLT1n==[VIS|PT1n]TCLT21==[TCLT1i|PT21]TCLT2m==[TCLT1i|PT2m]TCLT31==[TCLT2j|PT31]TCLT3k==[TCLT2j|PT3k]

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 Op be some operation, let VISOp be the VIS of Op, let x1:T1xn:Tn be all the variables declared in VISOp, let COp be a (leaf) test class of the testing tree associated to Op, let P1Pm be the characteristic predicates of each test class from COp up to VISOp (by following the edges from child to parent), and let v1:T1vn:Tn be n constant values satisfying P1Pm. Then, an abstract test case of COp is the Z schema box defined by [COp|x1=v1xn=vn].

See also

References

Notes

Template:Reflist

  1. 1.0 1.1 Stocks and Carrington use the term testing strategies in Template:Harv.