SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

Performance testing with JMeter
Performance testing with JMeterPerformance testing with JMeter
Performance testing with JMeterMikael Kundert
 
Introduction to performance testing
Introduction to performance testingIntroduction to performance testing
Introduction to performance testingTharinda Liyanage
 
Load and performance testing
Load and performance testingLoad and performance testing
Load and performance testingQualitest
 
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 Testing
Performance TestingPerformance Testing
Performance Testingsharmaparish
 
Performance testing : An Overview
Performance testing : An OverviewPerformance testing : An Overview
Performance testing : An Overviewsharadkjain
 
Load Testing Best Practices
Load Testing Best PracticesLoad Testing Best Practices
Load Testing Best PracticesApica
 
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
 
Infographic: Importance of Performance Testing
Infographic: Importance of Performance TestingInfographic: Importance of Performance Testing
Infographic: Importance of Performance TestingKiwiQA
 
Performance testing using jmeter
Performance testing using jmeterPerformance testing using jmeter
Performance testing using jmeterRachappa Bandi
 
Non Functional Testing
Non Functional TestingNon Functional Testing
Non Functional TestingNishant Worah
 
software testing methodologies
software testing methodologiessoftware testing methodologies
software testing methodologiesJhonny Jhon
 
Load Testing Strategy 101
Load Testing Strategy 101Load Testing Strategy 101
Load Testing Strategy 101iradari
 
Performance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaPerformance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaEdureka!
 
Performance testing
Performance testing Performance testing
Performance testing BugRaptors
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1Yogindernath Gupta
 

Was ist angesagt? (20)

Performance testing with JMeter
Performance testing with JMeterPerformance testing with JMeter
Performance testing with JMeter
 
Introduction to performance testing
Introduction to performance testingIntroduction to performance testing
Introduction to performance testing
 
Load and performance testing
Load and performance testingLoad and performance testing
Load and performance testing
 
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 Testing
Performance TestingPerformance Testing
Performance Testing
 
Performance testing : An Overview
Performance testing : An OverviewPerformance testing : An Overview
Performance testing : An Overview
 
Performance testing
Performance testingPerformance testing
Performance testing
 
Load Testing Best Practices
Load Testing Best PracticesLoad Testing Best Practices
Load Testing Best Practices
 
Performance Requirement Gathering
Performance Requirement GatheringPerformance Requirement Gathering
Performance Requirement Gathering
 
Types of performance testing
Types of performance testingTypes of performance testing
Types of performance testing
 
Performance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter introPerformance Testing from Scratch + JMeter intro
Performance Testing from Scratch + JMeter intro
 
Manual testing ppt
Manual testing pptManual testing ppt
Manual testing ppt
 
Infographic: Importance of Performance Testing
Infographic: Importance of Performance TestingInfographic: Importance of Performance Testing
Infographic: Importance of Performance Testing
 
Performance testing using jmeter
Performance testing using jmeterPerformance testing using jmeter
Performance testing using jmeter
 
Non Functional Testing
Non Functional TestingNon Functional Testing
Non Functional Testing
 
software testing methodologies
software testing methodologiessoftware testing methodologies
software testing methodologies
 
Load Testing Strategy 101
Load Testing Strategy 101Load Testing Strategy 101
Load Testing Strategy 101
 
Performance Testing Using JMeter | Edureka
Performance Testing Using JMeter | EdurekaPerformance Testing Using JMeter | Edureka
Performance Testing Using JMeter | Edureka
 
Performance testing
Performance testing Performance testing
Performance testing
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1
 

Ähnlich wie 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
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeterBhojan Rajan
 
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
 

Ähnlich wie 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
 
JMeter
JMeterJMeter
JMeter
 
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
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeter
 
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...
 

Kürzlich hochgeladen

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Kürzlich hochgeladen (20)

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

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