SlideShare a Scribd company logo
1 of 40
An Introduction to
Performance Testing
Richard Bishop
Trust IV Ltd
• This session aims to:
• Explain what performance testing is
….and why it is so important
• Explain performance test terminology
• Help you to understand the performance testing process
Objectives
• The process of executing a procedure or program or system with
the intent of finding errors.
• Should be part of all phases of SDLC.
What is Software Testing?
• Unit testing is the phase of software testing in which individual
units of source code are tested to determine whether they
are fit for use.
• Integration testing is the phase of software testing in
which individual software units are combined and
tested as a group.
• System testing of software or hardware is testing
conducted on a complete, integrated system to
evaluate the system's compliance with its specified
requirements.
Performance testing is appropriate in all of these test phases.
Just doing it at the end of the lifecycle causes problems.
Some Testing definitions
• Functional Testing
• Usually done first, to test application functionality not
performance.
• Very Comprehensive! Tries to cover all aspects of a
system/application.
• Tests at the Presentation Layer or user Interface (UI) level.
• Performance Testing
• Once the application passes functional testing, it is generally
submitted for performance testing
• During this process, the system/application is stressed to see how
well it performs when used by many users simultaneously
• Usually tests at the Protocol or Middleware level although more
modern techniques test at the UI.
Comparing Functional & Performance Testing
Comparing Functional & Performance Testing
Functional Testing Performance Testing
1
Tests the application’s
user interface, usability, and front-end
functionality
Does not test the application’s front-end
functionality
2
Does not test an application’s scalability or
resource usage
Tests an application’s scalability and monitors
resource usage
3
Can not determine how an application/system
will perform over time
Designed to determine how an
application/system will perform over time
4 Does not require a fully-functional application
Requires a fully-functional application for given
scenarios
5 One user Multiple users
• Quantification of risk
• Determine likelihood that application performance will meet the
business SLA’s
• Does not mitigate risk directly, but through identification and
quantification of risk, presents tuning opportunities
• Validation of application infrastructure
• Determine if the deployment environment is adequately sized for
the application to meet business SLA’s.
• Minimize extraneous hardware, software and the associated cost
of ownership
What is the Purpose of a Performance Test?
• How the application's response time changes if you increase
or decrease the number of users/transactions.
• How many users/transactions can simultaneously work with
the application without a perceptible slowdown.
• What load can crash the application.
• How hardware and software changes affect application
performance.
Performance Testing Helps to Determine
When Should You Consider Performance?
Production phase
What are the reasons
for degradations in
system performance? Deployment phase
Is the system reliable enough
to go into production?
Development phase
Does the system response
time meet SLA requirements?
Planning and Design phase
What is the best configuration to support
1000 users?Forecasting
How many users can
be added without
affecting system
performance?
At Every
Phase!
Why Consider Performance at Every Phase?
Because the cost of fixing software defects is much higher the later
they occur in the software development life cycle
£0
£1,000
£5,000
£125,000
Design Coding Unit Integration System Release to
production
Maintenance
£25,000
Why Performance Matters
0
1
2
3
4
5
6
7
8
9
1999 2003 2006 2009 2012
Acceptable Response Time (s)
“1 second” is the new “4 seconds”
• Validate the application to determine if it fulfills its performance goal or targets
• Identify the point at which the load becomes so great that the application fails
to meet performance requirements
• Determine if the application will support typical (normal) production load
conditions
• Tune the application for maximum performance by identifying the optimal
system configuration
• Reduce hardware / SaaS platform costs
• Locate bottlenecks including those in I/O, server, network, and database
Performance Testing Objectives
Application infrastructure
Web Servers
App Servers
DB Servers
External Users
Internal Users
Bad SQL
Slow Methods
Capacity limits
Contention Issues
WAN Sensitivity
Slow transactions
Performance Testing helps Identify
Configuration Issues
• Baseline
• Load
• Stress
• Soak
• Isolation
• Configuration
Basic types of Performance Test
http://en.wikipedia.org/wiki/Software_performance_testing
Types of performance test
0
20
40
60
80
100
120
10 30 50 70 90 110 130 150 170 190 210 230 250 270 290
vUsers
Elapsed time
“Normal” Load Profile
Ave load Peak load Typical test
0
20
40
60
80
100
120
10 30 50 70 90 110 130 150 170 190 210 230 250 270 290
vUsers
Elapsed time
“Soak Test” Load Profile
Ave load Peak load Soak test
“Normal” load profile
Common in performance tests
Soak test
Useful for identifying problems
which occur over time
Types of performance test
0
20
40
60
80
100
120
10 30 50 70 90 110 130 150 170 190 210 230 250 270 290
vUsers
Elapsed time
Load Profile
Ave load Peak load Spike test
0
50
100
150
200
250
300
350
10 30 50 70 90 110 130 150 170 190 210 230 250 270 290
vUsers
Elapsed time
Load Profile
Ave load Peak load Break test
“Stress/Break” test
Commonly requested
“Spike” test
Commonly requested
• 1 user for a set period of time or number of iterations
e.g. to determine pacing / think time
• A test at “normal load” to establish a baseline
for comparison with future tests
e.g. higher load or under different conditions
Baseline Test
Response time – 1 CPU 4GB RAM
Response time – 2 CPU 4GB RAM
• The “Classic” performance test
• Validates the system/application to determine if it meets the performance
targets.
• Provide information that will assist in performance tuning under various
workload conditions, hardware configurations, and database sizes
Load Test
• Helps identify key performance
data such as:
• Capacity
• Latency
• Response time
• Throughput
• Memory Management
SLA
Number of users
ResponseTime
Typically response time increase as virtual user numbers increase
1
10
20
25
10 50 100 200 500 1000 2000
5
15
30
35
40 Response Time
Load Test
• Identifies capacity limits of the system/application or infrastructure
• Identifies potential problems before going live
• Determines whether app can provide acceptable response times and
throughput under extreme conditions
Stress/Break Test
0
50
100
150
200
250
300
350
10 30 50 70 90 110 130 150 170 190 210 230 250 270 290
vUsers
Elapsed time
Load Profile
Ave load Peak load Break test
• Long Running test, identifies problems over time
– Test usually (not always) involves multiple business transactions
• Measures performance and efficiency of the system
(hardware and software) to:
– determine acceptable performance under load
– identify time-related problems such as memory leaks.
Soak Test
• Repeating a test which was known to cause a fault/defect.
• Used to “home in” on problems revealed by other forms of
performance testing. e.g. deadlocks, problems with specific test data
• May involve repetition of a load, stress or soak test scenario to point of
failure.
• Repeat test whilst changing code / application configuration until defect
can be closed.
Isolation Test
Used to determine optimum settings for configuration items such as:
• Load balancing
• Connection pool allocation
• Web, Mid-tier and Database configuration
• Common in “new build” projects
Configuration Test
Preparation
• Planning & requirements capture
• Determine realistic performance testing goals
• Prepare testing environment
• Prepare test data
• Identify performance testing use cases
• Capture, modify and validate use cases as scripts / scenarios
Performance Testing Process
Execution and Analysis
• Prepare environment / test data
• Execute performance test(s)
• Monitor impact of load on servers/database/networks
• Analyze results
• Submit defects
• System tuning
• Repeat execution and analysis process until
performance testing goals met.
It is nearly impossible to effectively performance test without automation!
• Manual testing is not manageable!
• Manual testing is not repeatable!
• Manual testing is not accurate!
Automated Testing Tools
Manual Automated

• Performance testing is very difficult without one
• Performance testing without a tool relies on hardware and personnel to
generate load, generally with wildly inaccurate results.
• Without automation the final test reports may be unreliable..
• User responses collected and compiled into a report may contain as
much human error as real data.
• The cost of repeating a 'manual' test is equal to cost of the first test.
When using a performance testing tool, costs go down as you repeat
your tests.
Benefits of an Automated Performance Testing Tool
• Most automated performance testing tools including LoadRunner
have the following components:
• Script Recorder (VuGen)
• Load Injector / Load Generator (Load Agents)
• Test Configuration and Management (Controller)
• Performance Monitor (Controller & other components)
• Analysis
How do Automated Performance Testing Tools Work?
Test Configuration
Client Network
AUT
HTTP
80/443
HTTP
80/443
Listener
443
8080
Controller
LG(s)
HTTP
80/443
LG(s)
Records end-user activity and generates transaction scripts.
Application Infrastructure
Web Servers
App Servers
DB Servers
End- User
HTTP – XML – SAP
Script Recorder
Script Recorder - VuGen
Generates a realistic application load, based on scripts and test parameters
Application Infrastructure
Web Servers
App Servers
DB Servers
Generated Load
Load Generator aka. Injector
Load Generator
Load Generators can be local or remote
Options to place on AWS, Azure or HP Helion
Can also place on remote sites behind firewalls
• Mimics client behavior:
• Submits multiple requests to the AUT
• Waits for a period of time after the site sends a reply to the
request (think time) then submits a new request
• Can emulate thousands of concurrent users (virtual users) to test the
application scalability
How does a Load Injector work?
• Virtual User (VUs) mimic the behavior of a real user
• A performance test is valid only if a virtual users' behavior has
characteristics similar to those of actual users:
• Follow patterns similar to real users
• Use realistic think times
Test Configuration and Management
Test Controller manages the performance test and “controls” the action of load generators
Application Infrastructure
Web Servers
App Servers
DB Servers
Generated Load
Test
Control
Capture server and network performance metrics
Application Infrastructure
Web Servers
App Servers
DB Servers
Generated Load
Performance Monitor(s)
Performance Monitor(s)
Post-test analysis of results
Application Infrastructure
Web Servers
App Servers
DB Servers
Generated Load
Analyzing
Data
Analysis Module
Analysis Module
Sample Report
Questions / Wrap up
• Want to have a go?
LoadRunner downloads and getting started guide
https://support.trustiv.co.uk/downloads/
• Want to learn more?
http://blog.trustiv.co.uk/
http://www.perfbytes.com/
http://alexanderpodelko.com/blog/
http://mtomlins.blogspot.co.uk/
http://www.developsense.com/
• Get in touch
@richardbishop
@TrustIV
richard.bishop@trustiv.co.uk
+44 (0) 7590 290646

More Related Content

What's hot

Performance testing with Jmeter
Performance testing with JmeterPerformance testing with Jmeter
Performance testing with JmeterPrashanth Kumar
 
Load Testing Strategy 101
Load Testing Strategy 101Load Testing Strategy 101
Load Testing Strategy 101iradari
 
What is Performance Testing?
What is Performance Testing?What is Performance Testing?
What is Performance Testing?QA InfoTech
 
Load and performance testing
Load and performance testingLoad and performance testing
Load and performance testingQualitest
 
Performance Requirement Gathering
Performance Requirement GatheringPerformance Requirement Gathering
Performance Requirement GatheringAtul Pant
 
Performance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter introPerformance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter introMykola Kovsh
 
Performance Testing And Its Type | Benefits Of Performance Testing
Performance Testing And Its Type | Benefits Of Performance TestingPerformance Testing And Its Type | Benefits Of Performance Testing
Performance Testing And Its Type | Benefits Of Performance TestingKostCare
 
Performance Test Plan - Sample 1
Performance Test Plan - Sample 1Performance Test Plan - Sample 1
Performance Test Plan - Sample 1Atul Pant
 
QA. Load Testing
QA. Load TestingQA. Load Testing
QA. Load TestingAlex Galkin
 
Performance testing
Performance testing Performance testing
Performance testing BugRaptors
 
Performance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaPerformance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaEdureka!
 
Load Testing Best Practices
Load Testing Best PracticesLoad Testing Best Practices
Load Testing Best PracticesApica
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeterBhojan Rajan
 
Performance testing with JMeter
Performance testing with JMeterPerformance testing with JMeter
Performance testing with JMeterMikael Kundert
 
Performance and load testing
Performance and load testingPerformance and load testing
Performance and load testingsonukalpana
 
Test Automation Framework Designs
Test Automation Framework DesignsTest Automation Framework Designs
Test Automation Framework DesignsSauce Labs
 

What's hot (20)

Types of performance testing
Types of performance testingTypes of performance testing
Types of performance testing
 
Performance testing with Jmeter
Performance testing with JmeterPerformance testing with Jmeter
Performance testing with Jmeter
 
Load Testing Strategy 101
Load Testing Strategy 101Load Testing Strategy 101
Load Testing Strategy 101
 
What is Performance Testing?
What is Performance Testing?What is Performance Testing?
What is Performance Testing?
 
Load and performance testing
Load and performance testingLoad and performance testing
Load and performance testing
 
Performance Requirement Gathering
Performance Requirement GatheringPerformance Requirement Gathering
Performance Requirement Gathering
 
Performance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter introPerformance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter intro
 
Performance Testing And Its Type | Benefits Of Performance Testing
Performance Testing And Its Type | Benefits Of Performance TestingPerformance Testing And Its Type | Benefits Of Performance Testing
Performance Testing And Its Type | Benefits Of Performance Testing
 
Performance Test Plan - Sample 1
Performance Test Plan - Sample 1Performance Test Plan - Sample 1
Performance Test Plan - Sample 1
 
Performance testing
Performance testingPerformance testing
Performance testing
 
QA. Load Testing
QA. Load TestingQA. Load Testing
QA. Load Testing
 
How to start performance testing project
How to start performance testing projectHow to start performance testing project
How to start performance testing project
 
Performance testing
Performance testing Performance testing
Performance testing
 
Performance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaPerformance Testing Using JMeter | Edureka
Performance Testing Using JMeter | Edureka
 
Load Testing Best Practices
Load Testing Best PracticesLoad Testing Best Practices
Load Testing Best Practices
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeter
 
Performance testing with JMeter
Performance testing with JMeterPerformance testing with JMeter
Performance testing with JMeter
 
Performance and load testing
Performance and load testingPerformance and load testing
Performance and load testing
 
JMeter
JMeterJMeter
JMeter
 
Test Automation Framework Designs
Test Automation Framework DesignsTest Automation Framework Designs
Test Automation Framework Designs
 

Similar to Introduction to performance testing

Holiday Readiness: Best Practices for Successful Holiday Readiness Testing
Holiday Readiness: Best Practices for Successful Holiday Readiness TestingHoliday Readiness: Best Practices for Successful Holiday Readiness Testing
Holiday Readiness: Best Practices for Successful Holiday Readiness TestingApica
 
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...Apica
 
Load testing with Visual Studio and Azure - Andrew Siemer
Load testing with Visual Studio and Azure - Andrew SiemerLoad testing with Visual Studio and Azure - Andrew Siemer
Load testing with Visual Studio and Azure - Andrew SiemerAndrew Siemer
 
Performance Testing
Performance TestingPerformance Testing
Performance TestingAnu Shaji
 
Laravel Load Testing: Strategies and Tools
Laravel Load Testing: Strategies and ToolsLaravel Load Testing: Strategies and Tools
Laravel Load Testing: Strategies and ToolsMuhammad Shehata
 
General Software Tester Training
General Software Tester TrainingGeneral Software Tester Training
General Software Tester TrainingChris Scofield
 
Alexander Podelko - Context-Driven Performance Testing
Alexander Podelko - Context-Driven Performance TestingAlexander Podelko - Context-Driven Performance Testing
Alexander Podelko - Context-Driven Performance TestingNeotys_Partner
 
HP LoadRunner
HP LoadRunnerHP LoadRunner
HP LoadRunnerFayis-QA
 
Less11 3 e_loadmodule_1
Less11 3 e_loadmodule_1Less11 3 e_loadmodule_1
Less11 3 e_loadmodule_1Suresh Mishra
 
Performance Assurance for Packaged Applications
Performance Assurance for Packaged ApplicationsPerformance Assurance for Packaged Applications
Performance Assurance for Packaged ApplicationsAlexander Podelko
 
Performancetestingjmeter 121109061704-phpapp02
Performancetestingjmeter 121109061704-phpapp02Performancetestingjmeter 121109061704-phpapp02
Performancetestingjmeter 121109061704-phpapp02Shivakumara .
 
Automation Tool Overview
Automation Tool OverviewAutomation Tool Overview
Automation Tool OverviewANKUR-BA
 
Automation Tools Overview
Automation Tools OverviewAutomation Tools Overview
Automation Tools OverviewSachin-QA
 
Software Testing Presentation in Cegonsoft Pvt Ltd...
Software Testing Presentation in Cegonsoft Pvt Ltd...Software Testing Presentation in Cegonsoft Pvt Ltd...
Software Testing Presentation in Cegonsoft Pvt Ltd...ChithraCegon
 
performancetestinganoverview-110206071921-phpapp02.pdf
performancetestinganoverview-110206071921-phpapp02.pdfperformancetestinganoverview-110206071921-phpapp02.pdf
performancetestinganoverview-110206071921-phpapp02.pdfMAshok10
 

Similar to Introduction to performance testing (20)

Performance testing
Performance testingPerformance testing
Performance testing
 
Holiday Readiness: Best Practices for Successful Holiday Readiness Testing
Holiday Readiness: Best Practices for Successful Holiday Readiness TestingHoliday Readiness: Best Practices for Successful Holiday Readiness Testing
Holiday Readiness: Best Practices for Successful Holiday Readiness Testing
 
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...
July webinar l How to Handle the Holiday Retail Rush with Agile Performance T...
 
Load testing with Visual Studio and Azure - Andrew Siemer
Load testing with Visual Studio and Azure - Andrew SiemerLoad testing with Visual Studio and Azure - Andrew Siemer
Load testing with Visual Studio and Azure - Andrew Siemer
 
Performance Testing
Performance TestingPerformance Testing
Performance Testing
 
Laravel Load Testing: Strategies and Tools
Laravel Load Testing: Strategies and ToolsLaravel Load Testing: Strategies and Tools
Laravel Load Testing: Strategies and Tools
 
General Software Tester Training
General Software Tester TrainingGeneral Software Tester Training
General Software Tester Training
 
Alexander Podelko - Context-Driven Performance Testing
Alexander Podelko - Context-Driven Performance TestingAlexander Podelko - Context-Driven Performance Testing
Alexander Podelko - Context-Driven Performance Testing
 
QSpiders - Introduction to JMeter
QSpiders - Introduction to JMeterQSpiders - Introduction to JMeter
QSpiders - Introduction to JMeter
 
HP LoadRunner
HP LoadRunnerHP LoadRunner
HP LoadRunner
 
Less11 3 e_loadmodule_1
Less11 3 e_loadmodule_1Less11 3 e_loadmodule_1
Less11 3 e_loadmodule_1
 
Types of Testing
Types of TestingTypes of Testing
Types of Testing
 
Performance Assurance for Packaged Applications
Performance Assurance for Packaged ApplicationsPerformance Assurance for Packaged Applications
Performance Assurance for Packaged Applications
 
QA Basics and PM Overview
QA Basics and PM OverviewQA Basics and PM Overview
QA Basics and PM Overview
 
Performancetestingjmeter 121109061704-phpapp02
Performancetestingjmeter 121109061704-phpapp02Performancetestingjmeter 121109061704-phpapp02
Performancetestingjmeter 121109061704-phpapp02
 
Automation Tool Overview
Automation Tool OverviewAutomation Tool Overview
Automation Tool Overview
 
Automation Tools Overview
Automation Tools OverviewAutomation Tools Overview
Automation Tools Overview
 
Software Testing Presentation in Cegonsoft Pvt Ltd...
Software Testing Presentation in Cegonsoft Pvt Ltd...Software Testing Presentation in Cegonsoft Pvt Ltd...
Software Testing Presentation in Cegonsoft Pvt Ltd...
 
performancetestinganoverview-110206071921-phpapp02.pdf
performancetestinganoverview-110206071921-phpapp02.pdfperformancetestinganoverview-110206071921-phpapp02.pdf
performancetestinganoverview-110206071921-phpapp02.pdf
 
QSpiders - Introduction to HP Load Runner
QSpiders - Introduction to HP Load RunnerQSpiders - Introduction to HP Load Runner
QSpiders - Introduction to HP Load Runner
 

Recently uploaded

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Recently uploaded (20)

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

Introduction to performance testing

  • 1. An Introduction to Performance Testing Richard Bishop Trust IV Ltd
  • 2. • This session aims to: • Explain what performance testing is ….and why it is so important • Explain performance test terminology • Help you to understand the performance testing process Objectives
  • 3. • The process of executing a procedure or program or system with the intent of finding errors. • Should be part of all phases of SDLC. What is Software Testing?
  • 4. • Unit testing is the phase of software testing in which individual units of source code are tested to determine whether they are fit for use. • Integration testing is the phase of software testing in which individual software units are combined and tested as a group. • System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements. Performance testing is appropriate in all of these test phases. Just doing it at the end of the lifecycle causes problems. Some Testing definitions
  • 5. • Functional Testing • Usually done first, to test application functionality not performance. • Very Comprehensive! Tries to cover all aspects of a system/application. • Tests at the Presentation Layer or user Interface (UI) level. • Performance Testing • Once the application passes functional testing, it is generally submitted for performance testing • During this process, the system/application is stressed to see how well it performs when used by many users simultaneously • Usually tests at the Protocol or Middleware level although more modern techniques test at the UI. Comparing Functional & Performance Testing
  • 6. Comparing Functional & Performance Testing Functional Testing Performance Testing 1 Tests the application’s user interface, usability, and front-end functionality Does not test the application’s front-end functionality 2 Does not test an application’s scalability or resource usage Tests an application’s scalability and monitors resource usage 3 Can not determine how an application/system will perform over time Designed to determine how an application/system will perform over time 4 Does not require a fully-functional application Requires a fully-functional application for given scenarios 5 One user Multiple users
  • 7. • Quantification of risk • Determine likelihood that application performance will meet the business SLA’s • Does not mitigate risk directly, but through identification and quantification of risk, presents tuning opportunities • Validation of application infrastructure • Determine if the deployment environment is adequately sized for the application to meet business SLA’s. • Minimize extraneous hardware, software and the associated cost of ownership What is the Purpose of a Performance Test?
  • 8. • How the application's response time changes if you increase or decrease the number of users/transactions. • How many users/transactions can simultaneously work with the application without a perceptible slowdown. • What load can crash the application. • How hardware and software changes affect application performance. Performance Testing Helps to Determine
  • 9. When Should You Consider Performance? Production phase What are the reasons for degradations in system performance? Deployment phase Is the system reliable enough to go into production? Development phase Does the system response time meet SLA requirements? Planning and Design phase What is the best configuration to support 1000 users?Forecasting How many users can be added without affecting system performance? At Every Phase!
  • 10. Why Consider Performance at Every Phase? Because the cost of fixing software defects is much higher the later they occur in the software development life cycle £0 £1,000 £5,000 £125,000 Design Coding Unit Integration System Release to production Maintenance £25,000
  • 11. Why Performance Matters 0 1 2 3 4 5 6 7 8 9 1999 2003 2006 2009 2012 Acceptable Response Time (s) “1 second” is the new “4 seconds”
  • 12. • Validate the application to determine if it fulfills its performance goal or targets • Identify the point at which the load becomes so great that the application fails to meet performance requirements • Determine if the application will support typical (normal) production load conditions • Tune the application for maximum performance by identifying the optimal system configuration • Reduce hardware / SaaS platform costs • Locate bottlenecks including those in I/O, server, network, and database Performance Testing Objectives
  • 13. Application infrastructure Web Servers App Servers DB Servers External Users Internal Users Bad SQL Slow Methods Capacity limits Contention Issues WAN Sensitivity Slow transactions Performance Testing helps Identify Configuration Issues
  • 14. • Baseline • Load • Stress • Soak • Isolation • Configuration Basic types of Performance Test http://en.wikipedia.org/wiki/Software_performance_testing
  • 15. Types of performance test 0 20 40 60 80 100 120 10 30 50 70 90 110 130 150 170 190 210 230 250 270 290 vUsers Elapsed time “Normal” Load Profile Ave load Peak load Typical test 0 20 40 60 80 100 120 10 30 50 70 90 110 130 150 170 190 210 230 250 270 290 vUsers Elapsed time “Soak Test” Load Profile Ave load Peak load Soak test “Normal” load profile Common in performance tests Soak test Useful for identifying problems which occur over time
  • 16. Types of performance test 0 20 40 60 80 100 120 10 30 50 70 90 110 130 150 170 190 210 230 250 270 290 vUsers Elapsed time Load Profile Ave load Peak load Spike test 0 50 100 150 200 250 300 350 10 30 50 70 90 110 130 150 170 190 210 230 250 270 290 vUsers Elapsed time Load Profile Ave load Peak load Break test “Stress/Break” test Commonly requested “Spike” test Commonly requested
  • 17. • 1 user for a set period of time or number of iterations e.g. to determine pacing / think time • A test at “normal load” to establish a baseline for comparison with future tests e.g. higher load or under different conditions Baseline Test Response time – 1 CPU 4GB RAM Response time – 2 CPU 4GB RAM
  • 18. • The “Classic” performance test • Validates the system/application to determine if it meets the performance targets. • Provide information that will assist in performance tuning under various workload conditions, hardware configurations, and database sizes Load Test • Helps identify key performance data such as: • Capacity • Latency • Response time • Throughput • Memory Management
  • 19. SLA Number of users ResponseTime Typically response time increase as virtual user numbers increase 1 10 20 25 10 50 100 200 500 1000 2000 5 15 30 35 40 Response Time Load Test
  • 20. • Identifies capacity limits of the system/application or infrastructure • Identifies potential problems before going live • Determines whether app can provide acceptable response times and throughput under extreme conditions Stress/Break Test 0 50 100 150 200 250 300 350 10 30 50 70 90 110 130 150 170 190 210 230 250 270 290 vUsers Elapsed time Load Profile Ave load Peak load Break test
  • 21. • Long Running test, identifies problems over time – Test usually (not always) involves multiple business transactions • Measures performance and efficiency of the system (hardware and software) to: – determine acceptable performance under load – identify time-related problems such as memory leaks. Soak Test
  • 22. • Repeating a test which was known to cause a fault/defect. • Used to “home in” on problems revealed by other forms of performance testing. e.g. deadlocks, problems with specific test data • May involve repetition of a load, stress or soak test scenario to point of failure. • Repeat test whilst changing code / application configuration until defect can be closed. Isolation Test
  • 23. Used to determine optimum settings for configuration items such as: • Load balancing • Connection pool allocation • Web, Mid-tier and Database configuration • Common in “new build” projects Configuration Test
  • 24. Preparation • Planning & requirements capture • Determine realistic performance testing goals • Prepare testing environment • Prepare test data • Identify performance testing use cases • Capture, modify and validate use cases as scripts / scenarios Performance Testing Process Execution and Analysis • Prepare environment / test data • Execute performance test(s) • Monitor impact of load on servers/database/networks • Analyze results • Submit defects • System tuning • Repeat execution and analysis process until performance testing goals met.
  • 25. It is nearly impossible to effectively performance test without automation! • Manual testing is not manageable! • Manual testing is not repeatable! • Manual testing is not accurate! Automated Testing Tools Manual Automated 
  • 26. • Performance testing is very difficult without one • Performance testing without a tool relies on hardware and personnel to generate load, generally with wildly inaccurate results. • Without automation the final test reports may be unreliable.. • User responses collected and compiled into a report may contain as much human error as real data. • The cost of repeating a 'manual' test is equal to cost of the first test. When using a performance testing tool, costs go down as you repeat your tests. Benefits of an Automated Performance Testing Tool
  • 27. • Most automated performance testing tools including LoadRunner have the following components: • Script Recorder (VuGen) • Load Injector / Load Generator (Load Agents) • Test Configuration and Management (Controller) • Performance Monitor (Controller & other components) • Analysis How do Automated Performance Testing Tools Work?
  • 29. Records end-user activity and generates transaction scripts. Application Infrastructure Web Servers App Servers DB Servers End- User HTTP – XML – SAP Script Recorder
  • 31. Generates a realistic application load, based on scripts and test parameters Application Infrastructure Web Servers App Servers DB Servers Generated Load Load Generator aka. Injector
  • 32. Load Generator Load Generators can be local or remote Options to place on AWS, Azure or HP Helion Can also place on remote sites behind firewalls
  • 33. • Mimics client behavior: • Submits multiple requests to the AUT • Waits for a period of time after the site sends a reply to the request (think time) then submits a new request • Can emulate thousands of concurrent users (virtual users) to test the application scalability How does a Load Injector work? • Virtual User (VUs) mimic the behavior of a real user • A performance test is valid only if a virtual users' behavior has characteristics similar to those of actual users: • Follow patterns similar to real users • Use realistic think times
  • 34. Test Configuration and Management Test Controller manages the performance test and “controls” the action of load generators Application Infrastructure Web Servers App Servers DB Servers Generated Load Test Control
  • 35. Capture server and network performance metrics Application Infrastructure Web Servers App Servers DB Servers Generated Load Performance Monitor(s)
  • 37. Post-test analysis of results Application Infrastructure Web Servers App Servers DB Servers Generated Load Analyzing Data Analysis Module
  • 40. Questions / Wrap up • Want to have a go? LoadRunner downloads and getting started guide https://support.trustiv.co.uk/downloads/ • Want to learn more? http://blog.trustiv.co.uk/ http://www.perfbytes.com/ http://alexanderpodelko.com/blog/ http://mtomlins.blogspot.co.uk/ http://www.developsense.com/ • Get in touch @richardbishop @TrustIV richard.bishop@trustiv.co.uk +44 (0) 7590 290646