Скачать презентацию Introduction to Software Testing Chapter 1 A Talk Скачать презентацию Introduction to Software Testing Chapter 1 A Talk

c1b85af252cc920476a446668b32c5b4.ppt

  • Количество слайдов: 37

Introduction to Software Testing Chapter 1 A Talk in 3 Parts Jeff Offutt inga Introduction to Software Testing Chapter 1 A Talk in 3 Parts Jeff Offutt inga K bolyi Do Information & Software Engineering SWE 437 Software Testing www. ise. gmu. edu/~offutt/ 637 – Introduction (Ch 1)

Cost of Testing You’re going to spend about half of your development budget on Cost of Testing You’re going to spend about half of your development budget on testing, whether you want to or not. n In real-world usage, testing is the principle post-design activity n Restricting early testing usually increases cost n Extensive hardware-software integration requires more testing 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Part 1 : Why Test? If you don’t know why you’re conducting a test, Part 1 : Why Test? If you don’t know why you’re conducting a test, it won’t be very helpful. n Written test objectives and requirements are rare n How much testing is enough? – Common objective – spend the budget … 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Cost of Not Testing Program Managers often say: “Testing is too expensive. ” n Cost of Not Testing Program Managers often say: “Testing is too expensive. ” n Not testing is even more expensive n Planning for testing after development is prohibitively expensive What are some of the costs of NOT testing? 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Part 2 : What ? But … what should we do ? 637 – Part 2 : What ? But … what should we do ? 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Important Terms Validation & Verification n Verification: The process of determining whether the products Important Terms Validation & Verification n Verification: The process of determining whether the products of a given phase of the software development process fulfill the requirements established during the previous phase – (Are we building the product right) n Validation : The process of evaluating software at the end of software development to ensure compliance with intended usage – (Are we building the right product) IV&V stands for “independent verification and validation” 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Static and Dynamic Testing n Static Testing : Testing without executing the program. – Static and Dynamic Testing n Static Testing : Testing without executing the program. – This include software inspections and some forms of analyses. n Dynamic Testing : Testing by executing the program with real inputs 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Testing Results n Dynamic testing can only reveal the presence of failures, not their Testing Results n Dynamic testing can only reveal the presence of failures, not their absence n The only validation for non-functional requirements is the software must be executed to see how it behaves n Both static and dynamic testing should be used to provide full V&V coverage 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Software Faults, Errors & Failures n Software Fault : A static defect in the Software Faults, Errors & Failures n Software Fault : A static defect in the software n Software Error : An incorrect internal state that is the manifestation of some fault n Software Failure : External, incorrect behavior with respect to the requirements or other description of the expected behavior Faults in software design mistakes and will always exist 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Software Faults, Errors & Failures public static int num. Zero (int[] x) { // Software Faults, Errors & Failures public static int num. Zero (int[] x) { // Effects: if x == null throw Null. Pointer. Exception // else return the number of occurrences of 0 in x int count = 0; for (int i = 1; i < x. length; i++) { if (x[i] == 0) { count++; } } return count; } Input [1, 2, 0] Output is 1 Input [0, 1, 2, 0] Output is 1 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Testing & Debugging n Testing : Finding inputs that cause the software to fail Testing & Debugging n Testing : Finding inputs that cause the software to fail n Debugging : The process of finding a fault given a failure 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Fault & Failure Model Three conditions necessary for a failure to be observed 1. Fault & Failure Model Three conditions necessary for a failure to be observed 1. Reachability : The location or locations in the program that contain the fault must be reached 2. Infection : The state of the program must be incorrect 3. Propagation : The infected state must propagate to cause some output of the program to be incorrect 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Some more terminology used in testing… 637 – Introduction (Ch 1) © Jeff Offutt, Some more terminology used in testing… 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Observability and Controllability n Software Observability : How easy it is to observe the Observability and Controllability n Software Observability : How easy it is to observe the behavior of a program in terms of its outputs, effects on the environment and other hardware and software components – Software that affects hardware devices, databases, or remote files have low observability n Software Controllability : How easy it is to provide a program with the needed inputs, in terms of values, operations, and behaviors – Easy to control software with inputs from keyboards – Inputs from hardware sensors or distributed software is harder – Data abstraction reduces controllability and observability 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Top-Down and Bottom-Up Testing n Top-Down Testing : Test the main procedure, then go Top-Down and Bottom-Up Testing n Top-Down Testing : Test the main procedure, then go down through procedures it calls, and so on n Bottom-Up Testing : Test the leaves in the tree (procedures that make no calls), and move up to the root. – Each procedure is not tested until all of its children have been tested 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

White-box and Black-box Testing n Black-box testing : Deriving tests from external descriptions of White-box and Black-box Testing n Black-box testing : Deriving tests from external descriptions of the software, including specifications, requirements, and design n White-box testing : Deriving tests from the source code internals of the software, specifically including branches, individual conditions, and statements This view is really out of date. The more general question is: from what level of abstraction to we derive tests? 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Changing Notions of Testing n Old view of testing is of testing at specific Changing Notions of Testing n Old view of testing is of testing at specific software development phases – Unit, module, integration, system … n New view is in terms of structures and criteria – Graphs, logical expressions, syntax, input space 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Old : Testing at Different Levels n n n Integration testing: Test how modules Old : Testing at Different Levels n n n Integration testing: Test how modules interact with each other Module testing: Test each class, file, module or component n Class A System testing: Test the overall functionality of the system n main Class P Acceptance testing: Is the software acceptable to the user? Unit testing: Test each unit (method) individually Class B method m. A 1() method m. B 1() method m. A 2() method m. B 2() 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

New : Test Coverage Criteria A tester’s job is simple : Define a model New : Test Coverage Criteria A tester’s job is simple : Define a model of the software, then find ways to cover it g Test Requirements: Specific things that must be satisfied or covered during testing g Test Criterion: A collection of rules and a process that define test requirements Testing researchers have defined dozens of criteria, but they are all really just a few criteria on four types of structures … 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Example Given a bag of jelly beans, test it. n Test Coverage Criteria: Test Example Given a bag of jelly beans, test it. n Test Coverage Criteria: Test every flavor Idea: the criteria if fully satisfied will fully test our system n Using the criteria we develop Test Requirements ( – must test grape, orange, cherry…) n Using those requirements we create test cases: – Select a jelly bean until you get a grape one. Eat it. – Select a jelly bean until you get a cherry one. Eat it. –… 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

New : Criteria Based on Structures : Four ways to model software 1. Graphs New : Criteria Based on Structures : Four ways to model software 1. Graphs 2. Logical Expressions 3. 4. Input Domain Characterization Syntactic Structures 637 – Introduction (Ch 1) (not X or not Y) and A and B A: {0, 1, >1} B: {600, 700, 800} C: {swe, cs, isa, infs} if (x > y) z = x - y; else z = 2 * x; © Jeff Offutt, 2005 -2007

1. Graph Coverage – Structural 2 1 6 5 Node (Statement) Edge (Branch) Path 1. Graph Coverage – Structural 2 1 6 5 Node (Statement) Edge (Branch) Path Cover every node Cover every edge Cover every path 3 This graph may represent • statements & branches 7 4 • methods & calls • • • 12567 • • • 1343567 1257 • • 1357 13567 • components & signals • 1357 • states and transitions • 1343567 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007 • 134357 …

1. Graph Coverage – Data Flow def = {m} def = {a , m} 1. Graph Coverage – Data Flow def = {m} def = {a , m} use = {y} 2 def = {x, y} use = {x} 6 use = {a} 1 5 use = {x} def = {a} use = {m} 7 Defs All Uses All & Uses Pairs 3 • Every (1, 2)), (x, 1, (1, 3)) (x, 1, def used once This graph contains: • defs: nodes & edges where variables get values 4 def = {m} use = {y} • uses: nodes & edges where values are accessed 637 – Introduction (Ch 1) Every def “reaches” every • use 1, 4), (y, 1, 6) (y, • 1, 2, 5, 6, 7 • • 1, 2, (5, 6)), 7 2, (5, 7)), (a, 2, 5, 6, (a, • 1, 3, 4, (a, 3, (5, 7)), 3, (5, 6)), 3, 5, 7 • 1, 2, 5, 7 • (m, 4, 7), (m, 6, 7) • 1, 3, 5, 6, 7 • 1, 3, 5, 7 © Jeff Offutt, 2005 -2007 • 1, 3, 4, 3, 5, 7

2. Logical Expressions ( (a > b) or G ) and (x < y) 2. Logical Expressions ( (a > b) or G ) and (x < y) Transitions Program Decision Statements Software Specifications 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007 Logical Expressions

2. Logical Expressions ( (a > b) or G ) and (x < y) 2. Logical Expressions ( (a > b) or G ) and (x < y) n Predicate Coverage : Each predicate must be true and false – ( (a>b) or G ) and (x < y) = True, False n Clause Coverage : Each clause must be true and false – (a > b) = True, False – G = True, False – (x < y) = True, False n Combinatorial Coverage : Various combinations of clauses – Active Clause Coverage: Each clause must determine the predicate’s result 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

2. Logic – Active Clause Coverage ( (a > b) or G ) and 2. Logic – Active Clause Coverage ( (a > b) or G ) and (x < y) With these values for G and (xb) determines the value of the predicate T F T 2 F F T 3 F T T 4 F F T 5 T T T 6 637 – Introduction (Ch 1) 1 T T F © Jeff Offutt, 2005 -2007 duplicate

3. Input Domain Characterization n Describe the input domain of the software – Identify 3. Input Domain Characterization n Describe the input domain of the software – Identify inputs, parameters, or other categorization – Partition each input into finite sets of representative values – Choose combinations of values n System level – Number of students – Level of course – Major n { 0, 1, >1 } { 600, 700, 800 } { swe, cs, isa, infs } Unit level – Parameters F (int X, int Y) – Possible values X: { <0, 0, 1, 2, >2 }, Y : { 10, 20, 30 } – Tests • F (-5, 10), F (0, 20), F (1, 30), F (2, 10), F (5, 20) Equivalence Partition in the Pressman book 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Input Domain Characterization (Equivalence Partitioning) 3 <4 4 637 – Introduction (Ch 1) 11 Input Domain Characterization (Equivalence Partitioning) 3 <4 4 637 – Introduction (Ch 1) 11 Between 4 and 10 > 10 Number of input values 9999 10000 < 10000 7 10 50000 100000 99999 Between 10000 and 99999 © Jeff Offutt, 2005 -2007 > 99999

4. Syntactic Structures n n Based on a grammar, or other syntactic definition Primary 4. Syntactic Structures n n Based on a grammar, or other syntactic definition Primary example is mutation testing 1. 2. 3. 4. n Induce small changes to the program: mutants Find tests that cause the mutant programs to fail: killing mutants Failure is defined as different output from the original program Check the output of useful tests on the original program Example program and mutants if (x > y) if (x >= y) z = x - y; z = x + y; z = x – m; else z = 2 * x; if (x > y) z = x - y; else z = 2 * x; 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Coverage Given a set of test requirements TR for coverage criterion C, a test Coverage Given a set of test requirements TR for coverage criterion C, a test set T satisfies C coverage if and only if for every test requirement tr in TR, there is at least one test t in T such that t satisfies tr n Infeasible test requirements : test requirements that cannot be satisfied – No test case values exist that meet the test requirements – Dead code – Detection of infeasible test requirements is formally undecidable for most test criteria 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Coverage Example n Coverage Criteria: test every node n Test Requirements: – Execute Node Coverage Example n Coverage Criteria: test every node n Test Requirements: – Execute Node 1, – Execute Node 2, – Exceute Node … n 2 1 6 5 3 4 Test Set: – Test Case 1: 1, 2, 5, 6, 7 – Test Case 2: 1, 3, 4, 3, 5, 7 637 – Introduction (Ch 1) Criteria give you a Jeff Offutt, 2005 -2007 requirements recipe for test © 7

Two Ways to Use Test Criteria 1. Directly generate test values to satisfy the Two Ways to Use Test Criteria 1. Directly generate test values to satisfy the criterion often assumed by the research community most obvious way to use criteria. Very hard without automated tools 2. Generate test values externally and measure against the criterion usually favored by industry – – sometimes misleading if tests do not reach 100% coverage, what does that mean? 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

How to use Coverage Criteria (Direct method) n Define your representation of the system How to use Coverage Criteria (Direct method) n Define your representation of the system as one of the four models – – n Graph Logical Expression Input Domain Syntactic Structure Determine your criteria – What rule will you use (some examples. . There are many more!) • We will cover every edge in the graph • We will verify each boolean clause as true and false • We will verify one value in each input partition (equivalence class) n Using that criteria, determine the set of Test Requirements you need to satisfy your criteria – Must cover graph edge (2, 5), (1, 6), (4, 1), … n Create the test cases that satisfy your test criteria 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Generators and Recognizers n n n Generator : A procedure that automatically generates values Generators and Recognizers n n n Generator : A procedure that automatically generates values to satisfy a criterion Recognizer : A procedure that decides whether a given set of test values satisfies a criterion Both problems are provably undecidable for most criteria It is possible to recognize whether test cases satisfy a criterion far more often than it is possible to generate tests that satisfy the criterion Coverage analysis tools are quite plentiful 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Some Tools n Static Analysis Tools – Find. Bugs - Finds MANY categories of Some Tools n Static Analysis Tools – Find. Bugs - Finds MANY categories of bugs – Checkstyle - coding standard violations – PMD - Maybe a lot more, but seems to be mainly unused variables, also cut-n-paste code. – Jamit - Java Access Modifier Inference Tool - find tighter access modifiers – UPDATE Spring 2010: SQE: A nice integration with Netbeans: • http: //kenai. com/projects/sqe/pages/Home – http: //en. wikipedia. org/wiki/List_of_tools_for_static_code_analysis n Unit Testing – Junit – see Unit. Testing Slides n Coverage Analysis Tool – Netbeans Plugins - Unit Tests Code Coverage Plugin n Mutation Testers – http: //www. mutationtest. net/twiki/bin/view/Resources/Web. Home 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Unit Testing n See unit testing slides 637 – Introduction (Ch 1) © Jeff Unit Testing n See unit testing slides 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007

Quiz review n n n n What is the difference between verification and validation? Quiz review n n n n What is the difference between verification and validation? What is the difference between static and dynamic testing? Can testing prove the absence of errors? What is a software fault? Error? Failure? How do they relate? What are three types of code coverage criteria? What is logical coverage? What is input domain characterization? What is mutation testing? 637 – Introduction (Ch 1) © Jeff Offutt, 2005 -2007