1. Trang chủ
  2. » Luận Văn - Báo Cáo

The Art of Software Testing

15 6 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Nội dung

TheArtOfSoftwareTesting TV pdf The Art of Software Testing Second Edition Glenford J Myers Revised and Updated by Tom Badgett and Todd M Thomas with Corey Sandler John Wiley & Sons, Inc The Art of Sof[.]

The Art of Software Testing Second Edition Glenford J Myers Revised and Updated by Tom Badgett and Todd M Thomas with Corey Sandler John Wiley & Sons, Inc The Art of Software Testing The Art of Software Testing Second Edition Glenford J Myers Revised and Updated by Tom Badgett and Todd M Thomas with Corey Sandler John Wiley & Sons, Inc Copyright © 2004 by Word Association, Inc All rights reserved Published by John Wiley & Sons, Inc., Hoboken, New Jersey Published simultaneously in Canada No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning, or otherwise, except as permitted under Section 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, Inc., 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600, or on the web at www.copyright.com Requests to the Publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, (201) 748-6011, fax (201) 748-6008 Limit of Liability/Disclaimer of Warranty: While the publisher and author have used their best efforts in preparing this book, they make no representations or warranties with respect to the accuracy or completeness of the contents of this book and specifically disclaim any implied warranties of merchantability or fitness for a particular purpose No warranty may be created or extended by sales representatives or written sales materials The advice and strategies contained herein may not be suitable for your situation The publisher is not engaged in rendering professional services, and you should consult a professional where appropriate Neither the publisher nor author shall be liable for any loss of profit or any other commercial damages, including but not limited to special, incidental, consequential, or other damages For general information on our other products and services please contact our Customer Care Department within the United States at (800) 762-2974, outside the United States at (317) 572-3993 or fax (317) 572-4002 Wiley also publishes its books in a variety of electronic formats Some content that appears in print may not be available in electronic books For more information about Wiley products, visit our web site at www.Wiley.com Library of Congress Cataloging-in-Publication Data: Myers, Glenford J The art of software testing / Glenford J Myers ; Revised and updated by Tom Badgett and Todd Thomas, with Corey Sandler.—2nd ed p cm ISBN 0-471-46912-2 Computer software—Testing Debugging in computer science I Badgett, Tom II Thomas, Todd M III Sandler, Corey, 1950– IV Title QA76.6.M888 2004 005.1'4—dc22 2004002227 Printed in the United States of America 10 Contents List of Figures and Tables Preface Introduction ix xi xiii Chapter A Self-Assessment Test Chapter The Psychology and Economics of Program Testing The Psychology of Testing The Economics of Testing Black-Box Testing White-Box Testing 11 Software Testing Principles 14 Summary 20 Chapter Program Inspections, Walkthroughs, and Reviews Inspections and Walkthroughs 22 Code Inspections 24 An Error Checklist for Inspections 27 Data Reference Errors 27 Data-Declaration Errors 29 Computation Errors 30 Comparison Errors 31 Control-Flow Errors 32 Interface Errors 34 Input/Output Errors 35 Other Checks 38 v 21 vi Contents Walkthroughs 38 Desk Checking 40 Peer Ratings 40 Summary 42 Chapter Test-Case Design White-Box Testing 44 43 Logic-Coverage Testing 44 Equivalence Partitioning 52 An Example 56 Boundary-Value Analysis 59 Cause-Effect Graphing 65 Error Guessing 88 The Strategy 90 Chapter Module (Unit) Testing Test-Case Design 92 Incremental Testing 105 Top-down versus Bottom-up Testing 109 91 Top-down Testing 110 Bottom-up Testing 116 A Comparison 118 Performing the Test 120 Chapter Higher-Order Testing Function Testing 129 System Testing 130 Facility Testing 133 Volume Testing 133 Stress Testing 134 Usability Testing 135 Security Testing 137 Performance Testing 137 Storage Testing 138 Configuration Testing 138 123 Contents vii Compatibility/Configuration/Conversion Testing 138 Installability Testing 139 Reliability Testing 139 Recovery Testing 141 Serviceability Testing 142 Documentation Testing 142 Procedure Testing 142 Performing the System Test 143 Acceptance Testing 144 Installation Testing 144 Test Planning and Control 145 Test Completion Criteria 148 The Independent Test Agency 155 Chapter Debugging Debugging by Brute Force 158 Debugging by Induction 160 Debugging by Deduction 164 Debugging by Backtracking 168 Debugging by Testing 169 Debugging Principles 170 157 Error-Locating Principles 170 Error-Repairing Techniques 171 Error Analysis 173 Chapter Extreme Testing Extreme Programming Basics 178 Extreme Testing: The Concepts 183 Extreme Unit Testing 183 Acceptance Testing 185 Extreme Testing Applied 186 Test-Case Design 186 Test Driver and Application 189 Summary 191 177 viii Contents Chapter Testing Internet Applications Basic E-commerce Architecture 194 Testing Challenges 196 Testing Strategies 200 193 Presentation Layer Testing 202 Business Layer Testing 205 Data Layer Testing 208 Appendix A Sample Extreme Testing Application 213 Appendix B Prime Numbers Less Than 1,000 221 Glossary 223 Index 227 List of Figures and Tables Figure 2.1 Table 2.1 Figure 2.2 Table 3.1 Table 3.2 Figure 4.1 Figure 4.2 Figure 4.3 Table 4.1 Figure 4.4 Figure 4.5 Figure 4.6 Figure 4.7 Figure 4.8 Figure 4.9 Figure 4.10 Figure 4.11 Figure 4.12 Figure 4.13 Figure 4.14 Figure 4.15 Figure 4.16 Figure 4.17 Figure 4.18 Figure 5.1 Figure 5.2 Table 5.1 Control-Flow Graph of a Small Program Vital Program Testing Guidelines The Surprising Errors Remaining/ Errors Found Relationship Inspection Error Checklist Summary, Part I Inspection Error Checklist Summary, Part II A Small Program to Be Tested Machine Code for the Program in Figure 4.1 A Form for Enumerating Equivalence Classes Equivalence Classes Input to the MTEST Program Basic Cause-Effect Graph Symbols Sample Cause-Effect Graph Logic Diagram Equivalent to Figure 4.6 Constraint Symbols Symbol for “Masks” Constraint Sample Cause-Effect Graph with “Exclusive” Constraint Syntax of the DISPLAY Command Beginning of the Graph for the DISPLAY Command Full Cause-Effect Graph without Constraints Complete Cause-Effect Graph of the DISPLAY Command Considerations Used When Tracing the Graph Sample Graph to Illustrate the Tracing Considerations First Half of the Resultant Decision Table Second Half of the Resultant Decision Table Input Tables to Module BONUS Module BONUS Situations Corresponding to the Decision Outcomes ix 12 15 20 36 37 47 50 54 57 62 68 69 69 70 71 71 72 76 77 78 80 81 82 84 93 94 96 x Figure 5.3 Table 5.2 Figure 5.4 Figure 5.5 Figure 5.6 Figure 5.7 Figure 5.8 Figure 5.9 Figure 5.10 Figure 5.11 Table 5.3 Figure 6.1 Figure 6.2 Figure 6.3 Figure 6.4 Table 6.1 Table 6.2 Figure 6.5 Figure 6.6 Figure 7.1 Figure 7.2 Figure 7.3 Figure 7.4 Figure 7.5 Table 8.1 Table 8.2 Table 8.3 Figure 9.1 Table 9.1 Figure 9.2 Table 9.2 List of Figures and Tables Test Cases to Satisfy the Decision-Coverage Criterion Situations Corresponding to the Condition Outcomes Test Cases to Satisfy the Condition-Coverage Criterion Test Cases to Satisfy the Multicondition-Coverage Criterion Supplemental Boundary-Value-Analysis Test Cases for BONUS Sample Six-Module Program Sample 12-Module Program Second Step in the Top-down Test Intermediate State in the Top-down Test Intermediate State in the Bottom-up Test Comparison of Top-down and Bottom-up Testing The Software Development Process The Development Process with Intermediate Verification Steps The Correspondence between Development and Testing Processes The System Test Hours per Year for Various Uptime Requirements Hypothetical Estimate of When the Errors Might Be Found Estimating Completion by Plotting Errors Detected by Unit Time Postmortem Study of the Testing Processes of a Large Project The Inductive Debugging Process A Method for Structuring the Clues An Example of Clue Structuring The Deductive Debugging Process Test Case Results from the DISPLAY Command The 12 Practices of Extreme Programming Test Case Descriptions for check4Prime.java Test Driver Methods Typical Architecture of an E-Commerce Site Examples of Presentation, Business, and Data Tier Testing Detailed View of Internet Application Architecture Items to Test in Each Tier 97 98 99 100 104 106 111 113 115 118 119 124 126 127 131 141 151 153 154 161 162 163 165 166 180 187 189 195 199 202 203 Preface In 1979, Glenford Myers published a book that turned out to be a classic Myers’s original The Art of Software Testing stood the test of time, 25 years on the publisher’s list of available books This fact alone is a testament to the solid, basic, and valuable nature of his work During that same time, the current authors of the updated version of this book published collectively more than 120 books, most of them on computer software topics Some of these books sold very well, going through multiple versions (Corey Sandler’s Fix Your Own PC is in its seventh edition as this book is written, and Tom Badgett’s books on Microsoft PowerPoint and other Office titles went through four or more editions, for example.) Nevertheless, none of the current authors’ books remained current more than a few years What is the difference? These newer books cover more transient topics: operating systems, applications software, security, communications technology, and hardware configurations Rapid changes in computer hardware and software technology during the 1980s and 1990s necessitated frequent changes and updates to these topics During that period dozens—perhaps even hundreds—of books also were published about software testing They, too, took a more transient approach to the topic Myers’s The Art of Software Testing, on the other hand, gave the industry a long-lasting, foundational guide to one of the most important computer topics: How you ensure that all of the software you produce does what it was designed to and, just as important, does not what it isn’t supposed to do? xi xii Preface The version you are reading today retains that same foundational philosophy We have updated the examples to include more current programming languages, and we have addressed topics that no one knew about when Myers wrote the first edition: Web programming, e-commerce, and Extreme Programming and Testing But we didn’t forget that a new classic must be true to its roots, so this version also offers you a software testing philosophy that is all Glenford Myers, a philosophy and a process that work across current and unforeseeable future hardware and software platforms Hopefully this, too, is a book that will span a generation of software designers and developers

Ngày đăng: 19/04/2023, 20:14

w