SlideShare une entreprise Scribd logo
1  sur  104
Test Design and Automation
for REST API
Ivan Katunou
About myself
• Software Testing Team Leader and
Resource Manager at Epam Systems
• 11 years of experience in IT, 8 years in
automated testing
• Organizer of “Morning Coffee with
Automation engineers” meetups
• Past projects:
• Epam Systems – Hyperion-Oracle
• CompatibL – Sberbank, RMB
• Viber Media
Agenda
1. What is special about RESTful API applications?
2. Test design and coverage
3. Automation
Out of scope
• Web services basics
• Unit, performance, security testing
• How to use tools for REST API testing
Agenda
1. What is special about RESTful API applications?
2. Test design and coverage
3. Automation
Client - Server
No UI
• Requires additional tools to interact with
Message Format
• XML
• JSON
• Others
Resources
Requirements Except Business Ones
• XSD
• JSON Schema
• WADL (rarely used)
Stateless
In RESTful applications, each request must contain all of the information
necessary to be understood by the server, rather than be dependent on the
server remembering prior requests.
Storing session state on the server violates the stateless constraint of the REST
architecture. So the session state must be handled entirely by the client.
Transfer Protocol
• Transfer protocol for RESTful API applications in majority of the cases
is HTTP(S).
• However it can also use SNMP, SMTP and others
Implementations Differ
REST is an architectural style, implementations might differ
• Roy Fielding - Representational State Transfer (REST)
• Richardson Maturity Model
• What is the Richardson Maturity Model?
Agenda
1. What is special about RESTful API applications?
2. Test design and coverage
3. Automation
Test Design and Coverage
What to test?
How to test?
What coverage is
good enough?
RESTful Services by Functionality
1. Provides data
2. Provides data based on some manipulation with data provided to the
service
3. Complex operations
Business Requirements
A forecast service
Business Requirements
A forecast service
• Provide weather (temperature, precipitation, wind speed) forecast for next 24
hours at different locations
• Provide weather forecast for tomorrow, 3 days, 6 days
• Provide weather forecast at different locations
• etc.
Business Requirements
A calculation service
Business Requirements
A calculation service
• Support math operations such as +, -, /, * with integer and float numbers
• Support converting numbers from decimal to hex and binary
• etc.
Business Requirements
An Internet shop
Business Requirements
An Internet shop
• User registration
• Searching and filtering products
• Adding products to cart
• Buying products
• etc.
Business Requirements – Summary
• It is crucial to verify business requirements for RESTful applications.
• Use common test design approaches (divide into submodules,
boundary value analysis, equivalence partitioning, state transition
testing, etc.)
Components
Requests, Responses
Endpoints
Endpoints
Examples:
http://example.com/api/devices
http://example.com/api/devices/sonyz3
http://example.com/api/users
http://example.com/api/products
http://example.com/api/products/12345
http://example.com/api/products/search?q=name:Keyboard
Endpoints
• Find out which endpoints your web service provides
• Each collection endpoint needs to be tested
• At least one single resource endpoint needs to be tested for each
resource type
• Negative tests:
• Try to request endpoint that does not exist
Search, Filtering, Sorting
Endpoints that support search, filtering, sorting, etc. need to be verified with
supported parameters separately and in combinations. Use boundary values,
equality partitioning, pairwise testing, check special characters, max length
parameters, etc.
http://example.com/api/products?q=name:Keyboard&maxPrice:200
http://example.com/api/products?year:2018
http://example.com/api/products?sort:name,asc
• Negative tests:
• Try to request search/filtering/sorting with wrong parameter/value
Pagination, Cursors
• Endpoints that support pagination, cursors need to be verified with
supported parameters separately and in combinations. Use boundary
values, equality partitioning, pairwise testing.
• For negative tests try to use limit more than max one, offset out of
bounds, incorrect values
• http://example.com/api/products?limit=20&offset=100
Versioning
Request Methods
Request Methods
• GET
• POST
• PUT
• DELETE
• OPTIONS
• HEAD
• PATCH
• TRACE
• CONNECT
Request Methods
• Positive tests
• For each collection endpoint and at least one single resource endpoint for
each resource type verify supported request methods
• Verify concurrent access to resources (DELETE and GET for example)
• Negative tests
• For each collection endpoint and at least one single resource endpoint for
each resource type try to verify behavior for not supported request methods
Request Headers
Request Headers
Headers carry information for:
• Request body (charset, content type)
• Request authorization
• etc.
Request Headers
• Positive
• For each collection endpoint and at least one single resource endpoint verify
all supported request methods with correct header values - with required
headers only first, then with verifying optional ones one at a time and
combinations.
• Use boundary values, equivalence partitioning, pairwise testing. Verify special
characters, Unicode text for headers, max length values.
• Negative
• Verify behavior in case of missing required header, one at a time
• Verify behavior in case of wrong/unsupported/empty header value
• Verify behavior in case of not supported header
Request Body
Request Body
Adding user by sending POST request
to http://example.com/api/users
Request Body
• Test for endpoints and methods that support sending request body
(e. g. POST, PUT)
• Verify referenced objects
Request Body
Possible negative tests for POST/PUT requests:
• Field contains invalid value (not equals allowed value, out of bounds, etc)
• Field of wrong data type
• Field value is empty object/string
• Field value is null
• Required field is absent
• Redundant field (“Add to customFields” example)
• Empty object {}
• Invalid XML/JSON
• No data
• Post already existing resource
Request Body
Possible negative tests for DELETE requests:
• Delete non-existing resource
Response Codes
Response Codes
Response Codes
• Find out which response codes might be returned by your service in
which cases
• Make sure they are logically related with events (404 for resource not
found, 200-201 for resource created)
• Try to reproduce such events and verify response codes are correct
• Verifying server configuration errors usually out of scope
Response Headers
Response Headers
Find out which headers might be returned by your service. Test those
ones that are related to your service
Response Body
Response Body
Receive information on particular user
using GET request to
http://example.com/api/users/1
Response Body
Verify
• Structure of a response
• Fields
• Values
• Data types
Minimal Positive Test
For adding a new user
Minimal Positive Test
• Verify the response code
• Send POST request
• Add only required fields in the request
with some correct values
• Verify the body of the response
• Verify service-specific headers
• Add only required request headers
• *In case response body is not
returned on POST, send GET
request for the new item or
get from DB
Other Positive Tests
• Required fields only in request body
• Test values for each of the fields in
separate tests. Verify full response body
Other Positive Tests
• Required fields plus one optional
• Test values for the optional field. Verify
full response body!
Complex Request Body
• Makes sense to add at least one test with all possible fields
• For testing combinations of fields pairwise testing might be leveraged
Boundary Values for Field Values
Find out boundary values - might depend on XML/JSON restrictions,
DB, other components
Transformations
State Transition Testing
Caching and Rate Limits
Rate Limits and Caching
• Verify that cached responses received faster
• Verify cache expiration time (right before and after)
• Find out rate limits for different methods/endpoints
• Try to reproduce max allowed rate limit
• Try to reproduce more than max allowed rate limit
Integration with Third Party
Stubs can be used to make testing easier and faster, not dependent on
actual services
Coverage
Project Management Triangle
Third-Party Components
No need to test third-party components. Test you application only!
Risks
Risks
• 1. No testing at all
• 2. No requests headers testing
• 3. No separate fields of request body testing
• 5. No status code testing
• 6. No response body testing
• 8. No response headers testing
• 4. No field values, types, number of
occurrence in request body testing
• 7. Testing only specific fields in the response body
Trusted Boundaries
Trusted Boundaries
• Find out trusted boundaries. “Trust CMS” example
• Add notes for trusted boundaries for tracking
• Verify that those boundaries are still relevant
Using XSD, JSON Schema
• In case you have XSD/JSON Schema/WADL, you can validate messages
against them and limit coverage in your tests accordingly
• In case web service uses XSD/JSON Schema/WADL validation itself
additional verification might be minimized. You still need to make
sure that application actually does it (check logs for example)
Difficult to Verify Values
• E. g. hash values, current time, random generated values
Test Automation
Including parallel tests
Test Pyramid
Test Coverage - Summary
• Main challenge - great variety of combinations parameters and values
• Depends on time/resources you have and quality you need
• No need to test third-party components. Test you application only!
• Depends on risks you and the PO are agreed on. How service is used
• Depends on trusted boundaries
• Depends on additional verification using XSD, JSON Schema by the service
• Number of field values difficult to verify
• Depends on automated testing, parallel tests execution
• Depends on unit, UI tests coverage
Test Strategy
Agenda
1. What is special about RESTful API applications?
2. Test design and coverage
3. Automation
Postman
• Use standalone version
• Functionality to reduce routine:
1. Pre-request scripts
2. Test scripts
3. Variables, environments, globals
4. Sharing collections
5. Collection runs
6. Mock server
7. Generate code for cUrl, Java, Python, C#, etc.
8. Newman
Java Libraries
• JUnit/TestNG
• RestAssured, Apache HTTP Client, other tools and libraries
• Gson/Jackson (choose the one that is not used by your team’s
developers
• JsonAssert
RestAssured
• Usage
• Not thread safe (there is a PR that might fix it)
Test Data
Where should it be located?
In which format?
Text
• Can be saved as regular text/JSON/XML files at resources folder of
your test project or in DB
• Hard to change
• Can be used for a limited number of tests with all fields and values
pre-defined
• Maintenance might become a pain in the neck
Text + Templates
Apache FreeMarker
Values can be stored in
CSV file
Still requires much
effort for maintenance
Object Mapping
Deserialize
JSON
POJO
Object Mapping
Serialize
Object Mapping
Object Mapping
jsonschema2pojo
Object Mapping
Object Mapping + Builder
Object Mapping + Builder
Object Mapping + Builder
• The most convenient approach to work with test data
• Working with business objects in tests. Technical details are
encapsulated
• Saving test data in files/DB is no longer needed
• Builder pattern allows chaining adding details for business objects
Object Mapping + Builder
Cannot be (easily) used in the following cases:
• Custom fields
• Adding null values for specific fields (but not all)
• Wrong data type
Gson/Jackson Objects
Gson/Jackson Objects
Gson/Jackson Objects + Builder
Gson/Jackson Objects
• The most flexible approach for working with JSON/XML in Java
• Can be used where Object Mapping cannot be (easily) applied
• Requires more effort on developing business objects comparing to
Object Mapping
• Business object cannot be used for serialization/deserialization. Use
wrapped JsonObject instead with its setter and getter
JSON Schema Validation
RestAssured JSON Schema Validation
Stubs
WireMock
Using DB
• Update data and make verifications in DB
• Disadvantages: too coupled with DB schemas that might change often
and significantly
Using Java 8 Features
Lambdas and Stream API are rather useful for working with collections
of data
Independent Tests
Bad Examples:
• POST object in one test, GET and verify in another one
• Add embedded object in one test, verify it in another one
• Shared data with not thread safe access (test data, configs, connection to DB,
etc)
Kotlin
Kotlin and API tests presentation by Roman Marinsky
Automation – Tools to Investigate
• SoapUI – REST and SOAP testing tool
• RAML/Swagger - for documentation and contract testing
• Epam JDI HTTP - Web services functional testing, RestAssured
wrapper
• Karate - Web services functional testing using BDD style, based on
Cucumber - JVM
• AWS Lambda - might be used to run API tests in parallel
Useful links
• Presentation samples
• Подходы к проектированию RESTful API
• Testing RESTful Services in Java: Best Practices
• REST CookBook
• Status codes
• The JavaScript Object Notation (JSON) Data Interchange Format
• Introducing JSON
• OData
• Тестирование API используя TypeScript. Пример технологического стека
и архитектуры
Thank You! Any Questions?
Contacts
• Ivan Katunou, Software Testing Team Leader / Resource Manager at
Epam Systems (Coconut Palm test automation team)
• ivan.katunou@gmail.com
• @IvanKatunou (Telegram)
• +375 29 259 56 42 (Viber, GSM)

Contenu connexe

Tendances

4 Major Advantages of API Testing
4 Major Advantages of API Testing4 Major Advantages of API Testing
4 Major Advantages of API TestingQASource
 
How to Automate API Testing
How to Automate API TestingHow to Automate API Testing
How to Automate API TestingBruno Pedro
 
An Introduction To Automated API Testing
An Introduction To Automated API TestingAn Introduction To Automated API Testing
An Introduction To Automated API TestingSauce Labs
 
Postman. From simple API test to end to end scenario
Postman. From simple API test to end to end scenarioPostman. From simple API test to end to end scenario
Postman. From simple API test to end to end scenarioHYS Enterprise
 
Test in Rest. API testing with the help of Rest Assured.
Test in Rest. API testing with the help of  Rest Assured.Test in Rest. API testing with the help of  Rest Assured.
Test in Rest. API testing with the help of Rest Assured.Artem Korchevyi
 
Rest API Automation with REST Assured
Rest API Automation with REST AssuredRest API Automation with REST Assured
Rest API Automation with REST AssuredTO THE NEW Pvt. Ltd.
 
Automate REST API Testing
Automate REST API TestingAutomate REST API Testing
Automate REST API TestingTechWell
 
Testing RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkTesting RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkMicha Kops
 
API Test Automation
API Test Automation API Test Automation
API Test Automation SQALab
 
API Testing with Frisby and Mocha
API Testing with Frisby and MochaAPI Testing with Frisby and Mocha
API Testing with Frisby and MochaLyudmila Anisimova
 
Test your microservices with REST-Assured
Test your microservices with REST-AssuredTest your microservices with REST-Assured
Test your microservices with REST-AssuredMichel Schudel
 
Karate - powerful and simple framework for REST API automation testing
Karate - powerful and simple framework for REST API automation testingKarate - powerful and simple framework for REST API automation testing
Karate - powerful and simple framework for REST API automation testingRoman Liubun
 

Tendances (20)

4 Major Advantages of API Testing
4 Major Advantages of API Testing4 Major Advantages of API Testing
4 Major Advantages of API Testing
 
How to Automate API Testing
How to Automate API TestingHow to Automate API Testing
How to Automate API Testing
 
Rest assured
Rest assuredRest assured
Rest assured
 
An Introduction To Automated API Testing
An Introduction To Automated API TestingAn Introduction To Automated API Testing
An Introduction To Automated API Testing
 
Api Testing
Api TestingApi Testing
Api Testing
 
Postman. From simple API test to end to end scenario
Postman. From simple API test to end to end scenarioPostman. From simple API test to end to end scenario
Postman. From simple API test to end to end scenario
 
Rest assured
Rest assuredRest assured
Rest assured
 
Api testing
Api testingApi testing
Api testing
 
Test in Rest. API testing with the help of Rest Assured.
Test in Rest. API testing with the help of  Rest Assured.Test in Rest. API testing with the help of  Rest Assured.
Test in Rest. API testing with the help of Rest Assured.
 
Rest API Automation with REST Assured
Rest API Automation with REST AssuredRest API Automation with REST Assured
Rest API Automation with REST Assured
 
Testing microservices with rest assured
Testing microservices with rest assuredTesting microservices with rest assured
Testing microservices with rest assured
 
Automate REST API Testing
Automate REST API TestingAutomate REST API Testing
Automate REST API Testing
 
Testing RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkTesting RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured framework
 
API Test Automation
API Test Automation API Test Automation
API Test Automation
 
Api Testing
Api TestingApi Testing
Api Testing
 
API Testing with Frisby and Mocha
API Testing with Frisby and MochaAPI Testing with Frisby and Mocha
API Testing with Frisby and Mocha
 
Test your microservices with REST-Assured
Test your microservices with REST-AssuredTest your microservices with REST-Assured
Test your microservices with REST-Assured
 
Postman
PostmanPostman
Postman
 
POSTMAN.pptx
POSTMAN.pptxPOSTMAN.pptx
POSTMAN.pptx
 
Karate - powerful and simple framework for REST API automation testing
Karate - powerful and simple framework for REST API automation testingKarate - powerful and simple framework for REST API automation testing
Karate - powerful and simple framework for REST API automation testing
 

Similaire à Test Design and Automation for REST API

Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.
Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.
Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.COMAQA.BY
 
restapitest-anil-200517181251.pdf
restapitest-anil-200517181251.pdfrestapitest-anil-200517181251.pdf
restapitest-anil-200517181251.pdfmrle7
 
Rest API Testing
Rest API TestingRest API Testing
Rest API Testingupadhyay_25
 
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
 
Beginners overview of automated testing with Rspec
Beginners overview of automated testing with RspecBeginners overview of automated testing with Rspec
Beginners overview of automated testing with Rspecjeffrey1ross
 
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!Richard Robinson
 
Unit Testing and role of Test doubles
Unit Testing and role of Test doublesUnit Testing and role of Test doubles
Unit Testing and role of Test doublesRitesh Mehrotra
 
API Check Overview - Rigor Monitoring
API Check Overview - Rigor MonitoringAPI Check Overview - Rigor Monitoring
API Check Overview - Rigor MonitoringAnthony Ferrari
 
(ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service (ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service BIOVIA
 
How to Do a Performance Audit of Your .NET Website
How to Do a Performance Audit of Your .NET WebsiteHow to Do a Performance Audit of Your .NET Website
How to Do a Performance Audit of Your .NET WebsiteDNN
 
REST API Recommendations
REST API RecommendationsREST API Recommendations
REST API RecommendationsJeelani Shaik
 
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015Craig Salvalaggio
 
MFG4 2016 - Is Automation Right for Your Company - 4-2016
MFG4 2016 -  Is Automation Right for Your Company - 4-2016MFG4 2016 -  Is Automation Right for Your Company - 4-2016
MFG4 2016 - Is Automation Right for Your Company - 4-2016Craig Salvalaggio
 
Testing Tools Online Training.pdf
Testing Tools Online Training.pdfTesting Tools Online Training.pdf
Testing Tools Online Training.pdfSpiritsoftsTraining
 
Performance Testing
Performance TestingPerformance Testing
Performance TestingAnu Shaji
 
Structured Functional Automated Web Service Testing
Structured Functional Automated Web Service TestingStructured Functional Automated Web Service Testing
Structured Functional Automated Web Service Testingrdekleijn
 
Small is Beautiful- Fully Automate your Test Case Design
Small is Beautiful- Fully Automate your Test Case DesignSmall is Beautiful- Fully Automate your Test Case Design
Small is Beautiful- Fully Automate your Test Case DesignGeorgina Tilby
 
Automation Test Framework
Automation Test FrameworkAutomation Test Framework
Automation Test FrameworkSachin-QA
 
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
 

Similaire à Test Design and Automation for REST API (20)

Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.
Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.
Ivan Katunov. Comaqa Spring 2018. Test Design and Automation for Rest API.
 
restapitest-anil-200517181251.pdf
restapitest-anil-200517181251.pdfrestapitest-anil-200517181251.pdf
restapitest-anil-200517181251.pdf
 
Rest API Testing
Rest API TestingRest API Testing
Rest API Testing
 
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
 
Beginners overview of automated testing with Rspec
Beginners overview of automated testing with RspecBeginners overview of automated testing with Rspec
Beginners overview of automated testing with Rspec
 
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
 
Unit Testing and role of Test doubles
Unit Testing and role of Test doublesUnit Testing and role of Test doubles
Unit Testing and role of Test doubles
 
API Check Overview - Rigor Monitoring
API Check Overview - Rigor MonitoringAPI Check Overview - Rigor Monitoring
API Check Overview - Rigor Monitoring
 
(ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service (ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service
 
How to Do a Performance Audit of Your .NET Website
How to Do a Performance Audit of Your .NET WebsiteHow to Do a Performance Audit of Your .NET Website
How to Do a Performance Audit of Your .NET Website
 
Api security-testing
Api security-testingApi security-testing
Api security-testing
 
REST API Recommendations
REST API RecommendationsREST API Recommendations
REST API Recommendations
 
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015
AUTOMATE 2015 - Is Automation Right for Your Company - Craig Salvalaggio 3-2015
 
MFG4 2016 - Is Automation Right for Your Company - 4-2016
MFG4 2016 -  Is Automation Right for Your Company - 4-2016MFG4 2016 -  Is Automation Right for Your Company - 4-2016
MFG4 2016 - Is Automation Right for Your Company - 4-2016
 
Testing Tools Online Training.pdf
Testing Tools Online Training.pdfTesting Tools Online Training.pdf
Testing Tools Online Training.pdf
 
Performance Testing
Performance TestingPerformance Testing
Performance Testing
 
Structured Functional Automated Web Service Testing
Structured Functional Automated Web Service TestingStructured Functional Automated Web Service Testing
Structured Functional Automated Web Service Testing
 
Small is Beautiful- Fully Automate your Test Case Design
Small is Beautiful- Fully Automate your Test Case DesignSmall is Beautiful- Fully Automate your Test Case Design
Small is Beautiful- Fully Automate your Test Case Design
 
Automation Test Framework
Automation Test FrameworkAutomation Test Framework
Automation Test Framework
 
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...
 

Dernier

Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 

Dernier (20)

Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 

Test Design and Automation for REST API

  • 1. Test Design and Automation for REST API Ivan Katunou
  • 2. About myself • Software Testing Team Leader and Resource Manager at Epam Systems • 11 years of experience in IT, 8 years in automated testing • Organizer of “Morning Coffee with Automation engineers” meetups • Past projects: • Epam Systems – Hyperion-Oracle • CompatibL – Sberbank, RMB • Viber Media
  • 3. Agenda 1. What is special about RESTful API applications? 2. Test design and coverage 3. Automation
  • 4. Out of scope • Web services basics • Unit, performance, security testing • How to use tools for REST API testing
  • 5. Agenda 1. What is special about RESTful API applications? 2. Test design and coverage 3. Automation
  • 7. No UI • Requires additional tools to interact with
  • 8. Message Format • XML • JSON • Others
  • 10. Requirements Except Business Ones • XSD • JSON Schema • WADL (rarely used)
  • 11. Stateless In RESTful applications, each request must contain all of the information necessary to be understood by the server, rather than be dependent on the server remembering prior requests. Storing session state on the server violates the stateless constraint of the REST architecture. So the session state must be handled entirely by the client.
  • 12. Transfer Protocol • Transfer protocol for RESTful API applications in majority of the cases is HTTP(S). • However it can also use SNMP, SMTP and others
  • 13. Implementations Differ REST is an architectural style, implementations might differ • Roy Fielding - Representational State Transfer (REST) • Richardson Maturity Model • What is the Richardson Maturity Model?
  • 14. Agenda 1. What is special about RESTful API applications? 2. Test design and coverage 3. Automation
  • 15. Test Design and Coverage What to test? How to test? What coverage is good enough?
  • 16. RESTful Services by Functionality 1. Provides data 2. Provides data based on some manipulation with data provided to the service 3. Complex operations
  • 18. Business Requirements A forecast service • Provide weather (temperature, precipitation, wind speed) forecast for next 24 hours at different locations • Provide weather forecast for tomorrow, 3 days, 6 days • Provide weather forecast at different locations • etc.
  • 20. Business Requirements A calculation service • Support math operations such as +, -, /, * with integer and float numbers • Support converting numbers from decimal to hex and binary • etc.
  • 22. Business Requirements An Internet shop • User registration • Searching and filtering products • Adding products to cart • Buying products • etc.
  • 23. Business Requirements – Summary • It is crucial to verify business requirements for RESTful applications. • Use common test design approaches (divide into submodules, boundary value analysis, equivalence partitioning, state transition testing, etc.)
  • 28. Endpoints • Find out which endpoints your web service provides • Each collection endpoint needs to be tested • At least one single resource endpoint needs to be tested for each resource type • Negative tests: • Try to request endpoint that does not exist
  • 29. Search, Filtering, Sorting Endpoints that support search, filtering, sorting, etc. need to be verified with supported parameters separately and in combinations. Use boundary values, equality partitioning, pairwise testing, check special characters, max length parameters, etc. http://example.com/api/products?q=name:Keyboard&maxPrice:200 http://example.com/api/products?year:2018 http://example.com/api/products?sort:name,asc • Negative tests: • Try to request search/filtering/sorting with wrong parameter/value
  • 30. Pagination, Cursors • Endpoints that support pagination, cursors need to be verified with supported parameters separately and in combinations. Use boundary values, equality partitioning, pairwise testing. • For negative tests try to use limit more than max one, offset out of bounds, incorrect values • http://example.com/api/products?limit=20&offset=100
  • 33. Request Methods • GET • POST • PUT • DELETE • OPTIONS • HEAD • PATCH • TRACE • CONNECT
  • 34. Request Methods • Positive tests • For each collection endpoint and at least one single resource endpoint for each resource type verify supported request methods • Verify concurrent access to resources (DELETE and GET for example) • Negative tests • For each collection endpoint and at least one single resource endpoint for each resource type try to verify behavior for not supported request methods
  • 36. Request Headers Headers carry information for: • Request body (charset, content type) • Request authorization • etc.
  • 37. Request Headers • Positive • For each collection endpoint and at least one single resource endpoint verify all supported request methods with correct header values - with required headers only first, then with verifying optional ones one at a time and combinations. • Use boundary values, equivalence partitioning, pairwise testing. Verify special characters, Unicode text for headers, max length values. • Negative • Verify behavior in case of missing required header, one at a time • Verify behavior in case of wrong/unsupported/empty header value • Verify behavior in case of not supported header
  • 39. Request Body Adding user by sending POST request to http://example.com/api/users
  • 40. Request Body • Test for endpoints and methods that support sending request body (e. g. POST, PUT) • Verify referenced objects
  • 41. Request Body Possible negative tests for POST/PUT requests: • Field contains invalid value (not equals allowed value, out of bounds, etc) • Field of wrong data type • Field value is empty object/string • Field value is null • Required field is absent • Redundant field (“Add to customFields” example) • Empty object {} • Invalid XML/JSON • No data • Post already existing resource
  • 42. Request Body Possible negative tests for DELETE requests: • Delete non-existing resource
  • 45. Response Codes • Find out which response codes might be returned by your service in which cases • Make sure they are logically related with events (404 for resource not found, 200-201 for resource created) • Try to reproduce such events and verify response codes are correct • Verifying server configuration errors usually out of scope
  • 47. Response Headers Find out which headers might be returned by your service. Test those ones that are related to your service
  • 49. Response Body Receive information on particular user using GET request to http://example.com/api/users/1
  • 50. Response Body Verify • Structure of a response • Fields • Values • Data types
  • 51. Minimal Positive Test For adding a new user
  • 52. Minimal Positive Test • Verify the response code • Send POST request • Add only required fields in the request with some correct values • Verify the body of the response • Verify service-specific headers • Add only required request headers • *In case response body is not returned on POST, send GET request for the new item or get from DB
  • 53. Other Positive Tests • Required fields only in request body • Test values for each of the fields in separate tests. Verify full response body
  • 54. Other Positive Tests • Required fields plus one optional • Test values for the optional field. Verify full response body!
  • 55. Complex Request Body • Makes sense to add at least one test with all possible fields • For testing combinations of fields pairwise testing might be leveraged
  • 56. Boundary Values for Field Values Find out boundary values - might depend on XML/JSON restrictions, DB, other components
  • 60. Rate Limits and Caching • Verify that cached responses received faster • Verify cache expiration time (right before and after) • Find out rate limits for different methods/endpoints • Try to reproduce max allowed rate limit • Try to reproduce more than max allowed rate limit
  • 61. Integration with Third Party Stubs can be used to make testing easier and faster, not dependent on actual services
  • 64. Third-Party Components No need to test third-party components. Test you application only!
  • 65. Risks
  • 66. Risks • 1. No testing at all • 2. No requests headers testing • 3. No separate fields of request body testing • 5. No status code testing • 6. No response body testing • 8. No response headers testing • 4. No field values, types, number of occurrence in request body testing • 7. Testing only specific fields in the response body
  • 68. Trusted Boundaries • Find out trusted boundaries. “Trust CMS” example • Add notes for trusted boundaries for tracking • Verify that those boundaries are still relevant
  • 69. Using XSD, JSON Schema • In case you have XSD/JSON Schema/WADL, you can validate messages against them and limit coverage in your tests accordingly • In case web service uses XSD/JSON Schema/WADL validation itself additional verification might be minimized. You still need to make sure that application actually does it (check logs for example)
  • 70. Difficult to Verify Values • E. g. hash values, current time, random generated values
  • 73. Test Coverage - Summary • Main challenge - great variety of combinations parameters and values • Depends on time/resources you have and quality you need • No need to test third-party components. Test you application only! • Depends on risks you and the PO are agreed on. How service is used • Depends on trusted boundaries • Depends on additional verification using XSD, JSON Schema by the service • Number of field values difficult to verify • Depends on automated testing, parallel tests execution • Depends on unit, UI tests coverage
  • 75. Agenda 1. What is special about RESTful API applications? 2. Test design and coverage 3. Automation
  • 76. Postman • Use standalone version • Functionality to reduce routine: 1. Pre-request scripts 2. Test scripts 3. Variables, environments, globals 4. Sharing collections 5. Collection runs 6. Mock server 7. Generate code for cUrl, Java, Python, C#, etc. 8. Newman
  • 77. Java Libraries • JUnit/TestNG • RestAssured, Apache HTTP Client, other tools and libraries • Gson/Jackson (choose the one that is not used by your team’s developers • JsonAssert
  • 78. RestAssured • Usage • Not thread safe (there is a PR that might fix it)
  • 79. Test Data Where should it be located? In which format?
  • 80. Text • Can be saved as regular text/JSON/XML files at resources folder of your test project or in DB • Hard to change • Can be used for a limited number of tests with all fields and values pre-defined • Maintenance might become a pain in the neck
  • 81. Text + Templates Apache FreeMarker Values can be stored in CSV file Still requires much effort for maintenance
  • 87. Object Mapping + Builder
  • 88. Object Mapping + Builder
  • 89. Object Mapping + Builder • The most convenient approach to work with test data • Working with business objects in tests. Technical details are encapsulated • Saving test data in files/DB is no longer needed • Builder pattern allows chaining adding details for business objects
  • 90. Object Mapping + Builder Cannot be (easily) used in the following cases: • Custom fields • Adding null values for specific fields (but not all) • Wrong data type
  • 94. Gson/Jackson Objects • The most flexible approach for working with JSON/XML in Java • Can be used where Object Mapping cannot be (easily) applied • Requires more effort on developing business objects comparing to Object Mapping • Business object cannot be used for serialization/deserialization. Use wrapped JsonObject instead with its setter and getter
  • 95. JSON Schema Validation RestAssured JSON Schema Validation
  • 97. Using DB • Update data and make verifications in DB • Disadvantages: too coupled with DB schemas that might change often and significantly
  • 98. Using Java 8 Features Lambdas and Stream API are rather useful for working with collections of data
  • 99. Independent Tests Bad Examples: • POST object in one test, GET and verify in another one • Add embedded object in one test, verify it in another one • Shared data with not thread safe access (test data, configs, connection to DB, etc)
  • 100. Kotlin Kotlin and API tests presentation by Roman Marinsky
  • 101. Automation – Tools to Investigate • SoapUI – REST and SOAP testing tool • RAML/Swagger - for documentation and contract testing • Epam JDI HTTP - Web services functional testing, RestAssured wrapper • Karate - Web services functional testing using BDD style, based on Cucumber - JVM • AWS Lambda - might be used to run API tests in parallel
  • 102. Useful links • Presentation samples • Подходы к проектированию RESTful API • Testing RESTful Services in Java: Best Practices • REST CookBook • Status codes • The JavaScript Object Notation (JSON) Data Interchange Format • Introducing JSON • OData • Тестирование API используя TypeScript. Пример технологического стека и архитектуры
  • 103. Thank You! Any Questions?
  • 104. Contacts • Ivan Katunou, Software Testing Team Leader / Resource Manager at Epam Systems (Coconut Palm test automation team) • ivan.katunou@gmail.com • @IvanKatunou (Telegram) • +375 29 259 56 42 (Viber, GSM)