1 / 46

Chapter 13 Testing Strategies

Chapter 13 Testing Strategies. Outline. Introduction Unit Testing Integration Testing Acceptance Testing Debugging. Introduction. Some Words. defect fault problem error incident anomaly variance failure inconsistency feature bug. 缺点 谬误 问题 错误 毛病 异常 偏差 失败 矛盾

cspence
Télécharger la présentation

Chapter 13 Testing Strategies

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. Chapter 13Testing Strategies

  2. Outline • Introduction • Unit Testing • Integration Testing • Acceptance Testing • Debugging

  3. Introduction

  4. Some Words • defect • fault • problem • error • incident • anomaly • variance • failure • inconsistency • feature • bug 缺点 谬误 问题 错误 毛病 异常 偏差 失败 矛盾 特殊 缺陷

  5. Verification and Validation • Verification(验证) : the set of activities that ensure that software correctly implements a specific function. • Question: Are we building the product right? • Validation(确认) : a different set of activities that ensure that the software that has been built is traceable to customer requirements. • Question: Are we building the right product?

  6. Software Quality Assurance (SQA) • Verification and validation encompasses a wide array of SQA activities: Formal Technical Review Measurement Software Engineering Methodology Quality Standard and Process Testing SCM & SQA

  7. Organizing for Software Testing • Software Developer: • to test the individual units of the program; • to do integration testing; • Independent Test Group (ITG): • to find errors as possible as; • Misconceptions: • The developer should do no testing at all. • The software should be tested by strangers. • The tester need not join the project before testing.

  8. Software Testing Strategy and Steps System Engineering/Information System System Test Software Requirements Analysis Validation Test Design Integration Test Coding Unit Test Software Testing Process Software Engineering Process

  9. Software Testing unit test integration test system test validation test

  10. Criteria for Completion of Testing • 1. You’re never done testing; the burden simply shifts from you to your customer; • 2. You’re done testing when you run out of time or you run out of money; • 3. You’re done sufficient testing to say with 95% confidence ( Using statistical modeling and software reliability models );

  11. A Successful Software Testing Strategy • Specify product requirements in a quantifiable manner long before testing commences. • State testing objectives explicitly. • Understand the users of the software and develop a profile for each user category. • Develop a testing plan that emphasizes “rapid cycle testing”. • Build “robust” software that is designed to test itself. • Use effective formal technical reviews as a filter prior to testing. • Conduct formal technical reviews to assess the test strategy and test cases themselves. • Develop a continuous improvement approach for the testing process.

  12. Unit Testing

  13. Questions! • What errors are commonly found during unit testing? • What errors should test case uncover? • What potential errors should be tested?

  14. The Process of Unit Testing • Module to be tested: results software engineer test cases

  15. The Contents of Unit Testing module to be tested interface local data structures boundary conditions independent paths error handling paths test cases

  16. Unit Test Environment driver interface local data structures Module boundary conditions independent paths error handling paths stub stub test cases RESULTS

  17. Integration Testing

  18. Integration Testing Strategies • Options: • • the “big bang” approach • • an incremental construction strategy

  19. Top Down Testing A top module is tested with stubs B F G stubs are replaced one at a time, "depth first" C as new modules are integrated, some subset of tests is re-run D E

  20. M S1 S2 The Steps of Top Down Testing (1) 第1步:测试顶端模块,用存根程序(stub)代替直接附属的下层模块 Stub: to simulate the activity of the component which is not yet tested.

  21. S1 S2 M S3 S4 The Steps of Top Down Testing (2) 第2步:根据深度优先或宽度优先的策略,每次用一个实际模块代换一个stub。 第3步:在结合进一个模块的同时进行测试。 第4步:回归测试(regression testing)——全部或部分地重复以前做过的测试。

  22. Regression Testing • Regression testing is the re-execution of some subset of tests that have already been conducted to ensure that changes have not propagated unintended side effects.

  23. Notes 优点:在早期即对主要控制及关键的抉择进行检验。 问题:Stub只是对低层模块的模拟,测试时没有重要的数据自下往上流,许多重要的测试须推迟进行,而且在早期不能充分展开人力。

  24. Bottom-Up Testing A B F G drivers are replaced one at a time, "depth first" C worker modules are grouped into builds and integrated D E cluster

  25. D M1 M2 The Steps of Bottom-Up Testing (1) 第1步:把低层模块组合成族,每族实现一个子功能。 第2步:用驱动程序(Driver)协调测试数据的I\O,测试子功能族。 Driver: to call a particular component and passes a test case to it.

  26. D M D M D M M D D M D M M M M The Steps of Bottom-Up Testing (2) 第3步:去掉Driver,自下而上把子功能族合成更大的子功能族。 注意:两种策略的优、缺点刚好互补,但单用其中任一种都不实际,通常根据软件的特点将二者混用。 M M M

  27. Sandwich Testing A Top modules are tested with stubs B F G C Worker modules are grouped into builds and integrated D E cluster

  28. Notes Top-down Target layer Bottom-up

  29. Acceptance Testing

  30. Two Kinds of Acceptance Testing • Validation Testing: • Validation Test Criteria; • Configuration Review; • Alpha and Beta Testing; • System Testing: • Recovery Testing; • Security Testing; • Stress Testing; • Performance Testing;

  31. α测试和β测试 • 软件是为多个用户开发的 • α测试:一个用户以开发者的身份实施, 开发者通过用户来观察开发的软件, 是在受控的环境下进行的,在开发环境下进行 • β测试:最终用户以一个或多个用户的身份进行的,开发者不在现场,在用户环境下进行

  32. 恢复测试(recovery testing) • 在系统出故障后,系统能否从故障中恢复过来,并在预定的时间间隔内从新开始处理 • 强使软件出现故障,系统应自动恢复 • 如需人工干预,应估算出修复的平均时间,确定出是否可接受

  33. 安全性测试(security testing) • 系统的预防机制(预防非法入侵:窃贼,报复,非法牟利……) • 安全性测试,验证系统的预防机制 • 测试者扮演期望侵入系统的角色,通过一切可能的措施侵入系统 • 测试开销可能很大

  34. 强度测试(stress testing) • 在一个非正常数量,频率或容量方式下运行系统 • 测试者想办法破坏程序 1,运行要求最大内存或其他资源的程序 2,按大小递增的顺序改变输入数据的速率,看系统怎样响应 …………..

  35. 性能测试(performance testing) • 测试软件被组装进系统的环境下运行时的性能 • 性能测试覆盖测试过程中的每一步

  36. Debugging

  37. Failure and Fault Failure(外错误)is the departure of a system from its required behavior. Fault(故障、内错误、error、bug)is resulted by human error in some software product. A program’s failure is clear symptom of the presence of a fault ; but not every fault corresponds to a failure , since the conditions under which a fault results in system failure may never be met.

  38. The Art of Debugging • A Diagnostic Process: • Debugging Approaches: • Brute Force; • Backtracking; • Cause Elimination;

  39. The Debugging Process test cases Execution of cases results new test cases regression tests suspected causes Debugging corrections identified causes

  40. Debugging Effort time required to diagnose the symptom and determine the cause time required to correct the error and conduct regression tests

  41. Symptoms & Causes symptom and cause may be geographically separated symptom may disappear when another problem is fixed cause may be due to a combination of non-errors cause may be due to a system or compiler error cause may be due to symptom assumptions that everyone cause believes symptom may be intermittent

  42. Consequences of Bugs infectious damage catastrophic extreme serious disturbing annoying mild Bug Type Bug Categories: function-related bugs, system-related bugs, data bugs, coding bugs, design bugs, documentation bugs, standards violations, etc.

  43. Debugging Techniques brute force / testing backtracking induction deduction

  44. Debugging: Final Thoughts 1. Don't run off half-cocked, think about the symptom you're seeing. 2. Use tools (e.g., dynamic debugger) to gain more insight. 3. If at an impasse, get help from someone else. 4. Be absolutely sure to conduct regression tests when you do "fix" the bug.

  45. Reference • 《软件测试》(美)Ron Patton 著, 周予滨等译,机械工业出版社——测试的入门教材 • 《软件工程与软件测试自动化教程》张克东等编著,电子工业出版社——介绍了一种自动测试工具

More Related