API Testing using Postman [Functional] & Jmeter[Performance]
- 3.9
Brief Introduction
Basic to Advance understanding of API Testing, Postman Coding in JavaScript & Performance using JMeterDescription
POSTMAN is one of the most popular tool used by software development & testing teams in many companies. It is a very handy tool used by Developers/Testers when building or Testing RESTful web services
In this course, you will learn many functionalities of the POSTMAN tool with practical examples. Below are some of the highlights of this course.
- Organize requests using Collections
- Learn how to send SOAP & REST Requests using POSTMAN
- Perform data driven testing
- Authentication approaches (BASIC,OAUTH)
- Scripting in POSTMAN
- Integrate POSTMAN with NEWMAN
Performance Test Web Services
If we look into the unique characteristics of Web Service performance two aspect stands out; on the server side there’s quite a bit of XML/JSON processing going on, both XML/JSON parsing and serialization, and the thing that often fails first is the processing of the payloads. The reasons why this fails can be multifold; it can be in the platform in the shape of for example weaknesses in the application server, and in the implementation in the shape of unnecessarily complex WSDL’s. It could also be that the code is making a request to a database that is slow in responding.
The complexity of parsing the XML/JSON payloads means that we have to put an extra focus on Scalability Testing, while the issue of security means we will have to focus some extra on doing testing of requests that are secure. If the entire Web Service is secure this means Load Testing is more important especially if WS-Security and token handling is used.
It also means we have to examine the WSDL’s closely. If the requests and responses are either complex or larger, or if they include large attachments, we have to focus on emphasizing that complexity and see how it behaves under load.
Requirements
- Requirements
- User should have basic understanding of performance testing
- You should have basic understanding of manual testing & jmeter