API Testing Interview Question Part-1

 


API Testing Interview Questions

1.      What is API Testing?

 In sort you can say:

API testing is a type of software testing that analyzes an application program interface (API) to verify it fulfills its expected functionality, security, performance, and reliability.

Part of integration testing, API testing effectively validates the logic of the build architecture within a short amount of time.

or, Explanation view

In the modern development world, many web applications are designed based on three-tier architecture model. These are: 

  1. Presentation Tier – User Interface (UI)

  2. Logic Tier – Business logic is written in this tier. It is also called Business Tier. (API)

  3. Data Tier – Here information and data is stored and retrieved from a Database. (DB) 

Ideally, these three layers (tiers) should not know anything about the platform, technology, and structure of each other. We can test UI with GUI testing tools and we can test logic tier (API) with API testing tools. Logic tier comprises of all of the business logic and it has more complexity than the other tiers and the test executed on this tier is called as API Testing.

API testing tests logic tier directly and checks expected functionality, reliability, performance, and security. In the agile development world, requirements are changing during short release cycles frequently and GUI tests are more difficult to maintain according to those changes. Thus, API testing becomes critical to test application logic.

In GUI testing we send inputs via keyboard texts, button clicks, drop-down boxes, etc., on the other hand in API testing we send requests (method calls) to the API and get output (responses). These APIs are generally REST APIs or SOAP web services with JSON or XML message payloads being sent over HTTP, HTTPS, JMS, and MQ. 

2.      What is API ? 

An application programming interface (API) is a way for two or more computer programs to communicate with each other. It is a type of software interface, offering a service to other pieces of software. 

or,

An API (Application Programming Interface) is a software intermediary that enables two applications to communicate with each other. It comprises a number of subroutine definitions, logs, and tools for creating application software.

 In an API testing interview, you could be asked to give some API examples, here are the well-known ones: Google Maps API, Amazon Advertising API, Twitter API, YouTube API, etc. 

3.      What are main differences between API and Web Service?

  1. All Web services are APIs but not all APIs are Web services. 

  2. All web services need to be exposed over web(HTTP) but All APIs need not be exposed over web(i.e. HTTP)  

  3. Web services might not contain all the specifications and cannot perform all the tasks that APIs would perform.

  4. A Web service uses only three styles of use: SOAP, REST and XML-RPC for communication whereas API may be exposed to in multiple ways e.g. DLL files in C/C++, Jar files/ RMI in java, Interrupts in Linux kernel API etc.

  5. A Web service always needs a network to operate while APIs don’t need a network for  operation.

4.      Who can use a Web API? 

Web API can be consumed by any clients which support HTTP verbs such as GET, PUT, DELETE, POST. Since Web API services do not require configuration, they can be easily used by any client.  

In fact, even portable devices such as mobile devices can easily use Web API, which is undoubtedly the biggest advantage of this technology.

5.      What are some architectural styles for creating a Web API?

Below are four common Web API architectural styles:

  1. HTTP for client-server communicatio

  2.  XML/JSON as formatting language

  3. Simple URI as the address for the services

  4. Stateless communication

6.      What are the advantages of API Testing?

Below are the Advantages of API:

  1. Test for Core Functionality: API testing provides access to the application without a user interface. The core and code-level of functionalities of the application will be tested and evaluated early before the GUI tests. This will help detect the minor issues which can become bigger during the GUI testing. 

  2. Time Effective: API testing usually is less time consuming than functional GUI testing. The web elements in GUI testing must be polled, which makes the testing process slower. Particularly, API test automation requires less code so it can provide better and faster test coverage compared to GUI test automation. These will result in the cost saving for the testing project. 

  3. Language-Independent: In API testing, data is exchanged using XML or JSON. These transfer modes are completely language-independent, allowing users to select any code language when adopting automation testing services for the project.

  4. Easy Integration with GUI: API tests enable highly integrable tests, which is particularly useful if you want to perform functional GUI tests after API testing. For instance, simple integration would allow new user accounts to be created within the application before a GUI test started.

7.      Some common protocols used in API testing?

Many protocols are now available to be used in API testing, such as JMS, REST, HTTP, UDDI and SOAP

8.      What are the common API testing types?

Most tests fit broadly into these following categories:

  1. Validation Testing

  2. Functional Testing

  3. Load testing

  4. Runtime/ Error Detection

  5. Security testing

  6. Penetration(pen) testing

  7. Fuzz testing

  8. Interoperability and WS Compliance testing.

9.      What are tools could be used for API testing?

  1. Postman

  2. Katalon Studio

  3. SoapUI

  4. JMeter

  5. Rest-Assured

  6. Karate DSL

  7. API Fortress

  8. HP QTP(UFT)

  9. vREST

  10. Airborne

  11. Hippie-Swagger

  12. HttpMaster Express

  13. Rest Console

10.  What are differences between API Testing and UI Testing?

API enables communication between two separate software systems. A software system implementing an API contains functions or subroutines that can be executed by another software system.

On the other hand, UI ( User Interface) testing refers to testing graphical interface such as how users interact with the applications, testing application elements like fonts, images, layouts etc. UI testing basically focuses on look and feel of an application.

11.  What are major challenges faced in API testing?

Below are the Major challanges faced in API testing:

1. Parameter Selection

2. Parameter Combination

3.  Call sequencing

4. Output verification and validation

5. Another important challenge is providing input values, which is very difficult as GUI is not available in this case.

12.  What are the testing methods that come under API testing?

1.      Unit testing

2.      End to End Integration testing

3.      Functional testing

4.      Load testing to test the performance under load

5.      Usability and Reliability testing to get consistent results

6.      Security and Penetration testing to validate all types of authentication

7.      Automation testing to create and run scripts that require regular API calls

13.  What is API documentation?

The API documentation is a complete, accurate technical writing giving instructions on how to effectively use and integrate with an API. It is a compact reference manual that has all the information needed to work with the API, and helps you answer all the API testing questions with details on functions, classes, return types, arguments, and also examples and tutorials.

14.  What are API documentation templates that are commonly used?

There are several available API documentation templates help to make the entire process simple and straightforward, such as:

  1. Swagger

  2. Miredot

  3. Slate

  4. FlatDoc

  5. API blueprint

  6. RestDoc

  7. Web service API specification

15.  What is a RESTFul Web Services?  

Mostly, there are two kinds of Web Services which should be remembered : 

  1. SOAP (Simple Object Access Protocol) – an XML-based method to expose web services.

  2. REST (Representational State Transfer) is an architectural style for developing web services over HTTP protocol and uses HTTP method to define actions. It revolves around resource where every component being a resource that can be accessed through a shared interface using standard HTTP methods. 

Web services developed in the REST style are referred to as RESTful web services. These web services use HTTP methods to implement the concept of REST architecture. A RESTful web service usually defines a URI, Uniform Resource Identifier a service, provides resource representation like JSON and a set of HTTP methods.

16.  What is a “Resource” in REST?

REST architecture treats any content as a resource, which can be either text files, HTML pages, images, videos or dynamic business information.

REST Server gives access to resources and modifies them, where each resource is identified by URIs/ global IDs.

17.  What are the core components of an HTTP request?

An HTTP request contains five key elements:

  1. An action showing HTTP methods like GET, PUT, POST, DELETE.HEAD

  2. Uniform Resource Identifier (URI), which is the identifier for the resource on the server. 

  3. HTTP Version, which indicates HTTP version, for example-HTTP v1.1.

  4. Request Header, which carries metadata (as key-value pairs) for the HTTP Request message. Metadata could be a client (or browser) type, format supported by the client, format of a message body format, cache settings, and so on.

  5. Request Body, which indicates the message content or resource representation.

18.  What is URI? What is the main purpose of REST-based web services and what is its format?

URI stands for Uniform Resource Identifier. It is a string of characters designed for unambiguous identification of resources and extensibility via the URI scheme. 

The purpose of a URI is to locate a resource(s) on the server hosting of the web service.

A URI’s format is <protocol>://<service-name>/<ResourceType>/<ResourceID>

19.  What is payload in Restful Web services?

The “payload” is the data you are interested in transporting. This is differentiated from the things that wrap the data for transport like the HTTP/S Request/Response headers, authentication, etc.

20.  What is the upper limit for a payload to pass in the POST method?

<GET> appends data to the service URL. But, its size shouldn’t exceed the maximum URL length. However, <POST> doesn’t have any such limit. 

So, theoretically, a user can pass unlimited data as the payload to POST method. But, if we consider a real use case, then sending POST with large payload will consume more bandwidth. It’ll take more time and present performance challenges to your server. Hence, a user should take action accordingly.

21.  Enlist some of the API examples which are very well known and popular.

There are several such examples, enlisted below are some most popular ones:  

Google Maps API: These are designed mainly for mobile and desktop use with the help of flash interface and JavaScript.

Amazon Advertising API: Amazon is known for their products and thus their advertising API accesses their product to discover their functionality and thus advertise accordingly. 

Twitter: The API for twitter is usually in two categories, one for accessing data and the other for interacting with twitter search.

YouTube: This API used for YouTube includes various functionalities including videos, live streaming, player, etc.

22.  Differentiate API testing and Unit Testing.

Below are listed some basic differnce in API Testing and Unit testing.

  • Unit testing have the limited scope of testing, thus basic functionalities are only considered for testing.API testing have the broader scope of testing, all issues that are functional are considered for testing.

  • Unit testing is a form of white box testing.API testing is a form of black box testing.

  • Usually, unit testing is done before the code is included in the build.API testing is performed after the build is ready for testing.

  • In Unit testing the Source code is involved in this form of testing.In API testingSource code is not involved in this form of testing. 

  • Unit testing is usually performed by testers where every functionality is tested separately. API testing is performed by the testers for end to end testing of the functionality.

23.  What is Rest Assured?

In order to test REST APIs, We have RESTAssured library. It is developed by JayWay Company and it is a really powerful catalyzer for automated testing of REST- services. 

REST-assured provides a lot of nice features, such as DSL-like syntax, XPath-Validation, Specification Reuse, easy file uploads and with those features we will handle automated API testing much easier.Rest Assured has a gherkin type syntax which is as BDD (Behavior Driven Development): 

Also, you can get JSON response as a string and send it to the JsonPath class and use its methods to write more structured tests.

24.  How to Make a POST Request with RestAssured?

Rest API URL – URL of the Rest API

API Body – Body of the Rest API. Example: {“key1″:”value1″,”key2″:”value2”}

SetContentType() – Pass the “application/json”, “application/xml” or “text/html” etc. headers to setContenType() method. 

Authentication credentials – Pass the username and password to the basic() method or if there is no authentication leave them blank basic(“”,””)

25.  What can we have in given() in Rest Assured?

Given() can have headers(), parameters(),Path parameter with {},Query Parameter with ?, Header paremeter with cookies,body(), ContentType(),relaxedHTTPSValidation(),etc

***Note: In Post we should not send the data in url

26.  What can we have in When() in Rest Assured?

Answer: when() can hit the resource with get(),post(),put(),delete()

27.  What are the different Response code in RestAssured?

1xx: Informational :Communicates transfer protocol-level information.

2xx: Success:Indicates that the client’s request was accepted successfully.

3xx: Redirection:Indicates that the client must take some additional action in order to complete their request.

4xx: Client Error:This category of error status codes points the finger at clients.

5xx: Server Error :The server takes responsibility for these error status co

28.  What can have in Then() in Rest Assured?

This will get the response so we can assert with method assertThat() for statusCode(),body() .extract() will extract the information

29.  What are SOAP Web services?

The SOAP (Simple Object Access Protocol) is defined as an XML-based protocol. It is known for designing and developing web services as well as enabling communication between applications developed on different platforms using various programming languages over the Internet. It is both platform and language independent.

30.  SOAP or Rest APIs, which method to use?

SOAP is the heavyweight choice for Web service access. It provides the following advantages/disadvantage when compared to REST:

  • SOAP is not very easy to implement and requires more bandwidth and resources.

  • SOAP message request is processed slower as compared to REST and it does not use web caching mechanism.

  • WS-Security: While SOAP supports SSL (just like REST) it also supports WS- Security which adds some enterprise security features.

  • WS-Atomic Transaction: Need ACID Transactions over a service, you’regoing to need SOAP.

  • WS-ReliableMessaging: If your application needs Asynchronous processing and a guaranteed level of reliability and security. Rest doesn’t have a standard messaging system and expects clients to deal with communication failures by retrying.

  • If the security is a major concern and the resources are not limited then we should use SOAP web services. Like if we are creating a web service for payment gateways, financial and telecommunication related work, then we should go with SOAP as here high security is needed.

REST is easier to use for the most part and is more flexible. It has the following advantages when compared to SOAP:

  • Since REST uses standard HTTP, it is much simpler.

  • REST is easier to implement, requires less bandwidth and resources.

  • REST permits many different data formats whereas SOAP only permits XML.

  • REST allows better support for browser clients due to its support for JSON.

  • REST has better performance and scalability. REST reads can be cached, SOAP based reads cannot be cached.

  • If security is not a major concern and we have limited resources. Or we want to create an API that will be easily used by other developers publicly then we should go with REST.

  • If we need Stateless CRUD operations then go with REST.

  • REST is commonly used in social media, web chat, mobile services and Public APIs like Google Maps.

  • RESTful service returns various MediaTypes for the same resource, depending on the request header parameter “Accept” as application/xml or application/json for POST and /user/1234.json or GET /user/1234.xml for GET.

  • REST services are meant to be called by the client-side application and not the end user directly.

Mithun Kumar

I am Mithun Kumar, a freelance and working software professional. I have around 6 years of experience in software Quality Assurance in Manual and Automation with Various tools and Technology. I am always learning new technologies and find myself up to date with the latest software technologies.

Post a Comment

Thanks! for you valuable comment.

Previous Post Next Post