Integration Test Order For C++ Applications
Integration Test Order For C++ Applications
HTTPS://SITES.GOOGLE.COM/SITE/JOURNALOFCOMPUTING/
WWW.JOURNALOFCOMPUTING.ORG 61
Abstract— This paper presents an improvement to the existing strategy for finding test order during integration testing of C++
applications. Our strategy is an integration of two existing strategies aimed at finding test order of object-oriented applications.
The first one was proposed was Malloy and is based on parameterized cost model that assigns weights to different edge type and
then breaks the cycle by removing edge with the minimum weight. The second one was proposed by Abdurazik and is based on
assigning weights to both nodes and edges. The weights were based on the quantitative measure of coupling and cycle to weight
ratio was used for selecting a victim edge for removal. This paper builds upon the approach that was laid in a previous paper by
the authors and which combines some principles of both the strategies and addresses some of their shortcomings. Some new
dependencies that may exist between classes in a C++ application are also included in this paper. We also present a tool Class
Test Ordering System developed to automate the whole strategy.
—————————— ——————————
1 INTRODUCTION
A common problem in inter-class integration testing of to consider and, therefore, cannot be completely
object-oriented software is to determine the order in measured or estimated [2]. It has also been suggested that
which classes are integrated and tested. When one class creating stubs can be error prone and costly.
requires another to be available before it can be executed, A number of researchers have addressed
we define this kind of relationship to be a dependency. class integration and test order problem of object oriented
These two classes can be characterized as server and applications and several solutions have been proposed so
client classes. The client class is being compiled or far. The solutions can be categorized into graph-based
executed and the server class must be present. This and genetic algorithm-based approaches. In graph-based
dependency has a direction, and is based on one or more approach, classes and their relationships in software are
object-oriented relationships. The class integration and modeled as object relation diagrams (ORD) or test
test order problem is to find an ordering of nodes in the dependency graphs (TDG). An ORD or TDG is a directed
graph so that the classes can be integrated and tested with graph G (V; E) where V is a set of nodes representing
minimum effort. Computing an optimal class integration classes and E is a set of edges representing the
and test order (CITO) is a focus of the software testing relationships among classes. In some papers, the testing
community. When there is no cycle in the dependency of effort is estimated by counting the number of stubs that
classes or subsystems, the class integration and test order are required for testing assuming that all stubs are equally
(CITO) can be computed by a simple reverse topological difficult to write [1], [3], [4], [7]. While some others try to
ordering of classes based on their dependencies. consider test stub complexity when measuring testing
However, dependency cycles are common in real-world effort [8], [9], [10]. In the genetic algorithm based approach
systems and when present, topological sorting is not [11], inter-class coupling measurements and genetic
possible [1]. To solve the CITO problem in the presence algorithms are used in combination to assess the
of cycles, the cycles must be broken. The effect of complexity of test stubs and to minimize complex cost
breaking a dependency cycle is that a stub must be functions.
created for the class that is no longer present, thus Existing solution to the problem of finding
increasing the cost of integration testing. Our goal is to test order during integration testing of C++ application
find an optimal order that minimizes the stubbing effort have used a parameterized cost model that assign
for C++ applications. Stubbing effort has many elements weights to different kind of edges in the ORD. These
edges represent the various types of relations that may
———————————————— exist between classes in a C++ application. Malloy [8] has
Priti Agarwal is working as Assistant Professor Computer science with defined six types of dependencies that may exist between
ITM University, Gurgaon. classes. These are association, composition, inheritance,
Sangeeta Sabharwal is working with as Professor in Netaji Subhas Institute
owned Element, dependency and polymorphism. Then a
of Technology, University of Delhi, New Delhi.
Parneeta Dhaliwal is working as Assistant professor with KIIT College of cost function is defined that assign weights to these
Engineering, Gurgaon relationships, in order to measure the testing effort in
terms of stub complexity.
JOURNAL OF COMPUTING, VOLUME 2, ISSUE 9, SEPTEMBER 2010, ISSN 2151-9617
HTTPS://SITES.GOOGLE.COM/SITE/JOURNALOFCOMPUTING/
WWW.JOURNALOFCOMPUTING.ORG 62
As coupling measurement captures class C++ application. This strategy is an integration of two
relationships, so to develop more precise testing and methods aimed at finding test order of object-oriented
maintenance predictive models, we define different types applications. The first one was proposed by Malloy [8],
of coupling based on explicit object-oriented class which aimed at finding test order for classes in C++
relationships and some implicit relationships. application using parameterized cost model. The second
We have tried to merge the merits of both the one was proposed by Abdurazik [9], [10] where they
approaches while at the same time overcoming some of modeled classes and their relationships with weights on
the more obvious shortcomings. The approach that we both nodes and edges and the weights of node and edges
have taken was first laid in [13]. Our work includes were based on a quantitative measure of coupling. Also
introducing some coupling measures that may exist they used an algorithm that incorporates edge and node
between classes in a C++ application and then proposing weights as well as cycle to weight ratio in cycle breaking.
a strategy for finding integration test order. The Similar to Malloy [8], the focus of our work is the analysis
organization of the paper is as follow. Section 2 presents, of existing C++ applications, including template functions
new dependencies/coupling that may exist between and classes, nested classes, friend classes and exception
classes in C++ application and model classes and their handling. Thus we have defined eight coupling types in
relationships using the coupling measures. A new our ORD as compared to six types defined in [8]. These
strategy is proposed and illustrated using an example in coupling are : Association Coupling, Composition
Section 3 along with the tool that implements it. Section 4 Coupling, Inheritance Coupling, Dependency Coupling,
presents the result of applying the tool Class test ordering Owned Element Coupling, Polymorphism coupling,
system to the C++ application given in Section 3. Finally, Friend Coupling and Exception Coupling. As with
conclusion and future work will be discussed in Section 5. Abdurazik [10], cycle to weight ratio is used within each
SCC to choose a victim edge for removal, with the aim of
minimizing the cost of stub creation.
2 COUPLING MEASURES
In this section, the program representation
Coupling refers to the degree of interdependence among that is used to find a class test order for class-based
the components of a software system. As coupling testing is discussed.
measures capture class relationships, so in this section
two features of C++ language that can introduce coupling 3.1 A Sample C++ Application
between classes are discussed. Fig. 1 contains a C++ program and Fig. 2 illustrates the
corresponding ORD for the program that is constructed
2.1 Friend Coupling by reverse engineering the source code of the C++
Friendship is a mechanism to selectively allow the body program.
of a class to be accessed by other classes; it reduces (1) template <class T>
information hiding, and increases coupling. A class can
be declared as a friend of another one, granting that first (2) class W {
class access to the protected and private members of the (3) public: void fun (T t) {}
second one. Hence friendship, may introduce stronger
coupling [12]. (4) private: T data;};
(18) private: R* r; that the model can be tuned in an attempt to minimize the
number of edges that are removed or to minimize the
(19) public: friend class X; };
number of stubs that are required for untested supplier
(20) class R : public P {}; classes. The ORD used here is a multigraph G = (V, E),
where V is a set of vertices representing classes, and E is a
(21) class S : public R {}; set of edges representing the relationships between the
(22) class Y : public X { classes.
The cost model C= <W, f (e), w (m x, y) > is a 3-
(23) public: void fun() { tuple consisting of W, a set of weight assignments and
(24) try{ function f (e) and w (m x, y) as follows:
(25) } catch(E e) { W= {w1; w2; w3; w4; w5; w6; w7; w8} (1)
(26) e.exp (); }} };
f (e) is a function, f: E W (2)
(27) class Z : public X {
(28) class Inner {}; }; for a given x, y V, m x, y = {(x, y) E} (3)
TABLE 1
CYCLE-WEIGHT RATIO FOR EDGES IN
SCC {X, W<P*>, Q, S, R, P}
6 QP 2 {2,7} 2 1
STRONGLY CONNECTED COMPONENTS:
7 RP 2 {3,4,5,6,8, 6 3
SCC 1: 1 node(s): W and 0 edge(s)
9}
SCC 2: 1 node(s): E and 0 edge(s) 8 SR 2 {4,9} 2 1
1. X W<P*>PX 11 W<P*>R 20 {} 0 0
4 XQ 25 {7} 1 0.04 5. By applying step 7.2 on the acyclic ORD of Fig. 4, a test
order is obtained as given below:
5 QR 2 {} 0 0
Class R
6 QP 2 {2,7} 2 1
Class S
7 RP 2 {] 0 0
Class Q
8 SR 2 {} 0 0
Class E
9 W<P*>Q 20 {2} 1 0.05
Class Inner
10 W<P*>S 20 {} 0 0
Class W<Char>
11 W<P*>R 20 {} 0 0 Class P
12 Q S 20 {} 0 0 Class W<P*>
Class X
Class Y
Class Z
JOURNAL OF COMPUTING, VOLUME 2, ISSUE 9, SEPTEMBER 2010, ISSN 2151-9617
HTTPS://SITES.GOOGLE.COM/SITE/JOURNALOFCOMPUTING/
WWW.JOURNALOFCOMPUTING.ORG 66
4. CASE STUDY
Using Class Test Ordering System (CTOS), our approach
is applied to the C++ application given in Section 3.1.As
discussed in Section 3.5 CTOS consists of four phases.
Phase I of the CTOS parses the input C++ application and
displays the class information along with the relation-
ships between them as shown in Fig. 5. After getting the
class information, an ORD is constructed, which is given Fig. 8 Output of phase IV
as an input to Phase II of the Class Test Ordering System.
Phase II of the system finds the strongly connected
components in the ORD using Tarjan’s algorithm. The
output of applying Tarjan’s algorithm to the output of 5. CONCLUSION AND FUTURE WORK
phase I, i.e. the ORD, is shown in Fig. 6. The output of In this paper, strategies for finding test order during
phase II is given as an input to phase III, which calculate integration testing of object oriented applications have
the cycle to weight ratio for each edge of SCC with more been discussed that includes both graph based as well as
than one node found during phase II and removes the genetic algorithms based techniques. Although genetic
edge with maximum cycle to weight ratio. This process is algorithm can be used to find optimal solutions but they
repeated until an acyclic ORD is obtained. Hence the must be run many times. Also it has been observed that
output of phase III is an acyclic ORD as shown in Fig. 7. some researchers have considered the number of stubs as
The acyclic ORD obtained during phase III is given as an the estimation of testing effort, while others have
input to phase IV, which applies topological sorting on considered test stub complexities while estimating testing
the acyclic ORD. The output of phase IV is shown in effort. A few of them have used slicing techniques to find
Fig. 8, the reverse of which gives the test order. test order which decreases test stubs construction and
testing time. In this paper a new approach for finding test
order during integration testing of C++ applications is
presented. The goal of the technique is to define an
integration test order strategy suitable for object-oriented
systems, to identify the test order with minimum cost
effort. This approach takes into account design level
relationships among OO software components and their
effects on implementation level couplings. Design level
relationships are mapped onto implementation level
couplings. The approach is based on the static analysis of
object-oriented programs, and also dynamic time
Fig. 5 Output of phase I relations like polymorphism are also considered. Our
approach shows how to effectively measure relationships
among classes and apply the measures to specific
problems in testing.
In this paper approximate values of the
weights are taken based on literature survey and have
done experiments on relatively smaller systems. In future,
we will try to focus our research on many complex
systems and will see how well these results will scale to
large systems. Also we will work on the weights that
have been assigned to new dependencies and will find
out the more accurate and precise value of the weights
Fig. 6 Output of phase II associated with each dependency.
JOURNAL OF COMPUTING, VOLUME 2, ISSUE 9, SEPTEMBER 2010, ISSN 2151-9617 67
HTTPS://SITES.GOOGLE.COM/SITE/JOURNALOFCOMPUTING/
WWW.JOURNALOFCOMPUTING.ORG 67
6. REFERENCES
[1] D. Kung, J. Gao, P. Hsia, Y. Toyoshima, and C. Chen. A test strategy
for object-oriented programs. In 19th Computer Software and
Applications Conference (COMPSAC 95), pages 239 {244, Dallas, TX,
August 1995. IEEE Computer Society Press.
[2] B. Beizer. Software Testing Techniques. Van Nostrand Reinhold, Inc,
New York NY, 2nd edition, 1990. ISBN 0-442-20672-0.
[3] Y. L. Traon, T. Jeron, J.-M. Jezequel, and P. Morel. Efficient object-
oriented integration and regression testing. IEEE Transactions on
Reliability, pages 12-25, March 2000.
[4] K.C. Tai and F. Daniels. Test order for inter-class integration testing of
object-oriented software. In The Twenty-First Annual International
Computer Software and Applications Conference (COMPSAC '97),
pages 602{607, Santa Barbara CA, 1997. IEEE Computer Society.
[5] Y. Labiche, P. Thevenod-Fosse, H. Waeselynck, and M. H. Durand.
Testing levels for object-oriented software in ICSE, pages 136–145,
New York, June 2000.
[6] L. C. Briand, Y. Labiche, and Y. Wang. An investigation of graph-
based class integration test order strategies. IEEE Transactions on
Software Engineering, 29(7): 594{607, July 2003
[7] L. C. Briand, Y. Labiche, and Y. Wang. Revisiting strategies for order-
ing class integration testing in the presence of dependency cycles.
Technical report SCE-01-02, Careleton University, 2001.
[8] B. A. Malloy, P. J. Clarke, and E. L. Lloyd. A parameterized cost
model to order classes for class-based testing of C++ applications. In
Proceedings of the 14th International Symposium on Software Relia-
bility Engineering (ISSRE'03), pages 353{364, Denver, Colorado, 2003.
IEEE Computer Society Press.
[9] A. Abdurazik and Jeff Offutt, “Coupling-based Class Integration and
Test Order”,.In Workshop on Automation of Software Test (AST
2006), pages 50{56, Shanghai, China, May 2006.
[10] A. Abdurazik and Jeff Offutt, Using coupling-based weights for the
class integration and test order problem. Computer Journal, 2007.
[11] L. C. Briand, J. Feng, and Y. Labiche. Using genetic algorithms and
coupling measures to devise optimal integration test orders. In
Proceedings of the 14th International Conference on Software
Engineering and Knowledge Engineering, pages 43{50, Ischia, Italy,
2002. IEEE Computer Society Press.
[12] L. Briand , P. Devanbu and W. Melo, An investigation into coupling
measures for C++, Proceedings of the 19th international conference
on Software engineering, p.412-421, May 17-23, 1997, Boston,
Massachusetts, United States.
[13] P. Bansal , S. Sabharwal and P. Sidhu, An investigation of strategies
for finding test order during integration testing of object oriented
applications, International Conferenece on Methods and Models in
Computer Science (ICM2CS-09).
[14] Jutarat Jaroenpiboonkit, Taratip Suwannasart, "Finding a Test Order
using Object-Oriented Slicing Technique," apsec, pp.49-56, 14th Asia-
Pacific Software Engineering Conference (APSEC'07), 2007
Priti Agarwal, B.Tech-CSE (2001), M.tech-IS(2009). Presently
working as Assistant Professor in ITM University, Gurgaon Published
many papers in National and International Conferences in the field of
Software Engineering.