1 / 41

Writing a Test Strategy

Writing a Test Strategy. Tor Stålhane. Strategy vs. Plan. Strategy tackles the question of why looks at all influencing factor comes to terms with the whole situation, not just one end result. Plan is a list of steps taken to accomplish a goal.

dollya
Download Presentation

Writing a Test Strategy

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. Writing a Test Strategy Tor Stålhane

  2. Strategy vs. Plan • Strategy • tackles the question of why • looks at all influencing factor • comes to terms with the whole situation, not just one end result. • Plan • is a list of steps taken to accomplish a goal. • tackles questions like how, when, where, who, and what • Plan vs. StrategyA plan says, “Here are the steps,” while a strategy says, “Here are the best steps.” Strategy speaks to the reasons why, while the plan is focused on how.

  3. Why a testing strategy We need a testing strategy to help • System and software testers plus Test-and-Evaluation staff to determine the overall test strategy when developing or modifying a software intensive system • Project stakeholders – customers and senior management – to approve the test strategy • Testers and system and software analysis to determine • Test objectives • Qualification requirements • Verification and validation criteria

  4. Testing strategy concepts We will discuss the following concepts: • Purpose of a test strategy • Testing focus • Contents of a test strategy • Software integrity levels • Test objectives and priorities

  5. Purpose of a test strategy – 1 The test strategy is important in order to • Obtain consensus on test goals and objectives from stakeholders – e.g. management, developers, testers, customers and users • Manage expectations right from the start • Be sure that we are heading in the right direction • Identify the type of tests to be conducted at all test levels

  6. Purpose of a test strategy – 2 When we write a test strategy is important to remember that: • Whatever we do, some kind of test strategy will emerge. Thus, we might as well specify the one we think is the best one • A documented strategy is the most effective way to get an early agreement on goals and objectives • We need to address: • Human factors – usability • Interoperability, except for stand-alone systems

  7. Testing focus Our focus will depend on which stakeholder we are considering at the moment: • Users – acceptance test and operational tests • Analysts – systems test, qualification tests • Designer – integration tests • Programmer – unit tests The main point is that we need to define the stakeholder first – then the tests to be run.

  8. Contents of a test strategy – 1 The following is a list of what can be specified in a test strategy. Not all of it is needed in all cases – only use what is necessary. • Project plan, risks and activities • Relevant regulations – depending ofn application area • Required processes and standards • Supporting guide lines

  9. Contents of a test strategy – 2 • Stakeholders – e.g. users, testers, maintainers – and their objectives • Necessary resources – people, computers • Test levels and phases • Test environment – e.g. lab equipment • Completion criteria for each phase • Required documentation and review method for each document

  10. Software integrity level There are several ways to define software integrity levels. When we choose an integrity level this will strongly influence the way we do testing. We will look at three definitions of integrity levels: • IEEE 1012 – general software • ISO 26262 – automotive software • IEC 61508 – general safety critical software

  11. Warning The next slides are taken from the two standards ISO 26262 (automotive) and IEC 61508 (industrial automation). They show the accepted techniques for some testing activities – integration testing, unit testing and module testing. Note that these lists • Show what is recommended depending on SIL or ASIL level. • Do not include any techniques related to TDD or agile techniques.

  12. IEEE 1012 – general software • 4, High – some functions affect critical system performance. • 3, Major – some functions affects important system performance • 2, Moderate – some functions effect system performance but workarounds can be implemented to compensate. • 1, Low – some functions have noticeable effect on system performance but creates only inconveniences

  13. V&V Activities

  14. ISO 26262 – automotive software The ASIL level – A, B, C or D – is the outcome of the combination of three factors: • S – Severity. How dangerous is a event • E – Probability. How likely is the event • C – Controllability. How easy the event to control if it occurs

  15. Finding the ASIL level

  16. ACC system • High controllability – Class C1 system • High severity, e.g., collisions – Severity S3 • Low probability errors – no testing needed, only quality management during development • High probability errors – software class A or B

  17. Methods for software integration testing

  18. Methods for software unit testing

  19. IEC 61508 – safety critical software The level of criticality uses two parameters: • Ft = tolerable risk frequency • Fnp = protection system demand rate PFDavg = Ft / Fnp . E.g. we can accept one dangerous situation per year, thus Ft =10-4. Problems will cause the protection system to be invoked 10 times per hour. Thus Fpn = 10 => PFDavg = 10-6 => SIL 1 This value decides the SIL level – see table on the next slide

  20. IEC 61508 – safety critical software Safety High demand or continuous mode of integrity operation level (Probability of a dangerous failure per hour) - 9 - 8 ³ < 4 10 to 10 - 8 - 7 ³ < 3 10 to 10 - 7 - 6 ³ < 10 to 10 2 - 6 - 5 ³ < 1 10 to 10

  21. Detailed design

  22. Module testing and integration

  23. Test objectives and priorities Only in rather special cases can we test all input – binary input / output and few parameters. Thus, we need to know • The overall objective of testing • The objective of every test case • The test case design techniques needed to achieve our goals in a systematic way. The test objectives are our requirements specification for testing.

  24. Test data selection One of the important decisions in selecting a test strategy is how to select test data. We will look at five popular methods • Random testing • Domain partition testing • Risk based testing • User profile testing • Bach’s heuristic risk-based testing

  25. Random testing The idea of random testing is simple: • Define all input parameters – e.g. integer, real, string • Use a random test / number generator to produce inputs to the SUT The main problem with this method is the lack of an oracle to check the results against. Thus, manual checking is necessary. The method is mostly used for crash testing (robustness testing) – will the system survive this input?

  26. Domain partition testing – 1 Definitions: • A domain is a set of input values for which the program performs the same computation for every number of the set. We want to define the domains so that the program performs different computations on adjacent domains • A program is said to have a domain error if the program incorrectly performs input classification – selects the wrong domain

  27. Domain partition testing – 2 The main challenge with domain partition is to find the domains. For small components we can identify the domains from the code. For large components or when we do not have access to the code, we may use the algorithm that is used for the implementation, e.g. X e interval 1 => F1 X e interval 2 => F2 X e interval 3 => F3 will give us three input domains defined by the three intervals

  28. Domain partition testing – 3 Textual use case can also be used to identify input domains. Important sources of information are • Preconditions and triggers. Each set may identify a new input domain • Alternate flows. Each alternate flow may identify a new input domain It is important to remember that domain testing is not the same as function coverage.

  29. Domain partition testing – 4 When we discuss testing, it is reasonable to also include erroneous inputs. If we have several input parameters, incorrect values for each may identify a new domain since the error handling, triggered by a test or an exception will activate a new path throuh the code.

  30. Domain testing – simple example If a >< 0, this equation has the following solution Otherwise we have that

  31. Testing domains – 1 A = 0 a >< 0 A = 0 a = 0 A = 0 D3 D1 D2 A = 0

  32. Testing domains – 2 We have four input domains: • D0: a = b = 0, which is a line in the three-dimensional space • D1: a = 0 and b >< 0, which a plane in the three-dimensional space • D3: b*b >= 4*ac and a >< 0. • D2: b*b < 4*ac and a >< 0.

  33. b b Domains for a fixed c Domains for a fixed c - - value value D1 D D3 D3 2* 2* sqrt(ac sqrt(ac ) ) D2 D0 a a D2 D3 D3 D1 Testing domains – 3

  34. Risk based testing The idea of risk based testing is to • Identify the risk or cost of not delivering a certain functionality. • Use this info to prioritize tests. We will cover this in more details later under “Test prioritation”

  35. User profile testing The main idea with this type of testing is to generate tests that mirror the user’s way of using the system. Consider a situation where we know that the users in 80% of all case • Fetch a table from the database • Update one or more info items • Save the table back to the database Then 80% of all tests should test these three actions.

  36. Bach’s risk-based testing Bach’s heuristics is based on his experience as a tester. Based on this experience he has identified • A generic risk list – things that are important to test • A risk catalogue – things that often go wrong We will give a short summary of the first of Bach’s lists.

  37. Bach’s generic risk list – 1 Look out for anything that is: • Complex – large, intricate or convoluted • New – no past history in this product • Changed – anything that has been tampered with or “improved” • Upstream dependency – a failure here will cascade through the system • Downstream dependency – sensitive to failure in the rest of the system • Critical – a failure here will cause serious damage

  38. Bach’s generic risk list – 2 • Precise – must meet the requirements exactly • Popular – will be used a lot • Strategic – of special importance to the users or customers • Third-party – developed outside the project • Distributed – spread out over time or space but still required to work together • Buggy – known to have a lot of problems • Recent failure – has a recent history of failures.

  39. Test and system level – 1

  40. Test and system level – 2 From the diagram on the previous slide we see that we can test on the • Electronics level – e.g. DoorActuator sends the right signal • State / signal level – e.g. door is closed iff DoorStateClosed • Logical level – e.g. the door remain closed as long as the speed is non-zero • Safety level – e.g. the door remain closed as long as the train is moving

  41. Acknowledgement The first part of this presentation is mainly taken from Gregory T. Daich’s presentation “Defining a Software Testing Strategy”, 30 April 2002.

More Related