SlideShare une entreprise Scribd logo
1  sur  32
Risk Based Testing
and
Random Testing

Dr. Himanshu Hora
SRMS College of Engineering & Technology
Bareilly (INDIA)
Risk Based Testing
and
Random Testing
• Use of Risk Analysis and Metrics
for Software Testing
• Focus Testing to Save Time and
Money while maintaining quality
• How to develop metrics to manage
and organise large test projects
The Challenges
•
•
•
•

Time Constraints
Resource Constraints
Quality Requirements
Risk Factors:
– New technology
– Lack of knowledge
– Lack of experience

• Take Control!
Risk Analysis and Testing
Test Plan
Test Item Tree

Risk
Strategy

Risk
Identification

Testing,
Inspection etc.

Risk
Assessment

Matrix: Cost
and Probability

Risk
Mitigation

Test Metrics
Risk
Reporting
Risk
Prediction
Risk Based Testing - Theory
• The Formula

Re(f) P(f)*C(f)
– Re(f) Risk Exposure of function f
– P(f) - Probability of a fault in function f
– C(f) - Cost related to a fault in function f
Risk Based Testing - Approach
• Plan: Identify Elements to be Tested
– Logical or physical Functions, Modules etc.

• Identify Risk Indicators
– What is important to predict the probability of faults?

• Identify Cost of faults
• Identify Critical Elements
– I.e. functions, tasks, activities etc. based on Risk Analysis
(Indicators and Cost)

• Execute: Improve the Test Process and Organization:
Schedule and Track
Simple Test Metrics
• Test Planning
– Number of test cases per function
– Number of hours testing per function

• Progress Tracking
–
–
–
–

Number of tests planned, executed and completed
Number of faults per function
Number of hours used for test and fix
Estimated to Complete

• Probability of faults - Indicators
–
–
–
–

New functionality
Size
Complexity
Quality of previous phases and documents

• Cost of Faults
Risk Based Testing - Metrics
• Identify Areas with “High Risk Exposure”
– Probability and Cost

• All functions/modules should be tested to a
“minimum level”

• “Extra Testing” in areas with high risk exposure
• Establish Test Plan and Schedule
– Monitor Quality
• Number of Faults per function and time

– Monitor Progress
• Number of hours in test and fix -> ETC
Risk Based Testing - Example
Ranking the functions based on Risk Exposure
The Probability of a Fault
The Cost of a Fault

C(c) C(s)
Re(f) P(f)*
2

Example:
Cost
Func.

Probability
New Design
Func. Quality Size
5
5
1

Risk

Com- Weighted Exp.
plexity Averag func.
3
f

C( s )

C(c)

Avr.

Interest
Calc.

3

3

3

2

3

3

3

37

111

Close
Account

1

3

2

2

2

2

3

31

62

Cust.
Profitab.

2

1

1,5

3

3

2

3

41

61,5

Other Probability Factors might include: Function Points, Frequency of Use etc.
High

Probability

Risk Based Testing
- Reporting

1

2
3
4

TECHNICAL
INTERFACE
RISK

10

1

Low
Low

440

Low Medium

Probability

High

510

439

11

2

2

370
369

5

302
Low

Low

Medium

Medium
BUSINESS RISK

High

High

Consequence

Consequence

High
Risk Based Testing - Practice
Prior to test execution:
identify critical transactions
1

Test Execution
identifies
“bad” transactions

“Top-20”

2

Extra Testing:
- Additional testing by product specialist
- Automated regression testing
3
Planning and Progress Tracking

Number of Test
Cases

On-line Test Cases Completed

Planned
Executed

QAed
Date

Started
Planned
Actual
Progress Indicators - “To be vs. Actual”

“To be
Retested”
vs.
“Actually
Retested”

To Be Fixed

Actually fixed

To Be Restested, Actually Retested and Rejected
Number of Faults

• “To be fixed”
vs.
“Actually fixed”

Number of Faults

To Be Fixed and Actually Fixed

To be retested

Act. retested
Rejected
Progress Indicators - Hours Used
Number of hours
for finding one
fault and for
fixing one

Hours per Fault for Test and Fix
Hours per Fault

Online

Batch

Fix

Hours per Fault for Test and Fix
Hours per Fault

Number of hours
for finding one
fault and for
fixing one

Test

Fix

Test

Date
“Estimated to Complete”
• ETC for system test based on:

Hours ETC

– Number of hours testing per fault found
– Number of hours fixing per fault
– Number of
faults found
Calculated ETC and Actual Hours
per function
Actual to Complete
– Number of
at Time t
fixes being
rejected
– Number of
remaining
tests
(functions
to be tested)
Date
Estimated to Complete at Time t
Benefits of Risk Based Testing
• Improved Quality?
– all critical functions tested

• Reduced Time and Money in Testing
– effort not wasted on non critical or low risk
functions

• Improved customer confidence
– due to customer involvement and good reporting
and progress tracking
Test Process Work Flow
Risk Identification

Risk Assessment
Basic Test
Data

PD

LD

Case Quality
Standards

Test Exec.
Procedure

Test Case

Case Build
Procedure

Test
Completed

QC / QA

Good
Test Exec

Risk Mitigation

Good/
Bad
Bad

PTDs
Raised

Risk Reporting
Retest

Risk Prediction

Problem Mngmnt.
Procedure

Fix

Fix Procedure

CR

Change Mngmnt.
Procedure

Regression
Test

ProAte
Summary
• Risk Based Test Approach
– Focused Testing
• Reduced Resources
• Improved Quality

– Metrics are fundamental

• Process and Organization must support the
new strategy
– Metrics must support the organization and
process
Random testing
– Start off with a practical look, and some useful
ideas to get you started on the project: random
testing for file systems
– Then take a deeper look at the notion of feedback
and why it is useful: method for testing OO
systems from ICSE a couple of years
• Then back out to take a look at the general idea of
random testing, if time permits
A Little Background
– Generate program inputs at random
– Drawn from some (possibly changing) probability
distribution
“Throw darts at the state space, without drawing a
bullseye”
– May generate the same test (or equivalent tests)
many times
– Will perform operations no sane human would
ever perform
Random Testing
• Millions of operations and scenarios, automatically
generated
• Run on fast & inexpensive workstations
• Results checked automatically by a reference oracle
• Hardware simulation for fault injection and reset
simulation
(x 100000)

A day (& night) of testing

(x 100000)
(x 100000)

(x 100000)
The Goals
• Randomize early testing (since it is not possible
to be exhaustive)
– We don’t know where the bugs are

Nominal
Scenario Tests

Randomized
Testing
The Goals
• Make use of desktop hardware for early testing – vs.
expensive (sloooow) flight hardware testbeds
– Many faults can be exposed without full bit-level
hardware simulation
The Goals
• Automate early testing
– Run tests all the time, in the background, while continuing
development efforts

• Automate test evaluation
– Using reference systems for fault detection and diagnosis
– Automated test minimization techniques to speed
debugging and increase regression test effectiveness

• Automate fault injection
– Simulate hardware failures in a controlled test
environment
Random testing
• Simulated flash hardware layer allows random
fault injection
• Most development/early testing can be done
on workstations
• Lots of available compute power – can cover
many system behaviors
• Will stress software in ways nominal testing will
not
Differential Testing
• How can we tell if a test succeeds?
– POSIX standard for file system operations
• IEEE produced, ANSI/ISO recognized standard for file
systems
• Defines operations and what they should do/return,
including nominal and fault behavior
File system
/
POSIX operation

Result

mkdir (“/eng”, …)
mkdir (“/data”, …)
creat (“/data/image01”, …)
creat (“/eng/fsw/code”, …)
mkdir (“/data/telemetry”, …)
unlink (“/data/image01”)

SUCCESS
SUCCESS
SUCCESS
ENOENT
SUCCESS
SUCCESS

/eng

/data

image01

/telemetry
Differential Testing
• How can we tell if a test succeeds?
– The POSIX standard specifies (mostly) what correct
behavior is
– We have heavily tested implementations of the
POSIX standard in every flavor of UNIX, readily
available to us
– We can use UNIX file systems (ext3fs, tmpfs, etc.) as
reference systems to verify the correct behavior of
flash
– First differential approach (published)
was McKeeman’s testing for compilers
Random Differential Testing
Choose (POSIX) operation F

Perform F on NVFS

Perform F on Reference
(if applicable)

Compare return values
Compare error codes
Compare file systems
Check invariants

(inject a fault?)
Don’t Use Random Testing for Everything!
• Why not test handing read a null pointer?
– Because (assuming the code is correct) it guarantees
some portion of test operations will not induce failure
– But if the code is incorrect, it’s easier and more
efficient to write a single test
– The file system state doesn’t have any impact (we
hope!) on whether there is a null check for the buffer
passed to read

• But we have to remember to actually do these
non-random fixed tests, or we may miss critical,
easy-to-find bugs!
Principles Used
•
•
•
•

Random testing (with feedback)
Test automation
Hardware simulation & fault injection
Use of a well-tested reference implementation
as oracle (differential testing)
• Automatic test minimization (delta-debugging)
• Design for testability
– Assertions
– Downward scalability (small model property)
– Preference for predictability
Synopsis
• Random testing is sometimes a powerful
method and could likely be applied more
broadly in other missions
– Already applied to four file system-related
development efforts
– Part or all of this approach is applicable to
other critical components (esp. with better
models to use as references)
Thank You

Dr. Himanshu Hora
SRMS College of Engineering & Technology
Bareilly (INDIA)

Contenu connexe

Tendances

Software Quality Assurance
Software Quality Assurance Software Quality Assurance
Software Quality Assurance ShashankBajpai24
 
Software Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsSoftware Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsKMS Technology
 
Chapter 1 - Fundamentals of Testing
Chapter 1 - Fundamentals of TestingChapter 1 - Fundamentals of Testing
Chapter 1 - Fundamentals of TestingNeeraj Kumar Singh
 
Software testing and process
Software testing and processSoftware testing and process
Software testing and processgouravkalbalia
 
How To Write A Test Case In Software Testing | Edureka
How To Write A Test Case In Software Testing | EdurekaHow To Write A Test Case In Software Testing | Edureka
How To Write A Test Case In Software Testing | EdurekaEdureka!
 
What is Test Plan? Edureka
What is Test Plan? EdurekaWhat is Test Plan? Edureka
What is Test Plan? EdurekaEdureka!
 
Risk-based Testing
Risk-based TestingRisk-based Testing
Risk-based TestingJohan Hoberg
 
risk based testing and regression testing
risk based testing and regression testingrisk based testing and regression testing
risk based testing and regression testingToshi Patel
 
Getting start with Performance Testing
Getting start with Performance Testing Getting start with Performance Testing
Getting start with Performance Testing Yogesh Deshmukh
 
Test Case Design and Technique
Test Case Design and TechniqueTest Case Design and Technique
Test Case Design and TechniqueSachin-QA
 
Test automation methodologies
Test automation methodologiesTest automation methodologies
Test automation methodologiesMesut Günes
 
Types of test tools
Types of test toolsTypes of test tools
Types of test toolsVaibhav Dash
 
Software Testing Techniques
Software Testing TechniquesSoftware Testing Techniques
Software Testing TechniquesKiran Kumar
 
Fundamentals of testing
Fundamentals of testingFundamentals of testing
Fundamentals of testingBugRaptors
 
Types of software testing
Types of software testingTypes of software testing
Types of software testingTestbytes
 
Software Quality Assurance
Software Quality AssuranceSoftware Quality Assurance
Software Quality AssuranceSachithra Gayan
 

Tendances (20)

Belajar Postman test runner
Belajar Postman test runnerBelajar Postman test runner
Belajar Postman test runner
 
Software Quality Assurance
Software Quality Assurance Software Quality Assurance
Software Quality Assurance
 
Software Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsSoftware Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing Trends
 
Software testing
Software testingSoftware testing
Software testing
 
Chapter 1 - Fundamentals of Testing
Chapter 1 - Fundamentals of TestingChapter 1 - Fundamentals of Testing
Chapter 1 - Fundamentals of Testing
 
Software testing and process
Software testing and processSoftware testing and process
Software testing and process
 
Code Coverage
Code CoverageCode Coverage
Code Coverage
 
How To Write A Test Case In Software Testing | Edureka
How To Write A Test Case In Software Testing | EdurekaHow To Write A Test Case In Software Testing | Edureka
How To Write A Test Case In Software Testing | Edureka
 
What is Test Plan? Edureka
What is Test Plan? EdurekaWhat is Test Plan? Edureka
What is Test Plan? Edureka
 
Risk-based Testing
Risk-based TestingRisk-based Testing
Risk-based Testing
 
risk based testing and regression testing
risk based testing and regression testingrisk based testing and regression testing
risk based testing and regression testing
 
Testing
TestingTesting
Testing
 
Getting start with Performance Testing
Getting start with Performance Testing Getting start with Performance Testing
Getting start with Performance Testing
 
Test Case Design and Technique
Test Case Design and TechniqueTest Case Design and Technique
Test Case Design and Technique
 
Test automation methodologies
Test automation methodologiesTest automation methodologies
Test automation methodologies
 
Types of test tools
Types of test toolsTypes of test tools
Types of test tools
 
Software Testing Techniques
Software Testing TechniquesSoftware Testing Techniques
Software Testing Techniques
 
Fundamentals of testing
Fundamentals of testingFundamentals of testing
Fundamentals of testing
 
Types of software testing
Types of software testingTypes of software testing
Types of software testing
 
Software Quality Assurance
Software Quality AssuranceSoftware Quality Assurance
Software Quality Assurance
 

En vedette

Practical Application Of Risk Based Testing Methods
Practical Application Of Risk Based Testing MethodsPractical Application Of Risk Based Testing Methods
Practical Application Of Risk Based Testing MethodsReuben Korngold
 
Building a software testing environment
Building a software testing environmentBuilding a software testing environment
Building a software testing environmentHimanshu
 
Test Environment Management Maturity Model
Test Environment Management Maturity ModelTest Environment Management Maturity Model
Test Environment Management Maturity Modelcrawforn992
 
Environment Delivery Management Services
Environment Delivery Management  ServicesEnvironment Delivery Management  Services
Environment Delivery Management Servicesdrummondrj
 
Managing Test Environments
Managing Test EnvironmentsManaging Test Environments
Managing Test EnvironmentsKevin Harvey
 
Test Environment Management KPI
Test Environment Management KPITest Environment Management KPI
Test Environment Management KPIValentine Wats
 
Test Environment Strategy
Test Environment StrategyTest Environment Strategy
Test Environment StrategyTony Barber
 
Test Environment Management
Test Environment ManagementTest Environment Management
Test Environment ManagementKanoah
 

En vedette (8)

Practical Application Of Risk Based Testing Methods
Practical Application Of Risk Based Testing MethodsPractical Application Of Risk Based Testing Methods
Practical Application Of Risk Based Testing Methods
 
Building a software testing environment
Building a software testing environmentBuilding a software testing environment
Building a software testing environment
 
Test Environment Management Maturity Model
Test Environment Management Maturity ModelTest Environment Management Maturity Model
Test Environment Management Maturity Model
 
Environment Delivery Management Services
Environment Delivery Management  ServicesEnvironment Delivery Management  Services
Environment Delivery Management Services
 
Managing Test Environments
Managing Test EnvironmentsManaging Test Environments
Managing Test Environments
 
Test Environment Management KPI
Test Environment Management KPITest Environment Management KPI
Test Environment Management KPI
 
Test Environment Strategy
Test Environment StrategyTest Environment Strategy
Test Environment Strategy
 
Test Environment Management
Test Environment ManagementTest Environment Management
Test Environment Management
 

Similaire à Risk based testing and random testing

Software engineering quality assurance and testing
Software engineering quality assurance and testingSoftware engineering quality assurance and testing
Software engineering quality assurance and testingBipul Roy Bpl
 
NG_TEST_Presentation_0510
NG_TEST_Presentation_0510NG_TEST_Presentation_0510
NG_TEST_Presentation_0510techweb08
 
NGTEST_Presentation
NGTEST_PresentationNGTEST_Presentation
NGTEST_Presentationtechweb08
 
NG_TEST_SR_Presentation
NG_TEST_SR_PresentationNG_TEST_SR_Presentation
NG_TEST_SR_Presentationtechweb08
 
Software Testing- Principles of testing- Mazenet Solution
Software Testing- Principles of testing- Mazenet SolutionSoftware Testing- Principles of testing- Mazenet Solution
Software Testing- Principles of testing- Mazenet SolutionMazenetsolution
 
ISTQBCH foundation level chapter 01 fundamentals of testing
ISTQBCH foundation level chapter 01 fundamentals of testingISTQBCH foundation level chapter 01 fundamentals of testing
ISTQBCH foundation level chapter 01 fundamentals of testingKhalilSalhi5
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.pptghkadous
 
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...ShudipPal
 
Testing- Fundamentals of Testing-Mazenet solution
Testing- Fundamentals of Testing-Mazenet solutionTesting- Fundamentals of Testing-Mazenet solution
Testing- Fundamentals of Testing-Mazenet solutionMazenetsolution
 
Class9_SW_Testing_Strategies.pdf
Class9_SW_Testing_Strategies.pdfClass9_SW_Testing_Strategies.pdf
Class9_SW_Testing_Strategies.pdfFarjanaParvin5
 
ISTQB Foundation - Chapter 2
ISTQB Foundation - Chapter 2ISTQB Foundation - Chapter 2
ISTQB Foundation - Chapter 2Chandukar
 
ISTQB, ISEB Lecture Notes
ISTQB, ISEB Lecture NotesISTQB, ISEB Lecture Notes
ISTQB, ISEB Lecture Notesonsoftwaretest
 
Software testing-and-analysis
Software testing-and-analysisSoftware testing-and-analysis
Software testing-and-analysisWBUTTUTORIALS
 
ISTQB, ISEB Lecture Notes- 2
ISTQB, ISEB Lecture Notes- 2ISTQB, ISEB Lecture Notes- 2
ISTQB, ISEB Lecture Notes- 2onsoftwaretest
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1Yogindernath Gupta
 
Context-Driven Performance Testing
Context-Driven Performance TestingContext-Driven Performance Testing
Context-Driven Performance TestingAlexander Podelko
 

Similaire à Risk based testing and random testing (20)

Software engineering quality assurance and testing
Software engineering quality assurance and testingSoftware engineering quality assurance and testing
Software engineering quality assurance and testing
 
NG_TEST_Presentation_0510
NG_TEST_Presentation_0510NG_TEST_Presentation_0510
NG_TEST_Presentation_0510
 
NGTEST_Presentation
NGTEST_PresentationNGTEST_Presentation
NGTEST_Presentation
 
NG_TEST_SR_Presentation
NG_TEST_SR_PresentationNG_TEST_SR_Presentation
NG_TEST_SR_Presentation
 
Software Testing- Principles of testing- Mazenet Solution
Software Testing- Principles of testing- Mazenet SolutionSoftware Testing- Principles of testing- Mazenet Solution
Software Testing- Principles of testing- Mazenet Solution
 
ISTQBCH foundation level chapter 01 fundamentals of testing
ISTQBCH foundation level chapter 01 fundamentals of testingISTQBCH foundation level chapter 01 fundamentals of testing
ISTQBCH foundation level chapter 01 fundamentals of testing
 
1
11
1
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.ppt
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.ppt
 
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...
Software Engineering (Software Quality Assurance & Testing: Supplementary Mat...
 
ISTQB foundation level - day 2
ISTQB foundation level - day 2ISTQB foundation level - day 2
ISTQB foundation level - day 2
 
Testing- Fundamentals of Testing-Mazenet solution
Testing- Fundamentals of Testing-Mazenet solutionTesting- Fundamentals of Testing-Mazenet solution
Testing- Fundamentals of Testing-Mazenet solution
 
Istqb foundation level day 1
Istqb foundation level   day 1Istqb foundation level   day 1
Istqb foundation level day 1
 
Class9_SW_Testing_Strategies.pdf
Class9_SW_Testing_Strategies.pdfClass9_SW_Testing_Strategies.pdf
Class9_SW_Testing_Strategies.pdf
 
ISTQB Foundation - Chapter 2
ISTQB Foundation - Chapter 2ISTQB Foundation - Chapter 2
ISTQB Foundation - Chapter 2
 
ISTQB, ISEB Lecture Notes
ISTQB, ISEB Lecture NotesISTQB, ISEB Lecture Notes
ISTQB, ISEB Lecture Notes
 
Software testing-and-analysis
Software testing-and-analysisSoftware testing-and-analysis
Software testing-and-analysis
 
ISTQB, ISEB Lecture Notes- 2
ISTQB, ISEB Lecture Notes- 2ISTQB, ISEB Lecture Notes- 2
ISTQB, ISEB Lecture Notes- 2
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1
 
Context-Driven Performance Testing
Context-Driven Performance TestingContext-Driven Performance Testing
Context-Driven Performance Testing
 

Plus de Himanshu

Structural patterns
Structural patternsStructural patterns
Structural patternsHimanshu
 
Software product line
Software product lineSoftware product line
Software product lineHimanshu
 
Shared information systems
Shared information systemsShared information systems
Shared information systemsHimanshu
 
Design Pattern
Design PatternDesign Pattern
Design PatternHimanshu
 
Creational pattern
Creational patternCreational pattern
Creational patternHimanshu
 
Architecture Review
Architecture ReviewArchitecture Review
Architecture ReviewHimanshu
 
Reliability and its principals
Reliability and its principalsReliability and its principals
Reliability and its principalsHimanshu
 
Structural and functional testing
Structural and functional testingStructural and functional testing
Structural and functional testingHimanshu
 
White box black box & gray box testing
White box black box & gray box testingWhite box black box & gray box testing
White box black box & gray box testingHimanshu
 
Pareto analysis
Pareto analysisPareto analysis
Pareto analysisHimanshu
 
Load runner & win runner
Load runner & win runnerLoad runner & win runner
Load runner & win runnerHimanshu
 
Crud and jad
Crud and jadCrud and jad
Crud and jadHimanshu
 
Junit and cactus
Junit and cactusJunit and cactus
Junit and cactusHimanshu
 
Testing a data warehouses
Testing a data warehousesTesting a data warehouses
Testing a data warehousesHimanshu
 
Software testing tools and its taxonomy
Software testing tools and its taxonomySoftware testing tools and its taxonomy
Software testing tools and its taxonomyHimanshu
 
Software reliability engineering process
Software reliability engineering processSoftware reliability engineering process
Software reliability engineering processHimanshu
 
Software reliability growth model
Software reliability growth modelSoftware reliability growth model
Software reliability growth modelHimanshu
 
Software reliability tools and common software errors
Software reliability tools and common software errorsSoftware reliability tools and common software errors
Software reliability tools and common software errorsHimanshu
 
Regression and performance testing
Regression and performance testingRegression and performance testing
Regression and performance testingHimanshu
 

Plus de Himanshu (20)

Structural patterns
Structural patternsStructural patterns
Structural patterns
 
Software product line
Software product lineSoftware product line
Software product line
 
Shared information systems
Shared information systemsShared information systems
Shared information systems
 
Saam
SaamSaam
Saam
 
Design Pattern
Design PatternDesign Pattern
Design Pattern
 
Creational pattern
Creational patternCreational pattern
Creational pattern
 
Architecture Review
Architecture ReviewArchitecture Review
Architecture Review
 
Reliability and its principals
Reliability and its principalsReliability and its principals
Reliability and its principals
 
Structural and functional testing
Structural and functional testingStructural and functional testing
Structural and functional testing
 
White box black box & gray box testing
White box black box & gray box testingWhite box black box & gray box testing
White box black box & gray box testing
 
Pareto analysis
Pareto analysisPareto analysis
Pareto analysis
 
Load runner & win runner
Load runner & win runnerLoad runner & win runner
Load runner & win runner
 
Crud and jad
Crud and jadCrud and jad
Crud and jad
 
Junit and cactus
Junit and cactusJunit and cactus
Junit and cactus
 
Testing a data warehouses
Testing a data warehousesTesting a data warehouses
Testing a data warehouses
 
Software testing tools and its taxonomy
Software testing tools and its taxonomySoftware testing tools and its taxonomy
Software testing tools and its taxonomy
 
Software reliability engineering process
Software reliability engineering processSoftware reliability engineering process
Software reliability engineering process
 
Software reliability growth model
Software reliability growth modelSoftware reliability growth model
Software reliability growth model
 
Software reliability tools and common software errors
Software reliability tools and common software errorsSoftware reliability tools and common software errors
Software reliability tools and common software errors
 
Regression and performance testing
Regression and performance testingRegression and performance testing
Regression and performance testing
 

Dernier

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 

Dernier (20)

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 

Risk based testing and random testing

  • 1. Risk Based Testing and Random Testing Dr. Himanshu Hora SRMS College of Engineering & Technology Bareilly (INDIA)
  • 2. Risk Based Testing and Random Testing • Use of Risk Analysis and Metrics for Software Testing • Focus Testing to Save Time and Money while maintaining quality • How to develop metrics to manage and organise large test projects
  • 3. The Challenges • • • • Time Constraints Resource Constraints Quality Requirements Risk Factors: – New technology – Lack of knowledge – Lack of experience • Take Control!
  • 4. Risk Analysis and Testing Test Plan Test Item Tree Risk Strategy Risk Identification Testing, Inspection etc. Risk Assessment Matrix: Cost and Probability Risk Mitigation Test Metrics Risk Reporting Risk Prediction
  • 5. Risk Based Testing - Theory • The Formula Re(f) P(f)*C(f) – Re(f) Risk Exposure of function f – P(f) - Probability of a fault in function f – C(f) - Cost related to a fault in function f
  • 6. Risk Based Testing - Approach • Plan: Identify Elements to be Tested – Logical or physical Functions, Modules etc. • Identify Risk Indicators – What is important to predict the probability of faults? • Identify Cost of faults • Identify Critical Elements – I.e. functions, tasks, activities etc. based on Risk Analysis (Indicators and Cost) • Execute: Improve the Test Process and Organization: Schedule and Track
  • 7. Simple Test Metrics • Test Planning – Number of test cases per function – Number of hours testing per function • Progress Tracking – – – – Number of tests planned, executed and completed Number of faults per function Number of hours used for test and fix Estimated to Complete • Probability of faults - Indicators – – – – New functionality Size Complexity Quality of previous phases and documents • Cost of Faults
  • 8. Risk Based Testing - Metrics • Identify Areas with “High Risk Exposure” – Probability and Cost • All functions/modules should be tested to a “minimum level” • “Extra Testing” in areas with high risk exposure • Establish Test Plan and Schedule – Monitor Quality • Number of Faults per function and time – Monitor Progress • Number of hours in test and fix -> ETC
  • 9. Risk Based Testing - Example Ranking the functions based on Risk Exposure The Probability of a Fault The Cost of a Fault C(c) C(s) Re(f) P(f)* 2 Example: Cost Func. Probability New Design Func. Quality Size 5 5 1 Risk Com- Weighted Exp. plexity Averag func. 3 f C( s ) C(c) Avr. Interest Calc. 3 3 3 2 3 3 3 37 111 Close Account 1 3 2 2 2 2 3 31 62 Cust. Profitab. 2 1 1,5 3 3 2 3 41 61,5 Other Probability Factors might include: Function Points, Frequency of Use etc.
  • 10. High Probability Risk Based Testing - Reporting 1 2 3 4 TECHNICAL INTERFACE RISK 10 1 Low Low 440 Low Medium Probability High 510 439 11 2 2 370 369 5 302 Low Low Medium Medium BUSINESS RISK High High Consequence Consequence High
  • 11. Risk Based Testing - Practice Prior to test execution: identify critical transactions 1 Test Execution identifies “bad” transactions “Top-20” 2 Extra Testing: - Additional testing by product specialist - Automated regression testing 3
  • 12. Planning and Progress Tracking Number of Test Cases On-line Test Cases Completed Planned Executed QAed Date Started Planned Actual
  • 13. Progress Indicators - “To be vs. Actual” “To be Retested” vs. “Actually Retested” To Be Fixed Actually fixed To Be Restested, Actually Retested and Rejected Number of Faults • “To be fixed” vs. “Actually fixed” Number of Faults To Be Fixed and Actually Fixed To be retested Act. retested Rejected
  • 14. Progress Indicators - Hours Used Number of hours for finding one fault and for fixing one Hours per Fault for Test and Fix Hours per Fault Online Batch Fix Hours per Fault for Test and Fix Hours per Fault Number of hours for finding one fault and for fixing one Test Fix Test Date
  • 15. “Estimated to Complete” • ETC for system test based on: Hours ETC – Number of hours testing per fault found – Number of hours fixing per fault – Number of faults found Calculated ETC and Actual Hours per function Actual to Complete – Number of at Time t fixes being rejected – Number of remaining tests (functions to be tested) Date Estimated to Complete at Time t
  • 16. Benefits of Risk Based Testing • Improved Quality? – all critical functions tested • Reduced Time and Money in Testing – effort not wasted on non critical or low risk functions • Improved customer confidence – due to customer involvement and good reporting and progress tracking
  • 17. Test Process Work Flow Risk Identification Risk Assessment Basic Test Data PD LD Case Quality Standards Test Exec. Procedure Test Case Case Build Procedure Test Completed QC / QA Good Test Exec Risk Mitigation Good/ Bad Bad PTDs Raised Risk Reporting Retest Risk Prediction Problem Mngmnt. Procedure Fix Fix Procedure CR Change Mngmnt. Procedure Regression Test ProAte
  • 18. Summary • Risk Based Test Approach – Focused Testing • Reduced Resources • Improved Quality – Metrics are fundamental • Process and Organization must support the new strategy – Metrics must support the organization and process
  • 19. Random testing – Start off with a practical look, and some useful ideas to get you started on the project: random testing for file systems – Then take a deeper look at the notion of feedback and why it is useful: method for testing OO systems from ICSE a couple of years • Then back out to take a look at the general idea of random testing, if time permits
  • 20. A Little Background – Generate program inputs at random – Drawn from some (possibly changing) probability distribution “Throw darts at the state space, without drawing a bullseye” – May generate the same test (or equivalent tests) many times – Will perform operations no sane human would ever perform
  • 21. Random Testing • Millions of operations and scenarios, automatically generated • Run on fast & inexpensive workstations • Results checked automatically by a reference oracle • Hardware simulation for fault injection and reset simulation (x 100000) A day (& night) of testing (x 100000) (x 100000) (x 100000)
  • 22. The Goals • Randomize early testing (since it is not possible to be exhaustive) – We don’t know where the bugs are Nominal Scenario Tests Randomized Testing
  • 23. The Goals • Make use of desktop hardware for early testing – vs. expensive (sloooow) flight hardware testbeds – Many faults can be exposed without full bit-level hardware simulation
  • 24. The Goals • Automate early testing – Run tests all the time, in the background, while continuing development efforts • Automate test evaluation – Using reference systems for fault detection and diagnosis – Automated test minimization techniques to speed debugging and increase regression test effectiveness • Automate fault injection – Simulate hardware failures in a controlled test environment
  • 25. Random testing • Simulated flash hardware layer allows random fault injection • Most development/early testing can be done on workstations • Lots of available compute power – can cover many system behaviors • Will stress software in ways nominal testing will not
  • 26. Differential Testing • How can we tell if a test succeeds? – POSIX standard for file system operations • IEEE produced, ANSI/ISO recognized standard for file systems • Defines operations and what they should do/return, including nominal and fault behavior File system / POSIX operation Result mkdir (“/eng”, …) mkdir (“/data”, …) creat (“/data/image01”, …) creat (“/eng/fsw/code”, …) mkdir (“/data/telemetry”, …) unlink (“/data/image01”) SUCCESS SUCCESS SUCCESS ENOENT SUCCESS SUCCESS /eng /data image01 /telemetry
  • 27. Differential Testing • How can we tell if a test succeeds? – The POSIX standard specifies (mostly) what correct behavior is – We have heavily tested implementations of the POSIX standard in every flavor of UNIX, readily available to us – We can use UNIX file systems (ext3fs, tmpfs, etc.) as reference systems to verify the correct behavior of flash – First differential approach (published) was McKeeman’s testing for compilers
  • 28. Random Differential Testing Choose (POSIX) operation F Perform F on NVFS Perform F on Reference (if applicable) Compare return values Compare error codes Compare file systems Check invariants (inject a fault?)
  • 29. Don’t Use Random Testing for Everything! • Why not test handing read a null pointer? – Because (assuming the code is correct) it guarantees some portion of test operations will not induce failure – But if the code is incorrect, it’s easier and more efficient to write a single test – The file system state doesn’t have any impact (we hope!) on whether there is a null check for the buffer passed to read • But we have to remember to actually do these non-random fixed tests, or we may miss critical, easy-to-find bugs!
  • 30. Principles Used • • • • Random testing (with feedback) Test automation Hardware simulation & fault injection Use of a well-tested reference implementation as oracle (differential testing) • Automatic test minimization (delta-debugging) • Design for testability – Assertions – Downward scalability (small model property) – Preference for predictability
  • 31. Synopsis • Random testing is sometimes a powerful method and could likely be applied more broadly in other missions – Already applied to four file system-related development efforts – Part or all of this approach is applicable to other critical components (esp. with better models to use as references)
  • 32. Thank You Dr. Himanshu Hora SRMS College of Engineering & Technology Bareilly (INDIA)