300 likes | 348 Views
COTS testing. Torbjørn Skramstad. Some used approaches. Component meta-data approach. Retro-components approach. Built-in test (BIT) approach. The STECC strategy. COTS. What is Meta-data.
E N D
COTS testing Torbjørn Skramstad
Some used approaches • Component meta-data approach. • Retro-components approach. • Built-in test (BIT) approach. • The STECC strategy. • COTS
What is Meta-data • Meta-data are any data related to a component that is not the code. Commonly used meta-data are for instance: • State diagrams • Quality of Service information • Pseudo code and algorithm descriptions • Test logs – what has been tested? • Usage patterns – how has the component been used up till now?
Comments on Meta-data • Meta-data can take up a considerable amount of storage. Thus, they can be • an integrated part of the component • stored separately and have to be down-loaded when needed.
Component meta-data – 1 Component Binary code Call graphs, Testing info. done by provider Metadata
Component meta-data – 2 Component server functionality Meta DB Metadata req Metadata
Assessment based on meta-data • Round trip path tests based on state diagrams • Functional tests based on algorithms or pseudo code • Tests relevance assessment based on test logs • Previous usage patterns in accordance with our expected use
Retrospectors • A retrospector is a tool that records the testing and execution history of a component. The information is stored as meta-data. • A retro-component is a software component with a retrospector.
Retro-components approach Component server functionality Meta DB Metadata req + test and usage data Metadata
Using the retrospectors • By collecting usage info we have a better basis for defect removal and testing • For COTS component users, the retrospector will give important info on • How the component was tested – e.g. instead of a test log • How the component has been used by others. This will tell us whether we are going to use the component in a new way => high risk • e.g. we plan to use it in a safety critical system
Built-In Test – BIT • We will focus on BIT – RTT (Run Time Testability). • We need two sets of tests: • In the component, to test that its environment behaves as expected • In the component’s clients, to test that the component implements the semantics that its clients have been developed to expect
Testing the component The test consists of the following steps: • Bring the component to the starting state for the test • Run the test • Check that the • results are as expected • final state is reached as expected
Selecting tests We need to consider two issues: • The quality of the test – the more comprehensive the better. Unfortunately, more comprehensive => larger • The size of the test – the faster the better. Unfortunately, faster => smaller The solution is to have several sets of tests that are run at different occasions.
BIT architecture – 1 We have the following components: • The component, with one or more interfaces and implementation of functionality • BIT-RTT provides support for the testing • External tester – runs the tests needed • Handler – takes care of errors, exceptions, fail-safe behavior etc. • Constructor – initialization of components such as external testers and handlers
Disadvantages of BIT Static nature. Do not ensure that tests are conducted as required by the component user The component provider makes some assumptions concerning the requirements of the component user, which again might be wrong or inaccurate.
What is STECC • STECC stands for “Self TEsting Cots Components”. • The method has much in common with BIT. The main difference is that • BIT is static – we rerun one or more already defined tests. • STECC is dynamic – we generate new tests based on a description. We may also interact with the tester.
STECC strategy Server query functionality Meta DB Metadata Req. Tester Metadata Test generator
Benefits of STECC • The STECC addresses the needs of the component provider and the component user • The COTS provider might not want to disclose information, in particular source code • The COTS user might require this information for performing adequate and necessary testing • Existing approaches, such as BIT, do not appropriately tackle such a situation
STECC reference • S. Beydeda, The Self-Testing COTS Components (STECC) Method. PhD thesis, Universitat Leipzig, Fakultat fur Mathematik und Informatik, 2003
Assessing COTS – 1 When considering a candidate component, developers need to ask three key questions: Does the component meet the developers’ needs? Is the quality of the component sufficient? (quality factor, level) What impact will the component have on the system? It is practical to consider the answers to these questions for several relevant scenarios
Black box test reduction using Input-output Analysis Random Testing is not complete To perform complete functional testing, the number of test cases can sometimes be reduced by Input-output Analysis • We can identify I/O relationships by using static analysis or execution analysis of program
Test reduction using Orthogonal Array Testing • Used when the number of input parameters is small and the values that each of the parameters may take are clearly bounded
One input at a time: (1,1,1,1), (2,1,1,1),…(1,1,1,3). Finds ”single mode faults”, but not faults when there exist logical relations between the variables Exhaustive testing: 34 = 81 tests L9 orthogonal: see table to the right. Test strategy: Detect and isolate all single mode errors Detect all double mode errors (specific levels of two parameters occur together) Multimode errors: some multimode errors can be found by L9 orthogonal array testing L9 orthogonal array