1 / 28

Dependable Software Systems

Dependable Software Systems. Topics in Mutation Testing and Program Perturbation. Material drawn from [Offutt 93,Offutt95,Offutt96]. What is Mutation Testing?. Mutation Testing is a testing technique that focuses on measuring the adequacy of test cases.

alka
Download Presentation

Dependable Software Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Dependable Software Systems Topics in Mutation Testing and Program Perturbation Material drawn from [Offutt 93,Offutt95,Offutt96] Dependable Software Systems (Mutation)

  2. What is Mutation Testing? • Mutation Testing is a testing technique that focuses on measuring the adequacy of test cases. • Mutation Testing is NOT a testing strategy like path or data-flow testing. It does not outline test data selection criteria. • Mutation Testing should be used in conjunction with traditional testing techniques, not instead of them. Dependable Software Systems (Mutation)

  3. Mutation Testing • Faults are introduced into the program by creating many versions of the program called mutants. • Each mutant contains a single fault. • Test cases are applied to the original program and to the mutant program. • The goal is to cause the mutant program to fail, thus demonstrating the effectiveness of the test case. Dependable Software Systems (Mutation)

  4. Test Case Adequacy • A test case is adequate if it is useful in detecting faults in a program. • A test case can be shown to be adequate by finding at least one mutant program that generates a different output than does the original program for that test case. • If the original program and all mutant programs generate the same output, the test case is inadequate. Dependable Software Systems (Mutation)

  5. Mutant Programs • Mutation testing involves the creation of a set of mutant programs of the program being tested. • Each mutant differs from the original program by one mutation. • A mutation is a single syntactic change that is made to a program statement. Dependable Software Systems (Mutation)

  6. Example of a Program Mutation 1 int max(int x, int y) 2 { 3 int mx = x; 4 if (x > y) 5 mx = x; 6 else 7 mx = y; 8 return mx; 9 } 1 int max(int x, int y) 2 { 3 int mx = x; 4 if (x < y) 5 mx = x; 6 else 7 mx = y; 8 return mx; 9 } Dependable Software Systems (Mutation)

  7. Categories of Mutation Operators • Operand Replacement Operators: • Replace a single operand with another operand or constant. E.g., • if (5 > y) Replacing x by constant 5. • if (x > 5) Replacing y by constant 5. • if (y > x) Replacing x and y with each other. • E.g., if all operators are {+,-,*,**,/} then the following expression a = b * (c - d) will generate 8 mutants: • 4 by replacing * • 4 by replacing -. Dependable Software Systems (Mutation)

  8. Categories of Mutation Operators • Expression Modification Operators: • Replace an operator or insert new operators. E.g., • if (x == y) • if (x >= y) Replacing == by >=. • if (x == ++y) Inserting ++. Dependable Software Systems (Mutation)

  9. Categories of Mutation Operators • Statement Modification Operators: • E.g., • Delete the else part of the if-else statement. • Delete the entire if-else statement. • Replace line 3 by a return statement. Dependable Software Systems (Mutation)

  10. Mutation Operators • The Mothra mutation system for FORTRAN77 supports 22 mutation operators. E.g., • absolute value insertion • constant for array reference replacement • GOTO label replacement • RETURN statement replacement • statement deletion • unary operator insertion • logical connector replacement • comparable array name replacement Dependable Software Systems (Mutation)

  11. Why Does Mutation Testing Work? • The operators are limited to simple single syntactic changes on the basis of the competent programmer hypothesis. Dependable Software Systems (Mutation)

  12. The Competent Programmer Hypothesis • Programmers are generally very competent and do not create “random” programs. • For a given problem, a programmer, if mistaken, will create a program that is very close to a correct program. • An incorrect program can be created from a correct program by making some minor change to the correct program. Dependable Software Systems (Mutation)

  13. Mutation Testing Algorithm • Generate program test cases. • Run each test case against the original program. • If the output is incorrect, the program must be modified and re-tested. • If the output is correct go to the next step ... • Construct mutants using a tool like Mothra. Dependable Software Systems (Mutation)

  14. Mutation Testing Algorithm (Cont’d) • Execute each test case against each alive mutant. • If the output of the mutant differs from the output of the original program, the mutant is considered incorrect and is killed. • Two kinds of mutants survive: • Functionally equivalent to the original program: Cannot be killed. • Killable: Test cases are insufficient to kill the mutant. New test cases must be created. Dependable Software Systems (Mutation)

  15. Mutation Score • The mutation score for a set of test cases is the percentage of non-equivalent mutants killed by the test data. • Mutation Score = 100 * D / (N - E) • D = Dead mutants • N = Number of mutants • E = Number of equivalent mutants • A set of test cases is mutation adequate if its mutation score is 100%. Dependable Software Systems (Mutation)

  16. Evaluation • Theoretical and experimental results have shown that mutation testing is an effective approach to measuring the adequacy of test cases. • The major drawback of mutation testing is the cost of generating the mutants and executing each test case against them. Dependable Software Systems (Mutation)

  17. Example of Mutation Testing Costs • The FORTRAN 77 version of the max() program generated 44 mutants using Mothra. • Most efforts on mutation testing have focused on reducing its cost by reducing the number of mutants while maintaining the effectiveness of the technique. Dependable Software Systems (Mutation)

  18. Program Perturbation • Program Perturbation is a technique to test a program’s robustness. • It is based on unexpectedly changing the values of program data during run-time. Dependable Software Systems (Mutation)

  19. Software Failure Hypothesis • Program perturbation is based on the three part software failure hypothesis: • Execution: The fault must be executed. • Infection: The fault must change the data state of the computation directly after the fault location. • Propagation: The erroneous data state must propagate to an output variable. Dependable Software Systems (Mutation)

  20. Program Perturbation Process • The tester must: • inject faults in the data state of an executing program; • trace the impact of the injected fault on the program’s output. • The injection is performed by applying a perturbation function that changes the program’s data state. Dependable Software Systems (Mutation)

  21. The Perturbation Function • The perturbation function is a mathematical function that: • takes a data state as its input; • changes the data state according to some specified criteria; • produces a modified data state as output. Dependable Software Systems (Mutation)

  22. The Fault Injection • A program location N is chosen along with a set of input variables I that are in scope at location N. • The program is executed until location N. • When execution arrives at location N, the resulting data state is changed (perturbed). • The subsequent execution will either fail or succeed. Dependable Software Systems (Mutation)

  23. Program Perturbation Example • Assume the following perturbation function: 1. int perturbation (int x) 2. { 3. int newX; 4. newX = x + 20; 5. return newX; 6. } Dependable Software Systems (Mutation)

  24. Example of a Fault Injection 1. main() 2. { 3. int x; 4. x = ReadInt(); 4.1 x = perturbation(x); 5. if (x > 0) 6. printf(“X positive”); 7. else 8. printf(“X negative”); 9. } 1. main() 2. { 3. int x; 4. x = ReadInt(); 5. if (x > 0) 6. printf(“X positive”); 7. else 8. printf(“X negative”); 9. } Dependable Software Systems (Mutation)

  25. What Perturbation Testing is and is Not • Perturbation testing is NOT a testing technique that outlines test selection and coverage criteria. • Rather, perturbation testing is a technique that can be used to measure the reliability of the software (tolerance to faults). Dependable Software Systems (Mutation)

  26. Evaluation • The program is repeatedly executed and injected with faults during each execution. • The ratio of the number of failures detected divided by the total number of executions is used to predict failure tolerance. Dependable Software Systems (Mutation)

  27. References • [Offutt93] Offutt, J., Rothermel, G., Zapf, C., An Experimental Evaluation of Selective Mutation, ICSE-15, Baltimore, Maryland, May 1993. • [Offutt95] Offutt, J., A Practical System for Mutation Testing: Help for the Common Programmer, 12th International Conference on Testing Computer Software, Washington, DC, June, 1995. • [Offutt96] Offutt, J., Lee, A., Rothermel, G., Zapf, C., An Experimental Determination of Sufficient Mutation Operators, ACM Transactions on Software Engineering and Methodology, Vol. 15, No. 2, April 1996. Dependable Software Systems (Mutation)

  28. References • [Mathur94] Mathur, A., P., Mutation Testing, In the Encyclopedia of Software Engineering, John Wiley, 1994. • [Voas99] Voas, J., McGraw, G., Software Fault Injection -Inoculating Programs Against Errors, Wiley Computer Publishing. ISBN 0-471-18381-4 Dependable Software Systems (Mutation)

More Related