Software Engineering Muhammad Fahad Khan fahaduettaxila edu pk

  • Slides: 43
Download presentation
Software Engineering Muhammad Fahad Khan fahad@uettaxila. edu. pk University Of Engineering & Technology Taxila,

Software Engineering Muhammad Fahad Khan fahad@uettaxila. edu. pk University Of Engineering & Technology Taxila, Pakistan 1

Today’s Class Chapter 14 Software Testing Techniques R. S. Pressman

Today’s Class Chapter 14 Software Testing Techniques R. S. Pressman

Overview n What is it? n n n Who does it? n n Early

Overview n What is it? n n n Who does it? n n Early stage- software engineer Later – testing specialists Why important? n n To design a series of test cases that have high likelihood of finding errors. Testing techniques provide systematic guidance of designing tests that (1) exercise the internal logic and interface of every software component (2) exercise the input and output domains of the program to uncover errors in program function, behavior, and performance. In order to find the highest possible number of error, test must be conduct systematically and test cases must be designed using disciplined techniques Steps? Work products? n Test cases 3

Testability How easily a program can be tested? n Operability—the better it works, the

Testability How easily a program can be tested? n Operability—the better it works, the more efficiently it can be tested n Observability—the results of each test case are readily observed, source code, variables are visible? n Controllability—the degree to which testing can be automated and optimized n Decomposability—testing can be targeted. Software is built as independent modules that can be tested independently n Simplicity—reduce complex architecture and logic to simplify tests n Stability—few changes are requested during testing n Understandability—of the design 4

Outline n n n Software testing fundamental White-box testing Basic path testing Control structure

Outline n n n Software testing fundamental White-box testing Basic path testing Control structure testing Black-box testing Object-oriented testing methods 5

What is a “Good” Test? n n A good test has a high probability

What is a “Good” Test? n n A good test has a high probability of finding an error A good test is not redundant. A good test should be “best of breed” A good test should be neither too simple nor too complex 6

Test Case Design "Bugs lurk in corners and congregate at boundaries. . . "

Test Case Design "Bugs lurk in corners and congregate at boundaries. . . " OBJECTIVE to uncover errors CRITERIA in a complete manner CONSTRAINT with a minimum of effort and time 7

Exhaustive Testing loop < 20 X 14 There are 10 possible paths! If we

Exhaustive Testing loop < 20 X 14 There are 10 possible paths! If we execute one test per millisecond, it would take 3, 170 years to test this program!! 8

Selective Testing Selected path loop < 20 X 9

Selective Testing Selected path loop < 20 X 9

Software Testing black-box methods white-box methods Methods Strategies 10

Software Testing black-box methods white-box methods Methods Strategies 10

White-Box Testing . . . our goal is to ensure that all statements and

White-Box Testing . . . our goal is to ensure that all statements and conditions have been executed at least once. . . 11

White-Box Testing n n Glass-box testing Design philosophy n n Use the control structure

White-Box Testing n n Glass-box testing Design philosophy n n Use the control structure described as part of component-level design to derive test case What kind of test cases that software engineers can derive n n all independent paths Logical decision Loops at the boundary Internal structures 12

Example 1 n 2 n 3 4 6 8 7 5 n n Path

Example 1 n 2 n 3 4 6 8 7 5 n n Path 1: 1 -11 Path 2: 1 -2 -3 -4 -5 -10 -111 Path 3: 1 -2 -3 -6 -8 -9 -10 -1 -11 Path 4: 1 -2 -3 -6 -7 -9 -10 -1 -11 9 11 10 13

Basis Path Testing First, we compute the cyclomatic complexity: number of simple decisions +

Basis Path Testing First, we compute the cyclomatic complexity: number of simple decisions + 1 or number of enclosed areas + 1 In this case, V(G) = 4 14

Cyclomatic Complexity A number of industry studies have indicated that the higher V(G), the

Cyclomatic Complexity A number of industry studies have indicated that the higher V(G), the higher the probability or errors. modules V(G) modules in this range are more error prone 15

TECHNICAL DETAIL The cyclomatic complexity of a software module is calculated from a connected

TECHNICAL DETAIL The cyclomatic complexity of a software module is calculated from a connected graph of the module (that shows the topology of control flow within the program) How To Find ? n Cyclomatic complexity (CC) = E - N + p n where E = the number of edges of the graph n N = the number of nodes of the graph n p = the number of connected components

Basis Path Testing Next, we derive the independent paths: 1 Since V(G) = 4,

Basis Path Testing Next, we derive the independent paths: 1 Since V(G) = 4, there are four paths 2 3 4 5 7 8 6 Path 1: Path 2: Path 3: Path 4: 1, 2, 3, 6, 7, 8 1, 2, 3, 5, 7, 8 1, 2, 4, 7, 2, 4, . . . 7, 8 Finally, we derive test cases to exercise these paths. 17

Basis Path Testing Notes you don't need a flow chart, but the picture will

Basis Path Testing Notes you don't need a flow chart, but the picture will help when you trace program paths count each simple logical test, compound tests count as 2 or more basis path testing should be applied to critical modules 18

Graph Matrices n n n A graph matrix is a square matrix whose size

Graph Matrices n n n A graph matrix is a square matrix whose size (i. e. , number of rows and columns) is equal to the number of nodes on a flow graph Each row and column corresponds to an identified node, and matrix entries correspond to connections (an edge) between nodes. By adding a link weight to each matrix entry, the graph matrix can become a powerful tool for evaluating program control structure during testing n n n Probability that a link will be executed Process time Memory, resource 19

Control Structure Testing n Condition testing — a test case design method that exercises

Control Structure Testing n Condition testing — a test case design method that exercises the logical conditions contained in a program module n n <, <=, >, >=, not equal, >, or, and, not Data flow testing — selects test paths of a program according to the locations of definitions and uses of variables in the program n n n DEF(s)={x|statement S contains a definition of X} USE(s)={x|statement S contains a use of X} A definition-use (DU) chain of variable X is of the form [X, S, S’]. 20

Loop Testing Simple loop Nested Loops Concatenated Loops Unstructured Loops 21

Loop Testing Simple loop Nested Loops Concatenated Loops Unstructured Loops 21

Loop Testing: Simple Loops Minimum conditions—Simple Loops 1. skip the loop entirely 2. only

Loop Testing: Simple Loops Minimum conditions—Simple Loops 1. skip the loop entirely 2. only one pass through the loop 3. two passes through the loop 4. m passes through the loop m < n 5. (n-1), n, and (n+1) passes through the loop where n is the maximum number of allowable passes 22

Loop Testing: Nested Loops Start at the innermost loop. Set all outer loops to

Loop Testing: Nested Loops Start at the innermost loop. Set all outer loops to their minimum iteration parameter values. Test the min+1, typical, max-1 and max for the innermost loop, while holding the outer loops at their minimum values. Move out one loop and set it up as in step 2, holding all other loops at typical values. Continue this step until the outermost loop has been tested. Concatenated Loops If the loops are independent of one another then treat each as a simple loop else* treat as nested loops endif* 23

Black-Box Testing requirements output input events 24

Black-Box Testing requirements output input events 24

Black-Box Testing n n n Behavioral testing Focus on the functional requirements of the

Black-Box Testing n n n Behavioral testing Focus on the functional requirements of the software Attempts to find errors in the following categories n n Incorrect/miss function Errors in data structures or external database access Behavior/performance errors Initialization/termination errors 25

Black-Box Testing Tests are designed to answer the following questions n n n n

Black-Box Testing Tests are designed to answer the following questions n n n n How is functional validity tested? How is system behavior and performance tested? What classes of input will make good test cases? Is the system particularly sensitive to certain input values? How are the boundaries of a data class isolated? What data rates and data volume can the system tolerate? What effect will specific combinations of data have on system operation? 26

Graph-Based Methods To understand the objects that are modeled in software and the relationships

Graph-Based Methods To understand the objects that are modeled in software and the relationships that connect these objects In this context, we consider the term “objects” in the broadest possible context. It encompasses data objects, traditional components (modules), and objectoriented elements of computer software. 27

Equivalence Partitioning n n Black-box testing Divides the input domain of a program into

Equivalence Partitioning n n Black-box testing Divides the input domain of a program into classes of data from which test cases can be derived. One or more tests are derived from each of the class. Idea n If one test fails, most likely all the tests in the domain will fail 28

Equivalence Partitioning user queries mouse picks FK input output formats prompts data 29

Equivalence Partitioning user queries mouse picks FK input output formats prompts data 29

Sample Equivalence Classes Valid data user supplied commands responses to system prompts file names

Sample Equivalence Classes Valid data user supplied commands responses to system prompts file names computational data physical parameters bounding values initiation values output data formatting responses to error messages graphical data (e. g. , mouse picks) Invalid data outside bounds of the program physically impossible data proper value supplied in wrong place 30

Boundary Value Analysis n n n A complement of equivalence partitioning Select the edges

Boundary Value Analysis n n n A complement of equivalence partitioning Select the edges of the class Include input and output 31

Boundary Value Analysis user queries mouse picks FK input output formats prompts input domain

Boundary Value Analysis user queries mouse picks FK input output formats prompts input domain data output domain 32

Boundary Value Analysis How do I create BVA test cases? n Input: range a

Boundary Value Analysis How do I create BVA test cases? n Input: range a and b n n Input: a number of value n n n a, b, just above and just below a and b Min, max, just above and just below min and max Output: Data structure has boundaries n array 33

Comparison Testing n Used only in situations in which the reliability of software is

Comparison Testing n Used only in situations in which the reliability of software is absolutely critical (e. g. , human-rated systems) n n n Separate software engineering teams develop independent versions of an application using the same specification Each version can be tested with the same test data to ensure that all provide identical output Then all versions are executed in parallel with real-time comparison of results to ensure consistency 34

Orthogonal Array Testing n Used when the number of input parameters is small and

Orthogonal Array Testing n Used when the number of input parameters is small and the values that each of the parameters may take are clearly bounded 35

OOT—Test Case Design Implications of OO concepts 1. Encapsulation a) Testing operation outside of

OOT—Test Case Design Implications of OO concepts 1. Encapsulation a) Testing operation outside of the class is unproductive b) Obstacle. Why? Information hide 2. Inheritance a) Each mew context of usage requires retesting, even though reuse has been achieved. 3. Polymorphism - take on multiple forms a) attribute have more than one set of values and an operation may be implemented by more than one method. b) Ex –abstract card class 36

Testing Methods n Fault-based testing n n Class Testing and the Class Hierarchy n

Testing Methods n Fault-based testing n n Class Testing and the Class Hierarchy n n The tester looks for plausible faults (i. e. , aspects of the implementation of the system that may result in defects). To determine whether these faults exist, test cases are designed to exercise the design or code. n Integration testing-three types in the client (not server) n Unexpected result n Wrong operation/message used n Incorrect invocation Inheritance does not obviate the need for thorough testing of all derived classes. In fact, it can actually complicate the testing process. Scenario-Based Test Design n Scenario-based testing concentrates on what the user does, not what the product does. This means capturing the tasks (via use-cases) that the user has to perform, then applying them and their variants as tests. 37

OOT Methods: Random Testing n Random testing n n n identify operations applicable to

OOT Methods: Random Testing n Random testing n n n identify operations applicable to a class define constraints on their use identify a minimum test sequence n n generate a variety of random (but valid) test sequences n n an operation sequence that defines the minimum life history of the class (object) exercise other (more complex) class instance life histories Example n n Account Open->deposit->withdraw->close 38

OOT Methods: Partition Testing n n reduces the number of test cases required to

OOT Methods: Partition Testing n n reduces the number of test cases required to test a class in much the same way as equivalence partitioning for conventional software state-based partitioning n n categorize and test operations based on their ability to change the state of a class Account n n n attribute-based partitioning n categorize and test operations based on the attributes that they use n n Operations changes the state (withdraw, deposit) Operations do not change the state (balance, report) Balance, credit limit category-based partitioning n n categorize and test operations based on the generic function each performs Account n n n Init: open, setup Computation: deposit, withdraw Query: balance, summarize 39

OOT Methods: Inter-Class Testing n Inter-class testing n n For each client class, use

OOT Methods: Inter-Class Testing n Inter-class testing n n For each client class, use the list of class operators to generate a series of random test sequences. The operators will send messages to other server classes. For each message that is generated, determine the collaborator class and the corresponding operator in the server object. For each operator in the server object (that has been invoked by messages sent from the client object), determine the messages that it transmits. For each of the messages, determine the next level of operators that are invoked and incorporate these into the test sequence 40

OOT Methods: Behavior Testing The tests to be designed should achieve all state coverage.

OOT Methods: Behavior Testing The tests to be designed should achieve all state coverage. That is, the operation sequences should cause the Account class to make transition through allowable states 41

Testing Patterns Pattern name: pair testing Abstract: A process-oriented pattern, pair testing describes a

Testing Patterns Pattern name: pair testing Abstract: A process-oriented pattern, pair testing describes a technique that is analogous to pair programming in which two testers work together to design and execute a series of tests that can be applied to unit, integration or validation testing activities. Pattern name: separate test interface Abstract: There is a need to test every class in an object-oriented system, including “internal classes” (i. e. , classes that do not expose any interface outside of the component that used them). The separate test interface pattern describes how to create “a test interface that can be used to describe specific tests on classes that are visible only internally to a component. ” Pattern name: scenario testing Abstract: Once unit and integration tests have been conducted, there is a need to determine whether the software will perform in a manner that satisfies users. The scenario testing pattern describes a technique for exercising the software from the user’s point of view. A failure at this level indicates that the software has failed to meet a user visible requirement. 42

Question & Review session For any query feel free to contact fahad@uettaxila. edu. pk

Question & Review session For any query feel free to contact fahad@uettaxila. edu. pk http: //web. uettaxila. edu. pk/CMS/se. SE 2 bs/index. asp