SlideShare a Scribd company logo
Introduction to Software
Testing
(2nd edition)
Chapter 7.1, 7.2
Overview Graph Coverage
Criteria
Paul Ammann & Jeff Offutt
http://www.cs.gmu.edu/~offutt/softwaretes
t/
Update, January 2016
Ch. 7 : Graph Coverage
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 2
Four Structures for
Modeling Software
Graphs LogicInput Space Syntax
Input
Models
Integ
Source
Applied
to
DNFSpecs
FSMsSource
Applied to
Use cases
Specs
Design
Source
Applied
to
Covering Graphs (7.1)
• Graphs are the most commonly used structure for
testing
• Graphs can come from many sources
– Control flow graphs
– Design structure
– FSMs and statecharts
– Use cases
• Tests usually are intended to “cover” the graph in
some way
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 3
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 4
Definition of a Graph
• A set N of nodes, N is not empty
• A set N0 of initial nodes, N0 is not empty
• A set Nf of final nodes, Nf is not empty
• A set E of edges, each edge from one node to
another
– ( ni , nj ), i is predecessor, j is successor
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 5
Example Graphs
1
32
4
N0 = { 1}
Nf = { 4 }
E = { (1,2), (1,3),
(2,4), (3,4) }
1
32
4
N0 = { }
Nf = { 4 }
E = { (1,2), (1,3),
(2,4), (3,4) }
10
1
54
8
2
6
9
3
7
N0 = { 1, 2, 3 }
Nf = { 8, 9, 10 }
E = { (1,4), (1,5), (2,5), (3,6), (3, 7), (4,
8), (5,8), (5,9), (6,9), (6,10), (7,10)
(9,6) }
Not a
valid
graph
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 6
Paths in Graphs
• Path : A sequence of nodes – [n1, n2, …, nM]
– Each pair of nodes is an edge
• Length : The number of edges
– A single node is a path of length 0
• Subpath : A subsequence of nodes in p is a subpath
of p
108 9
1 2 3
54 6 7
A Few Paths
[ 1, 4, 8 ]
[ 2, 5, 9, 6, 2 ]
[ 3, 7, 10 ]
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 7
Test Paths and SESEs
• Test Path : A path that starts at an initial node and
ends at a final node
• Test paths represent execution of test cases
– Some test paths can be executed by many tests
– Some test paths cannot be executed by any tests
• SESE graphs : All test paths start at a single node
and end at another node
– Single-entry, single-exit
– N0 and Nf have exactly one node
1
3
2
74
6
5
Double-diamond graph
Four test paths
[1, 2, 4, 5, 7]
[1, 2, 4, 6, 7]
[1, 3, 4, 5, 7]
[1, 3, 4, 6, 7]
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 8
Visiting and Touring
• Visit : A test path p visits node n if n is in p
A test path p visits edge e if e is in p
• Tour : A test path p tours subpath q if q is a subpath
of p
Path [ 1, 2, 4, 5, 7 ]
Visits nodes 1, 2, 4, 5, 7
Visits edges (1, 2), (2, 4), (4, 5), (5, 7)
Tours subpaths [1, 2, 4], [2, 4, 5], [4, 5, 7], [1, 2,
4, 5], [2, 4, 5, 7], [1, 2, 4, 5, 7]
(Also, each edge is technically a subpath)
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 9
Tests and Test Paths
• path (t) : The test path executed by test t
• path (T) : The set of test paths executed by the set of
tests T
• Each test executes one and only one test path
– Complete execution from a start node to an final node
• A location in a graph (node or edge) can be reached
from another location if there is a sequence of edges
from the first location to the second
– Syntactic reach : A subpath exists in the graph
– Semantic reach : A test exists that can execute that
subpath
– This distinction will become important in section 7.3
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 10
Tests and Test Paths
test 1
test 2
test 3
many-to-
one
test 1
test 2
test 3
many-to-many
Test Path 1
Test Path 2
Test Path 3
Non-deterministic software–the same test can execute
different test paths
Test
Path
Deterministic software–test always executes the same test path
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 11
Testing and Covering Graphs (7.2)
• We use graphs in testing as follows :
– Develop a model of the software as a graph
– Require tests to visit or tour specific sets of nodes, edges
or subpaths
• Test Requirements (TR) : Describe properties of test paths
• Test Criterion : Rules that define test requirements
• Satisfaction : Given a set TR of test requirements for a
criterion C, a set of tests T satisfies C on a graph if and only if
for every test requirement in TR, there is a test path in path(T)
that meets the test requirement tr• Structural Coverage Criteria : Defined on a graph just in terms
of nodes and edges
• Data Flow Coverage Criteria : Requires a graph to be
annotated with references to variables
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 12
Node and Edge Coverage
• The first (and simplest) two criteria require that each
node and edge in a graph be executed
Node Coverage (NC) : Test set T satisfies node
coverage on graph G iff for every syntactically
reachable node n in N, there is some path p in path(T)
such that p visits n.
Node Coverage (NC) : TR contains each reachable node
in G.
• This statement is a bit cumbersome, so we abbreviate it in
terms of the set of test requirements
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 13
Node and Edge Coverage
• Edge coverage is slightly stronger than node
coverage
Edge Coverage (EC) : TR contains each reachable path
of length up to 1, inclusive, in G.
• The phrase “length up to 1” allows for graphs with
one node and no edges
• NC and EC are only different when there is an edge
and another subpath between a pair of nodes (as in
an “if-else” statement)
Node Coverage : TR = { 1, 2, 3 }
Test Path = [ 1, 2, 3 ]
Edge Coverage : TR = { (1, 2), (1, 3), (2, 3) }
Test Paths = [ 1, 2, 3 ]
[ 1, 3 ]
2
3
1
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 14
Paths of Length 1 and 0
• A graph with only one node will not have any edges
• It may seem trivial, but formally, Edge Coverage
needs to require Node Coverage on this graph
1
• Otherwise, Edge Coverage will not subsume Node
Coverage
– So we define “length up to 1” instead of simply “length 1”
2
1
• We have the same issue with graphs
that only have one edge – for Edge-
Pair Coverage …
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 15
Covering Multiple Edges
• Edge-pair coverage requires pairs of edges, or
subpaths of length 2
Edge-Pair Coverage (EPC) : TR contains each
reachable path of length up to 2, inclusive, in G.
• The phrase “length up to 2” is used to include graphs
that have less than 2 edges
• The logical extension is to require all paths …
2
3
5
6
1
4
Edge-Pair Coverage :
TR = { [1,4,5], [1,4,6], [2,4,5],
[2,4,6], [3,4,5], [3,4,6] }
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 16
Covering Multiple Edges
Complete Path Coverage (CPC) : TR contains all paths in
G.
Specified Path Coverage (SPC) : TR contains a set S of
test paths, where S is supplied as a parameter.
Unfortunately, this is impossible if the graph has a
loop, so a weak compromise makes the tester decide
which paths:
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 17
Structural Coverage Example
Node Coverage
TR = { 1, 2, 3, 4, 5, 6, 7 }
Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 6, 5, 7 ]
7
1
3
2
4 5
Edge Coverage
TR = { (1,2), (1, 3), (2, 3), (3, 4), (3, 5), (4, 7), (5, 6), (5,
7), (6, 5) }
Test Paths: [ 1, 2, 3, 4, 7 ] [1, 3, 5, 6, 5, 7 ]
Edge-Pair Coverage
TR = {[1,2,3], [1,3,4], [1,3,5], [2,3,4], [2,3,5], [3,4,7],
[3,5,6], [3,5,7], [5,6,5], [6,5,6], [6,5,7] }
Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 7 ] [ 1, 3, 4, 7 ]
[ 1, 3, 5, 6, 5, 6, 5, 7 ]
Complete Path Coverage
Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 7 ] [ 1, 2, 3, 5, 6,
5, 6 ] [ 1, 2, 3, 5, 6, 5, 6, 5, 7 ] [ 1, 2, 3, 5, 6, 5, 6, 5, 6, 5,
7 ] …
6
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 18
Handling Loops in Graphs
• If a graph contains a loop, it has an infinite number of
paths
• Thus, CPC is not feasible
• SPC is not satisfactory because the results are
subjective and vary with the tester
• Attempts to “deal with” loops:
– 1970s : Execute cycles once ([4, 5, 4] in previous example, informal)
– 1980s : Execute each loop, exactly once (formalized)
– 1990s : Execute loops 0 times, once, more than once (informal
description)
– 2000s : Prime paths (touring, sidetrips, and detours)
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 19
Simple Paths and Prime Paths
• Simple Path : A path from node ni to nj is simple if no
node appears more than once, except possibly the
first and last nodes are the same
– No internal loops
– A loop is a simple path
• Prime Path : A simple path that does not appear as a
proper subpath of any other simple path
Simple Paths : [1,2,4,1], [1,3,4,1], [2,4,1,2],
[2,4,1,3], [3,4,1,2], [3,4,1,3], [4,1,2,4], [4,1,3,4],
[1,2,4], [1,3,4], [2,4,1], [3,4,1], [4,1,2], [4,1,3], [1,2],
[1,3], [2,4], [3,4], [4,1], [1], [2], [3], [4]
Prime Paths : [2,4,1,2], [2,4,1,3], [1,3,4,1], [1,2,4,1],
[3,4,1,2], [4,1,3,4], [4,1,2,4], [3,4,1,3]
2 3
1
4
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 20
Prime Path Coverage
• A simple, elegant and finite criterion that requires
loops to be executed as well as skipped
Prime Path Coverage (PPC) : TR contains each prime path
in G.
• Will tour all paths of length 0, 1, …
• That is, it subsumes node and edge coverage
• PPC almost, but not quite, subsumes EPC …
PPC Does Not Subsume EPC
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 21
2
3
1
• If a node n has an edge to itself (self edge),
EPC requires [n, n, m] and [m, n, n]
• [n, n, m] is not prime
• Neither [n, n, m] nor [m, n, n] are simple paths
(not prime)
EPC Requirements :
TR = { [1,2,3], [1,2,2], [2,2,3], [2,2,2] }
PPC Requirements :
TR = { [1,2,3], [2,2] }
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 22
Prime Path Example
• The previous example has 38 simple paths
• Only nine prime paths
Prime Paths
[1, 2, 3, 4, 7]
[1, 2, 3, 5, 7]
[1, 2, 3, 5, 6]
[1, 3, 4, 7]
[1, 3, 5, 7]
[1, 3, 5, 6]
[6, 5, 7]
[6, 5, 6]
[5, 6, 5]
Execute
loop once
Execute loop
more than once
6
1
3
2
4 5
7
Execute
loop 0 times
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 23
Touring, Sidetrips, and Detours
• Prime paths do not have internal loops … test paths
might
• Tour : A test path p tours subpath q if q is a subpath
of p
• Tour With Sidetrips : A test path p tours subpath q
with sidetrips iff every edge in q is also in p in the
same order
• The tour can include a sidetrip, as long as it comes back to
the same node
• Tour With Detours : A test path p tours subpath q
with detours iff every node in q is also in p in the
same order
• The tour can include a detour from node ni, as long as it
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 24
Sidetrips and Detours Example
1 32 6
4
5
1 32 6
4
5
Touring with a
sidetrip
1 32 6
4
5
Touring with a
detour
1 2 5 6
3 4
1 2 5
3
4
1 2 3 4
Touring the prime path
[1, 2, 3, 5, 6] without
sidetrips or detours
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 25
Infeasible Test Requirements
• An infeasible test requirement cannot be satisfied
– Unreachable statement (dead code)
– Subpath that can only be executed with a contradiction (X > 0 and X <
0)
Practical recommendation—Best Effort Touring
– Satisfy as many test requirements as possible without
sidetrips
– Allow sidetrips to try to satisfy remaining test requirements
• Most test criteria have some infeasible test
requirements
• It is usually undecidable whether all test
requirements are feasible
• When sidetrips are not allowed, many structural
criteria have more infeasible test requirements
• However, always allowing sidetrips weakens the test
criteria
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 26
Simple & Prime Path Example
6
1
3
2
4 5
7
Len 0
[1]
[2]
[3]
[4]
[5]
[6]
[7] !
‘!’ means path
terminatesLen 1
[1, 2]
[1, 3]
[2, 3]
[3, 4]
[3, 5]
[4, 7] !
[5, 7] !
[5, 6]
[6, 5]
Len 2
[1, 2, 3]
[1, 3, 4]
[1, 3, 5]
[2, 3, 4]
[2, 3, 5]
[3, 4, 7] !
[3, 5, 7] !
[3, 5, 6] !
[5, 6, 5] *
[6, 5, 7] !
[6, 5, 6] *
‘*’ means path
cycles
Len 3
[1, 2, 3, 4]
[1, 2, 3, 5]
[1, 3, 4, 7] !
[1, 3, 5, 7] !
[1, 3, 5, 6] !
[2, 3, 4, 7] !
[2, 3, 5, 6] !
[2, 3, 5, 7] !
Len 4
[1, 2, 3, 4, 7] !
[1, 2, 3, 5, 7] !
[1, 2, 3, 5, 6] !
Prime Paths
Simple
paths
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 27
Round Trips
• Round-Trip Path : A prime path that starts and ends
at the same node
Simple Round Trip Coverage (SRTC) : TR contains at
least one round-trip path for each reachable node in G
that begins and ends a round-trip path.
Complete Round Trip Coverage (CRTC) : TR contains
all round-trip paths for each reachable node in G.
• These criteria omit nodes and edges that are not in
round trips
• Thus, they do not subsume edge-pair, edge, or node
coverage
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 28
Data Flow Criteria
• Definition (def) : A location where a value for a
variable is stored into memory
• Use : A location where a variable’s value is accessed
Goal: Try to ensure that values are computed and used
correctly
1
3
2
74
6
5
X = 42
Z = X-8
Z = X*2 Defs: def (1) = {X}
def (5) = {Z}
def (6) = {Z}
Uses: use (5) = {X}
use (6) = {X}
The values given in defs should reach at least one,
some, or all possible uses
DU Pairs and DU Paths
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 29
• def (n) or def (e) : The set of variables that are defined by node n
or edge e
• use (n) or use (e) : The set of variables that are used by node n or
edge e
• DU pair : A pair of locations (li, lj) such that a variable v is
defined at li and used at lj
• Def-clear : A path from li to lj is def-clear with respect to variable
v if v is not given another value on any of the nodes or edges in
the path
• Reach : If there is a def-clear path from li to lj with respect to v,
the def of v at li reaches the use at lj
• du-path : A simple subpath that is def-clear with respect to v
from a def of v to a use of v
• du (ni, nj, v) – the set of du-paths from ni to nj
• du (ni, v) – the set of du-paths that start at ni
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 30
Touring DU-Paths
• A test path p du-tours subpath d with respect to v if p
tours d and the subpath taken is def-clear with
respect to v
• Sidetrips can be used, just as with previous touring
• Three criteria
– Use every def
– Get to every use
– Follow all du-paths
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 31
Data Flow Test Criteria
All-defs coverage (ADC) : For each set of du-paths S =
du (n, v), TR contains at least one path d in S.
All-uses coverage (AUC) : For each set of du-paths to
uses S = du (ni, nj, v), TR contains at least one path d in
S.
All-du-paths coverage (ADUPC) : For each set S = du
(ni, nj, v), TR contains every path d in S.
• Then we make sure that every def reaches all
possible uses
• Finally, we cover all the paths between defs and
uses
• First, we make sure every def reaches a use
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 32
Data Flow Testing Example
1
3
2
74
6
5
X = 42
Z = X-8
Z = X*2
All-defs for X
[ 1, 2, 4, 5 ]
All-uses for X
[ 1, 2, 4, 5 ]
[ 1, 2, 4, 6 ]
All-du-paths for X
[ 1, 2, 4, 5 ]
[ 1, 3, 4, 5 ]
[ 1, 2, 4, 6 ]
[ 1, 3, 4, 6 ]
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 33
Graph Coverage Criteria
Subsumption
Simple Round
Trip Coverage
SRTCNode
Coverage
NC
Edge
Coverage
EC
Edge-Pair
Coverage
EPC
Prime Path
Coverage
PPC
Complete
Path
Coverage
CPC
Complete Round
Trip Coverage
CRTC
All-DU-Paths
Coverage
ADUP
All-uses
Coverage
AUC
All-defs
Coverage
ADC
Summary 7.1-7.2
• Graphs are a very powerful abstraction for designing
tests
• The various criteria allow lots of cost / benefit
tradeoffs
• These two sections are entirely at the “design
abstraction level” from chapter 2
• Graphs appear in many situations in software
– As discussed in the rest of chapter 7
Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 34

More Related Content

PPT
1. over view and history of c
PPT
E.s unit 6
PDF
Open Source Telegram Based Instant Messenger
PPT
Variants of Turing Machine
PPT
OS Process Synchronization, semaphore and Monitors
PPTX
Steps for c program execution
PPTX
Public Key Cryptosystem
PPT
Flow oriented modeling
1. over view and history of c
E.s unit 6
Open Source Telegram Based Instant Messenger
Variants of Turing Machine
OS Process Synchronization, semaphore and Monitors
Steps for c program execution
Public Key Cryptosystem
Flow oriented modeling

What's hot (20)

DOC
Branch and bound
PPT
Computer Organization and Architecture.
PPTX
hci in software development process
PPTX
scheduling.pptx
PPTX
Rotor machine,subsitution technique
PPTX
Real Time OS For Embedded Systems
PDF
Design & Analysis of Algorithms Lecture Notes
PPTX
C++ Overview PPT
PPT
RT linux
PPT
what is compiler and five phases of compiler
PDF
Embedded c
PPTX
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
DOC
Telephone directory in c
PPTX
System call
PPTX
Cache Memory And Virtual Memory in computer architecture
PDF
Intro to Embedded OS, RTOS and Communication Protocols
PPTX
Steganography
PPTX
Introduction to embedded systems
PPTX
PPTX
Security services and mechanisms
Branch and bound
Computer Organization and Architecture.
hci in software development process
scheduling.pptx
Rotor machine,subsitution technique
Real Time OS For Embedded Systems
Design & Analysis of Algorithms Lecture Notes
C++ Overview PPT
RT linux
what is compiler and five phases of compiler
Embedded c
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
Telephone directory in c
System call
Cache Memory And Virtual Memory in computer architecture
Intro to Embedded OS, RTOS and Communication Protocols
Steganography
Introduction to embedded systems
Security services and mechanisms
Ad

Similar to Ch07 1-2-overview graphcoverage (20)

DOCX
IntroductionTopological sorting is a common operation performed .docx
PPT
software quality Assurance-lecture26.ppt
PPTX
Ch07-3-sourceCode.pptxhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
PDF
1984 Article on An Application of AI to Operations Reserach
PDF
Tools and techniques of code coverage testing
PDF
20130523 05 - Cyclomatic complexity
PDF
L06 stemmer and edit distance
PPT
DOCX
Unit 7 dynamic programming
PDF
An improved tabular technique for presenting the various
PDF
An improved tabular technique for presenting the various
PPSX
White Box testing by Pankaj Thakur, NITTTR Chandigarh
PPTX
VLSID_2023 Unit IV Basic Circuit Concepts & Scaling final.pptx
PPTX
BIRTE-13-Kawashima
PPTX
Algorithms & Complexity Calculation
PPT
8783733
DOCX
Data structures assignmentweek4b.pdfCI583 Data Structure
PDF
ST Module 3 vtu prescribed syllabus and scheme
PDF
Greedy Algorithms in Algorithms and Design
PPTX
Robust and Tuneable Family of Gossiping Algorithms
IntroductionTopological sorting is a common operation performed .docx
software quality Assurance-lecture26.ppt
Ch07-3-sourceCode.pptxhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
1984 Article on An Application of AI to Operations Reserach
Tools and techniques of code coverage testing
20130523 05 - Cyclomatic complexity
L06 stemmer and edit distance
Unit 7 dynamic programming
An improved tabular technique for presenting the various
An improved tabular technique for presenting the various
White Box testing by Pankaj Thakur, NITTTR Chandigarh
VLSID_2023 Unit IV Basic Circuit Concepts & Scaling final.pptx
BIRTE-13-Kawashima
Algorithms & Complexity Calculation
8783733
Data structures assignmentweek4b.pdfCI583 Data Structure
ST Module 3 vtu prescribed syllabus and scheme
Greedy Algorithms in Algorithms and Design
Robust and Tuneable Family of Gossiping Algorithms
Ad

Recently uploaded (20)

PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Cell Structure & Organelles in detailed.
PPTX
Cell Types and Its function , kingdom of life
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
O5-L3 Freight Transport Ops (International) V1.pdf
Microbial disease of the cardiovascular and lymphatic systems
Final Presentation General Medicine 03-08-2024.pptx
STATICS OF THE RIGID BODIES Hibbelers.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Abdominal Access Techniques with Prof. Dr. R K Mishra
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Computing-Curriculum for Schools in Ghana
Cell Structure & Organelles in detailed.
Cell Types and Its function , kingdom of life
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
202450812 BayCHI UCSC-SV 20250812 v17.pptx
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
FourierSeries-QuestionsWithAnswers(Part-A).pdf
102 student loan defaulters named and shamed – Is someone you know on the list?

Ch07 1-2-overview graphcoverage

  • 1. Introduction to Software Testing (2nd edition) Chapter 7.1, 7.2 Overview Graph Coverage Criteria Paul Ammann & Jeff Offutt http://www.cs.gmu.edu/~offutt/softwaretes t/ Update, January 2016
  • 2. Ch. 7 : Graph Coverage Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 2 Four Structures for Modeling Software Graphs LogicInput Space Syntax Input Models Integ Source Applied to DNFSpecs FSMsSource Applied to Use cases Specs Design Source Applied to
  • 3. Covering Graphs (7.1) • Graphs are the most commonly used structure for testing • Graphs can come from many sources – Control flow graphs – Design structure – FSMs and statecharts – Use cases • Tests usually are intended to “cover” the graph in some way Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 3
  • 4. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 4 Definition of a Graph • A set N of nodes, N is not empty • A set N0 of initial nodes, N0 is not empty • A set Nf of final nodes, Nf is not empty • A set E of edges, each edge from one node to another – ( ni , nj ), i is predecessor, j is successor
  • 5. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 5 Example Graphs 1 32 4 N0 = { 1} Nf = { 4 } E = { (1,2), (1,3), (2,4), (3,4) } 1 32 4 N0 = { } Nf = { 4 } E = { (1,2), (1,3), (2,4), (3,4) } 10 1 54 8 2 6 9 3 7 N0 = { 1, 2, 3 } Nf = { 8, 9, 10 } E = { (1,4), (1,5), (2,5), (3,6), (3, 7), (4, 8), (5,8), (5,9), (6,9), (6,10), (7,10) (9,6) } Not a valid graph
  • 6. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 6 Paths in Graphs • Path : A sequence of nodes – [n1, n2, …, nM] – Each pair of nodes is an edge • Length : The number of edges – A single node is a path of length 0 • Subpath : A subsequence of nodes in p is a subpath of p 108 9 1 2 3 54 6 7 A Few Paths [ 1, 4, 8 ] [ 2, 5, 9, 6, 2 ] [ 3, 7, 10 ]
  • 7. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 7 Test Paths and SESEs • Test Path : A path that starts at an initial node and ends at a final node • Test paths represent execution of test cases – Some test paths can be executed by many tests – Some test paths cannot be executed by any tests • SESE graphs : All test paths start at a single node and end at another node – Single-entry, single-exit – N0 and Nf have exactly one node 1 3 2 74 6 5 Double-diamond graph Four test paths [1, 2, 4, 5, 7] [1, 2, 4, 6, 7] [1, 3, 4, 5, 7] [1, 3, 4, 6, 7]
  • 8. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 8 Visiting and Touring • Visit : A test path p visits node n if n is in p A test path p visits edge e if e is in p • Tour : A test path p tours subpath q if q is a subpath of p Path [ 1, 2, 4, 5, 7 ] Visits nodes 1, 2, 4, 5, 7 Visits edges (1, 2), (2, 4), (4, 5), (5, 7) Tours subpaths [1, 2, 4], [2, 4, 5], [4, 5, 7], [1, 2, 4, 5], [2, 4, 5, 7], [1, 2, 4, 5, 7] (Also, each edge is technically a subpath)
  • 9. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 9 Tests and Test Paths • path (t) : The test path executed by test t • path (T) : The set of test paths executed by the set of tests T • Each test executes one and only one test path – Complete execution from a start node to an final node • A location in a graph (node or edge) can be reached from another location if there is a sequence of edges from the first location to the second – Syntactic reach : A subpath exists in the graph – Semantic reach : A test exists that can execute that subpath – This distinction will become important in section 7.3
  • 10. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 10 Tests and Test Paths test 1 test 2 test 3 many-to- one test 1 test 2 test 3 many-to-many Test Path 1 Test Path 2 Test Path 3 Non-deterministic software–the same test can execute different test paths Test Path Deterministic software–test always executes the same test path
  • 11. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 11 Testing and Covering Graphs (7.2) • We use graphs in testing as follows : – Develop a model of the software as a graph – Require tests to visit or tour specific sets of nodes, edges or subpaths • Test Requirements (TR) : Describe properties of test paths • Test Criterion : Rules that define test requirements • Satisfaction : Given a set TR of test requirements for a criterion C, a set of tests T satisfies C on a graph if and only if for every test requirement in TR, there is a test path in path(T) that meets the test requirement tr• Structural Coverage Criteria : Defined on a graph just in terms of nodes and edges • Data Flow Coverage Criteria : Requires a graph to be annotated with references to variables
  • 12. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 12 Node and Edge Coverage • The first (and simplest) two criteria require that each node and edge in a graph be executed Node Coverage (NC) : Test set T satisfies node coverage on graph G iff for every syntactically reachable node n in N, there is some path p in path(T) such that p visits n. Node Coverage (NC) : TR contains each reachable node in G. • This statement is a bit cumbersome, so we abbreviate it in terms of the set of test requirements
  • 13. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 13 Node and Edge Coverage • Edge coverage is slightly stronger than node coverage Edge Coverage (EC) : TR contains each reachable path of length up to 1, inclusive, in G. • The phrase “length up to 1” allows for graphs with one node and no edges • NC and EC are only different when there is an edge and another subpath between a pair of nodes (as in an “if-else” statement) Node Coverage : TR = { 1, 2, 3 } Test Path = [ 1, 2, 3 ] Edge Coverage : TR = { (1, 2), (1, 3), (2, 3) } Test Paths = [ 1, 2, 3 ] [ 1, 3 ] 2 3 1
  • 14. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 14 Paths of Length 1 and 0 • A graph with only one node will not have any edges • It may seem trivial, but formally, Edge Coverage needs to require Node Coverage on this graph 1 • Otherwise, Edge Coverage will not subsume Node Coverage – So we define “length up to 1” instead of simply “length 1” 2 1 • We have the same issue with graphs that only have one edge – for Edge- Pair Coverage …
  • 15. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 15 Covering Multiple Edges • Edge-pair coverage requires pairs of edges, or subpaths of length 2 Edge-Pair Coverage (EPC) : TR contains each reachable path of length up to 2, inclusive, in G. • The phrase “length up to 2” is used to include graphs that have less than 2 edges • The logical extension is to require all paths … 2 3 5 6 1 4 Edge-Pair Coverage : TR = { [1,4,5], [1,4,6], [2,4,5], [2,4,6], [3,4,5], [3,4,6] }
  • 16. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 16 Covering Multiple Edges Complete Path Coverage (CPC) : TR contains all paths in G. Specified Path Coverage (SPC) : TR contains a set S of test paths, where S is supplied as a parameter. Unfortunately, this is impossible if the graph has a loop, so a weak compromise makes the tester decide which paths:
  • 17. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 17 Structural Coverage Example Node Coverage TR = { 1, 2, 3, 4, 5, 6, 7 } Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 6, 5, 7 ] 7 1 3 2 4 5 Edge Coverage TR = { (1,2), (1, 3), (2, 3), (3, 4), (3, 5), (4, 7), (5, 6), (5, 7), (6, 5) } Test Paths: [ 1, 2, 3, 4, 7 ] [1, 3, 5, 6, 5, 7 ] Edge-Pair Coverage TR = {[1,2,3], [1,3,4], [1,3,5], [2,3,4], [2,3,5], [3,4,7], [3,5,6], [3,5,7], [5,6,5], [6,5,6], [6,5,7] } Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 7 ] [ 1, 3, 4, 7 ] [ 1, 3, 5, 6, 5, 6, 5, 7 ] Complete Path Coverage Test Paths: [ 1, 2, 3, 4, 7 ] [ 1, 2, 3, 5, 7 ] [ 1, 2, 3, 5, 6, 5, 6 ] [ 1, 2, 3, 5, 6, 5, 6, 5, 7 ] [ 1, 2, 3, 5, 6, 5, 6, 5, 6, 5, 7 ] … 6
  • 18. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 18 Handling Loops in Graphs • If a graph contains a loop, it has an infinite number of paths • Thus, CPC is not feasible • SPC is not satisfactory because the results are subjective and vary with the tester • Attempts to “deal with” loops: – 1970s : Execute cycles once ([4, 5, 4] in previous example, informal) – 1980s : Execute each loop, exactly once (formalized) – 1990s : Execute loops 0 times, once, more than once (informal description) – 2000s : Prime paths (touring, sidetrips, and detours)
  • 19. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 19 Simple Paths and Prime Paths • Simple Path : A path from node ni to nj is simple if no node appears more than once, except possibly the first and last nodes are the same – No internal loops – A loop is a simple path • Prime Path : A simple path that does not appear as a proper subpath of any other simple path Simple Paths : [1,2,4,1], [1,3,4,1], [2,4,1,2], [2,4,1,3], [3,4,1,2], [3,4,1,3], [4,1,2,4], [4,1,3,4], [1,2,4], [1,3,4], [2,4,1], [3,4,1], [4,1,2], [4,1,3], [1,2], [1,3], [2,4], [3,4], [4,1], [1], [2], [3], [4] Prime Paths : [2,4,1,2], [2,4,1,3], [1,3,4,1], [1,2,4,1], [3,4,1,2], [4,1,3,4], [4,1,2,4], [3,4,1,3] 2 3 1 4
  • 20. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 20 Prime Path Coverage • A simple, elegant and finite criterion that requires loops to be executed as well as skipped Prime Path Coverage (PPC) : TR contains each prime path in G. • Will tour all paths of length 0, 1, … • That is, it subsumes node and edge coverage • PPC almost, but not quite, subsumes EPC …
  • 21. PPC Does Not Subsume EPC Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 21 2 3 1 • If a node n has an edge to itself (self edge), EPC requires [n, n, m] and [m, n, n] • [n, n, m] is not prime • Neither [n, n, m] nor [m, n, n] are simple paths (not prime) EPC Requirements : TR = { [1,2,3], [1,2,2], [2,2,3], [2,2,2] } PPC Requirements : TR = { [1,2,3], [2,2] }
  • 22. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 22 Prime Path Example • The previous example has 38 simple paths • Only nine prime paths Prime Paths [1, 2, 3, 4, 7] [1, 2, 3, 5, 7] [1, 2, 3, 5, 6] [1, 3, 4, 7] [1, 3, 5, 7] [1, 3, 5, 6] [6, 5, 7] [6, 5, 6] [5, 6, 5] Execute loop once Execute loop more than once 6 1 3 2 4 5 7 Execute loop 0 times
  • 23. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 23 Touring, Sidetrips, and Detours • Prime paths do not have internal loops … test paths might • Tour : A test path p tours subpath q if q is a subpath of p • Tour With Sidetrips : A test path p tours subpath q with sidetrips iff every edge in q is also in p in the same order • The tour can include a sidetrip, as long as it comes back to the same node • Tour With Detours : A test path p tours subpath q with detours iff every node in q is also in p in the same order • The tour can include a detour from node ni, as long as it
  • 24. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 24 Sidetrips and Detours Example 1 32 6 4 5 1 32 6 4 5 Touring with a sidetrip 1 32 6 4 5 Touring with a detour 1 2 5 6 3 4 1 2 5 3 4 1 2 3 4 Touring the prime path [1, 2, 3, 5, 6] without sidetrips or detours
  • 25. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 25 Infeasible Test Requirements • An infeasible test requirement cannot be satisfied – Unreachable statement (dead code) – Subpath that can only be executed with a contradiction (X > 0 and X < 0) Practical recommendation—Best Effort Touring – Satisfy as many test requirements as possible without sidetrips – Allow sidetrips to try to satisfy remaining test requirements • Most test criteria have some infeasible test requirements • It is usually undecidable whether all test requirements are feasible • When sidetrips are not allowed, many structural criteria have more infeasible test requirements • However, always allowing sidetrips weakens the test criteria
  • 26. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 26 Simple & Prime Path Example 6 1 3 2 4 5 7 Len 0 [1] [2] [3] [4] [5] [6] [7] ! ‘!’ means path terminatesLen 1 [1, 2] [1, 3] [2, 3] [3, 4] [3, 5] [4, 7] ! [5, 7] ! [5, 6] [6, 5] Len 2 [1, 2, 3] [1, 3, 4] [1, 3, 5] [2, 3, 4] [2, 3, 5] [3, 4, 7] ! [3, 5, 7] ! [3, 5, 6] ! [5, 6, 5] * [6, 5, 7] ! [6, 5, 6] * ‘*’ means path cycles Len 3 [1, 2, 3, 4] [1, 2, 3, 5] [1, 3, 4, 7] ! [1, 3, 5, 7] ! [1, 3, 5, 6] ! [2, 3, 4, 7] ! [2, 3, 5, 6] ! [2, 3, 5, 7] ! Len 4 [1, 2, 3, 4, 7] ! [1, 2, 3, 5, 7] ! [1, 2, 3, 5, 6] ! Prime Paths Simple paths
  • 27. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 27 Round Trips • Round-Trip Path : A prime path that starts and ends at the same node Simple Round Trip Coverage (SRTC) : TR contains at least one round-trip path for each reachable node in G that begins and ends a round-trip path. Complete Round Trip Coverage (CRTC) : TR contains all round-trip paths for each reachable node in G. • These criteria omit nodes and edges that are not in round trips • Thus, they do not subsume edge-pair, edge, or node coverage
  • 28. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 28 Data Flow Criteria • Definition (def) : A location where a value for a variable is stored into memory • Use : A location where a variable’s value is accessed Goal: Try to ensure that values are computed and used correctly 1 3 2 74 6 5 X = 42 Z = X-8 Z = X*2 Defs: def (1) = {X} def (5) = {Z} def (6) = {Z} Uses: use (5) = {X} use (6) = {X} The values given in defs should reach at least one, some, or all possible uses
  • 29. DU Pairs and DU Paths Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 29 • def (n) or def (e) : The set of variables that are defined by node n or edge e • use (n) or use (e) : The set of variables that are used by node n or edge e • DU pair : A pair of locations (li, lj) such that a variable v is defined at li and used at lj • Def-clear : A path from li to lj is def-clear with respect to variable v if v is not given another value on any of the nodes or edges in the path • Reach : If there is a def-clear path from li to lj with respect to v, the def of v at li reaches the use at lj • du-path : A simple subpath that is def-clear with respect to v from a def of v to a use of v • du (ni, nj, v) – the set of du-paths from ni to nj • du (ni, v) – the set of du-paths that start at ni
  • 30. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 30 Touring DU-Paths • A test path p du-tours subpath d with respect to v if p tours d and the subpath taken is def-clear with respect to v • Sidetrips can be used, just as with previous touring • Three criteria – Use every def – Get to every use – Follow all du-paths
  • 31. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 31 Data Flow Test Criteria All-defs coverage (ADC) : For each set of du-paths S = du (n, v), TR contains at least one path d in S. All-uses coverage (AUC) : For each set of du-paths to uses S = du (ni, nj, v), TR contains at least one path d in S. All-du-paths coverage (ADUPC) : For each set S = du (ni, nj, v), TR contains every path d in S. • Then we make sure that every def reaches all possible uses • Finally, we cover all the paths between defs and uses • First, we make sure every def reaches a use
  • 32. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 32 Data Flow Testing Example 1 3 2 74 6 5 X = 42 Z = X-8 Z = X*2 All-defs for X [ 1, 2, 4, 5 ] All-uses for X [ 1, 2, 4, 5 ] [ 1, 2, 4, 6 ] All-du-paths for X [ 1, 2, 4, 5 ] [ 1, 3, 4, 5 ] [ 1, 2, 4, 6 ] [ 1, 3, 4, 6 ]
  • 33. Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 33 Graph Coverage Criteria Subsumption Simple Round Trip Coverage SRTCNode Coverage NC Edge Coverage EC Edge-Pair Coverage EPC Prime Path Coverage PPC Complete Path Coverage CPC Complete Round Trip Coverage CRTC All-DU-Paths Coverage ADUP All-uses Coverage AUC All-defs Coverage ADC
  • 34. Summary 7.1-7.2 • Graphs are a very powerful abstraction for designing tests • The various criteria allow lots of cost / benefit tradeoffs • These two sections are entirely at the “design abstraction level” from chapter 2 • Graphs appear in many situations in software – As discussed in the rest of chapter 7 Introduction to Software Testing, Edition 2 (Ch 07) © Ammann & Offutt 34