API Testing Definition

API like web services are the foundation of modern approaches for software architecture in modern software development. In this article, Alexey Grinevich presents the main challenges when testing different API technologies during regression testing. He also discusses which features a tool should provide to perform API testing.

Author: Alexey Grinevich, Inflectra Corporation, http://www.inflectra.com/

The move to cloud computing has highlighted the importance of Application Programming Interfaces (API). With the rise in cloud applications and interconnect platforms, API testing is a necessity.

What is an API?

Modern computer systems are generally designed using the ‘layered architecture approach’:

What is an API?

This means that the core functionality of the system is contained within the “business logic” layer as a series of discrete but connected business components. They are responsible for taking information from the various user interfaces (UIs), performing calculations and transactions on the database layer and then presenting the results back to the user interface.

However, in addition to communicating with human beings via the UI layer, computers systems have to be able to communicate directly with each other. For example, your mobile ride sharing application will need to communicate with the mapping service, the traffic and weather services and other specialized applications used by the drivers providing the rides. In this modern and interconnected world, we take for granted that all these different systems can speak to each other seamlessly, but in reality that would not be possible without APIs.

API Definition

At its core, an Application Programming Interface (API) is a formal specification that acts as a guaranteed contract between two separate pieces of software. The API provider defines the set of operations, data formats and protocols that it expects. The consumer of the API (called the client) will use those rules understanding that the client will never have to worry about the internals of the API itself as long as it follows the rules.

API Definition

The importance of APIs is that they let different organizations create software applications that discuss with other application and services without having to constantly update their application when the internals of the dependent applications or services change. As long as the API itself remains stable, the implementation can change. This is an important feature of APIs: they consist of a part that doesn’t change -“the interface or contract” that specifies the operations, data formats and behaviors – and the implementation that can change as needed.

Dealing with API changes

So what happens when you want to change an API and expose new functionality? You basically have two choices:

  • Change the existing API to reflect the updated version. However, this is called “breaking compatibility” and means that all clients of the API will need to be updated. Sometimes this is necessary but it should be avoided if possible. This is especially true for applications that are widely used and have many applications dependent on it.
  • Create a new API version and leave the old API. This is the recommended option. When possible, you create a new API to expose the new functionality but leave the old API in place for existing clients. You may need to add a translation layer to ensure the old API behaves exactly the same as before.

Dealing with API changes

API Testing

So now that we have establishing what an API is and why APIs are critical to modern interconnected, globally distributed applications and services, it is important to understand why API testing is critical.

API testing involves testing the application programming interfaces (APIs) directly and as part of integration testing to determine if they meet expectations for functionality, reliability, performance, and security. Since APIs lack a GUI, API testing is performed at the message layer. API testing is critical for automating testing because APIs now serve as the primary interface to application logic and because GUI tests are difficult to maintain with the short release cycles and frequent changes commonly used with Agile software development and DevOps.

API Testing

When you release a new version of the system (e.g. changing some of the business components or internal data structures) you need to have a fast, easy to run set of API regression tests that verify that those internal changes did not break the API interfaces. This is to make sure that the client applications that rely on the APIs will continue to function as before.

What kind of APIs can I test?

Over the years, APIs have evolved from simple code libraries that applications could use to run code on the same computer, to remote APIs that can be used to allow code on one computer to call code hosted somewhere else.

Here is a quick list of the more common API technologies that exist in approximate chronological order:
* TCP/IP Sockets
* Remote Procedure Call (RPC)
* Common Object Request Broker Architecture (CORBA)
* Java Remote Method Invocation (RMI) and Enterprise Java Beans (EJBs)
* Microsoft Distributed Component Object Model (DCOM) – also known as ActiveX
* Web Services (SOAP then REST)

When looking at an API testing tool, it is important to understand which API technologies you will be using and how best to test them. Nowadays most APIs you will come across will be of the Web Service variety (either REST or SOAP), but you may come across other technologies such as Java EJBs or Microsoft DCOM/ActiveX DLLs.

Web Service Testing

A Web service is a unit of managed code that can be remotely invoked using HTTP, that is, it can be activated using HTTP requests. Web Services allows you to expose the functionality of your existing code over the network. Once it is exposed on the network, other application can use the functionality of your program.

There are two broad classes of web service:
* Simple Object Access Protocol (SOAP)
* REpresentational State Transfer (REST)

Testing SOAP Web Services

SOAP web services make use of the Web Service Definition Language (WDSL) and communicate using HTTP POST requests. They are essentially a serialization of RPC object calls into XML that can then be passed to the web service. The XML passed to the SOAP web services needs to match the format specified in the WSDL.

SOAP web services are fully self-describing, so most clients do not directly work with the SOAP XML language, but instead use a client-side proxy generator that creates client object representations of the web service (e.g. Java, .NET objects). The web service consumers interact with these language-specific representations of the SOAP web service.

However, when you are testing SOAP services as well as having a nice interface for viewing the provide services and invoking test operations, you need to always have a way to verify the raw SOAP request and response packets being sent in XML:

Testing SOAP Web Services

This specific feature distinguishes a true SOAP solution from merely a SOAP client library. The former helps you test the service and understand failures, whereas the latter is just a way of making SOAP web service calls more easily from different programming languages.

The following features should be expected in a SOAP web service testing tool:

  • The ability to download a remote Web Service Description Language (WSDL) file and visually inspect all of its functions and data structures.
  • There should be a way to graphically create the SOAP request by taking the functions and populating the required parameters and then viewing the response back from the API. It should handle both simple values (called primitives, such as integers, dates, strings) and more complex structured objects (e.g. a new user object)
  • There should be a way to see the raw SOAP XML structure for both the sent request and the retrieved response. Ideally there should be a way to see the XML data nicely formatted so that it is easier to understand the interactions.
  • If possible the tool should support the different versions of SOAP (1.0, 1.1, 1.2) and also handle vendor-specific extension such as Microsoft Windows Communication Foundation (WCP) and ASP.NET Web Services (ASMX).

Testing REST Web Services

A RESTful web API (also called a RESTful web service) is a web API implemented using HTTP and REST principles. Unlike SOAP-based web services, there is no “official” standard for RESTful web APIs. This is because REST is an architectural style, unlike SOAP, which is a protocol.

Testing REST Web Services

Typically REST web services expose their operations as a series of unique “resources” which correspond to a specific URL. Each of the standard HTTP methods (POST, GET, PUT and DELETE) then maps into the four basic CRUD (Create, Read, Update and Delete) operations on each resource. REST web services can use different data serialization methods (XML, JSON, RSS, etc.).

The format used for REST Web Services was traditionally XML. This is partly because it was used extensively in SOAP web services and is therefore familiar, but also when bandwidth is not a limiting factor, it is self-describing, with the fields and data clearly described:

A common format used in web browser based APIs is JSON since it returns the data as JavaScript Object Notation (JSON) object that can be used directly in a web browser as it matches the format used by JavaScript to store arrays and objects. It is also a very compact format, making it ideal for communications on mobile networks with limited bandwidth.

When choosing a tool to perform REST web service testing, you should look for:

  • The ability to prototype and preview the HTTP request, with the ability to specify the HTTP headers, body, method and standard HTTP credentials.
  • The ability to see the request and response bodies in a variety of formats, including JSON and XML. The best tools offer automated formatters to make the data easier to enter and view.
  • The ability to record your actions and generate a programmatic test script that can be executed automatically for regression and API testing. If possible the tools should provide a way to convert the request and responses into software “objects” that make dealing with the data easier.
  • If possible, there should be a way to parameterize the REST requests so that you can create generic REST test functions that can be used in the test script in different ways without having to rewrite each time.

Microsoft DCOM/ActiveX Testing

Microsoft’s Component Object Model (COM) also known as ActiveX is a standard for communication between separately engineered software components (source). Any object with a COM interface can be created and used remotely:

var doc = new ActiveXObject("Word.Application");
doc.Documents.Open(wordFileName);

Using this approach, any API packaged as a COM or .NET accessible Dynamic Linked Library (DLLs) can be tested natively by testing tools that provide support for testing the following different types of DLL API:

  • Managed DLLs – written using the .NET Framework, the tool should provide special access classes for testing these APIs.
  • Unmanaged DLLs – written using native Intel x86 code, the tool should provides a special DynamicWrapper than makes it easy to access these APIs

About the Author

Alexey Grinevich is a lead developer in Inflectra’s test automation group. He is focused on web technologies and web APIs including Selenium, cross browser testing, SOAP and REST API testing. This article was originally published on https://www.inflectra.com/Rapise/Highlights/API-Testing.aspx and is reproduced with permission from Inflectra.

3 Trackbacks & Pingbacks

  1. Software Development Linkopedia October 2016
  2. Testing Bits – 10/16/16 – 10/22/16 | Testing Curator Blog
  3. Five Blogs – 27 October 2016 – 5blogs

Comments are closed.