Reading:
Stubbing & Service Virtualization Explained
Share:

Stubbing & Service Virtualization Explained

Check out the latest pro content in Ministry of Testing's Web Testing 101 Series: "Stubbing & Service Virtualization Explained" by Wojciech Bulaty

By Wojciech Bulaty

Stubbing and service virtualization are great tools to understand and use for testing. You can also think of them as simulators for APIs. We will explore the terminology involved with stubbing and service virtualization, and we’ll walk through a simplified example of how a service virtualization tool can work in cooperation with a testing framework. We’ll also explore a few problems testers can face when using these testing techniques.

Useful Terms To Know

To fully grasp what we will be covering you should have a basic knowledge of software testing and understand what the following terms mean:

  • Frontend, middleware, backend, and third-party system: Most software systems architectures are divided into components. A typical split would be user-facing front-end systems, data storage and processing backend systems, “gluing” it all together. In addition, applications could include middleware systems and external services provided by external third party systems. You can use service virtualization to simulate middleware, backend and third party systems.

  • API: An API (Application Programming Interface) describes how frontend, middleware, backend and third party systems communicate. For example, front-end systems will communicate via APIs with middleware and backend systems, while backend systems will communicate via APIs with third-party systems, etc. You can use service virtualization to simulate APIs.

  • HTTP request and response: APIs also define protocols of communication. The most common one these days is HTTP(S). For example, a front-end system will send a HTTP request to a backend system API, which in return will return a HTTP response. You can simulate those HTTP requests and responses with service virtualization.

What Is Service Virtualization?

Service virtualization is the practice of simulating backend or third party systems to improve testing of applications. You can use a service virtualization tool to create a simulation of a backend or third party API that will help you to test your application in hypothetical or hard to test situations. It allows you to run more test scenarios earlier and with less effort. The simulators you create for services are called virtual services.

Imagine testing a new model of a jet engine. After engineers build a prototype, they will test it in a test lab without mounting it to a jet fighter. The jet engine test lab will have many specialised devices that simulate a real environment. They measure many parameters of the engine and the environment variables during these initial tests. It can measure the fuel consumption, thrust, and other characteristics without having to do expensive and unreliable field tests with a real jet plane. We can apply the same principle of using test labs to gather data by employing real-environment simulators to test software.

Sometimes it is hard to test an application because it depends on components which are unavailable in the test environment. Also, better control of those components is required to test hypothetical situations which aren’t always available.

Differences Between Stubbing & Service Virtualization

Stubbing and service virtualization are just two names of a family of solutions called test doubles. A test double is a simulator that is used in testing to simulate a system instead of using the real system. The term stub is usually used for test doubles that are simple to simulate. Service virtualization is used most often for both simple as well as complex simulations. If you need a very simple solution, with not a lot of functionality, you can use a stubbing tool. If you need a more advanced tool that can do both simple and advanced simulations for you, service virtualization tools can be more useful in that regard.

If you are interested in more details on the name differences have a look at this article for an in-depth introduction to the subject.

In Table 1 below we have highlighted the main differences between stubbing and service virtualization tools.


Table 1: Main stubbing and service virtualization tool differences.

 

Stubbing tools

Service virtualization tools

Typical environment to use in

Simple systems with easy to simulate APIs

Complex legacy systems with hard to simulate APIs

Supported protocols

One specific protocol

Usually many protocols

Graphical User Interface

Usually unavailable

Available

Advanced scripting

Usually unavailable

Available

Response templates

Usually unavailable

Available

Data creation

Usually hard-coded or added using an API from the tests

Recording, manual entry using GUI, generated from schemas, imported from log files, loading from database or CSV files and many more.

Different Ways Of Creating Virtual Services

Virtual services can be created in several different ways depending on which service virtualization tool you use and the architecture of your test environment. You can, for example, craft them manually, generate them from specification automatically, or record requests and responses.

Example: How to Create a Virtual Service by Recording Traffic

A simple and common way of creating virtual services is by using a tool to record traffic of a particular part of a website. This allows us to create a stub of the network call being made through a workflow and allows us to see how this network call can be virtualized.

To demonstrate how to create virtual services by recording traffic we will test a simple finance application that connects to an API to get market data.

To record the request and responses, we will put a service virtualization tool between the application and the API.

Next, for the service virtualization tool to record any requests and responses we want to make the Finance Application send a request to the Market Data API. We can do it by running a test case manually, or by running an automated test case provided it is available. It causes a request to be sent to the Market Data API which the service virtualization tool will record. This way we will create a virtual service by peeking on what the application is sending to the API, rather than having to craft virtual services manually based documentation.

After we have recorded the request and response pair, we can turn off the recorder and start playing back the recording. If we run through the test plan now, a request will be sent to the virtual service, which will reference what has been recorded. This will allow us to test the application in isolation, so it is not dependent on the Market Data API anymore to set up the test data.

Now that the virtual service has recorded a request and response, we can proceed with testing a hypothetical situation. We can use the user interface of the service virtualization tool to change the response that has been recorded by the virtual service, by replacing or updating variables, for example.

Depending on the service virtualization tool you use you will have access to one or more of the following options:

  • Setting up test data.

You should use virtual services for your backend, or third party system, when it is very hard or impossible to setup test data. It is typical for third party systems to return production data, which means it is harder to alter it and test your application in hypothetical situations without a virtual service. It is also quite common for large companies to have old backend systems that require a lot of effort when setting up test data (days or weeks). In both of these situations when you use virtual services you can configure the data they way you need it and on demand.

For example, you can use a virtual service to simulate different test data scenarios. Instead of returning “£12.01” as the stock price from the Market Data API, you can set up a virtual service to return a negative price “-£7.00”. Or, an empty price “   ”, a large price “£10000000000000000.00”, a different currently price “$12.01” or put in unrecognized characters “🏳0🌈️” (from the list of naughty strings) and test what the application does in these situations.

  • Simulating API error messages.

Often API documentation lists many different types of error messages. It is typical that the API will not return those error messages unless an error occurs. Hence, there is no way to test what your application will do when it encounters a given error message. You can use virtual services to simulate those error messages.

For example, let us assume the documentation of the Marked Data HTTP API describes when an unknown server occurs, the HTTP response status code will be 503. There is no way of simulating that server error using the real API. What you can do in that situation is to set up a virtual service to pretend to be that API and make it return a 503 status code.

  • Simulating protocol-specific error.

Every communication protocol has its typical ways of failing. Teams should observe production environments and replicate problematic situations in the test environments. Testers often use this option when investigating bugs that need a protocol failure to be simulated to reproduce a bug. For example, connections to HTTP APIs can be reset or dropped. If you see those kinds of errors on production servers often enough that you might want to test your application in those scenarios as well. One way of simulating a dropped connection is to unplug the network cable from the socket, but it is much more convenient if you use a virtual service to simulate those situations.

One way you can do this is by designing a test case where you set up the Market Data API virtual service to drop the connections. You can then assert that the Finance Application recovers from the error and presents a meaningful message to the user.

  • Simulating slow responses

Monitoring for performance of backend and third party systems could be done in real time. Another option can be creating a virtual simulator to mimic slow responses without involving production services.

For example, the Finance Application sometimes does not serve client requests for unknown reasons. You investigate the production logs and see a lot of connection timeouts to the Market Data API.  This leads to discovering that the API is behaving very slowly every once in awhile. You raise this issue with the Market Data API team to investigate why the API is having performance issues. To test for weak points in the Finance Application, you create virtual services that simulate slow responses from the Market Data API. It’s a test case that allows the developers to reproduce the situation in their environment and improve the application so that it does not fall over if the Market Data API is slow for certain types of requests.

Once the testing in isolation has been done, and the application works according to our expectations in isolation, you can proceed to integration testing it with the Market Data API.

This approach is very common in many organisations for both manual and automated testing.

Automated testing can be very challenging if you do not use any virtual services or stubs (or mocks). The tests without stubs or mocks could become flaky very fast, run longer than expected, and could become harder to write as the real API changes and other applications use it as well. Manual testing without virtual services is possible but can be more time consuming and often frustrating. These are common problems in a microservices architecture.

Pain Points Addressed By Service Virtualization

Here are several of the more typical problems testers will experience while testing web applications, mobile applications, legacy systems and APIs and how service virtualization can help with solving them.

  • Too much pressure on the testing team and not enough time to test.

This is a common problem and service virtualization alone will not fix it, but it is an essential part of the solution. If you can utilize service virtualization in your builds and pipelines you can have more confidence in your release cycle. The focus changes from trying to test everything to testing what could be at risk of having issues. These kinds of checks can give you a quick health status of the application, or a piece of it, without dedicating a lot of testing time. Quick feedback means quick wins overall.

  • Testers being blocked by other teams not delivering APIs on time, leaving them unable to test.

In this case, you can use virtual services to simulate the non-existing API. If there are business requirements or documentation, you can create virtual services based on them to use until the real service is available to test. After you verify the system works in isolation according to your expectations, you can wait for the dependent API to be ready and do integration testing using the same tests. This is an example of using TDD for integration testing.

  • Hard to reproduce production bugs resulting in frustration and time loss.

Test data and complex interactions with backend and third party systems can cause issues reproducing bugs found in production. Issues with setting up test data in multiple systems simultaneously, simulating error messages or simulating protocol issues are hard to accomplish tasks getting in the way of easy reproduction of the environment where the bug was found in production. Fortunately, complex environments like these and many others can be simulated with virtual services, allowing for more flexibility and peace of mind when reproducing bugs.

  • Creating test data is complex and takes time, slowing the testing team down.

Often when you test old systems you have to wait for test data to be created, sometimes it’s even impossible to create the test data you need (especially in third party systems). Also, backend and third party systems can be hard to set up to return error responses, or throttle network responses, on demand. The solution is to use virtual services which are under your control, so you can set up any type of test data on demand.

  • Scheduling time on test environments resulting in inefficient use of tester’s time.

Especially large banks with old mainframe systems experience this issue where the test environments are costly to create, so there is a limited number of them shared across many testing teams and projects. Those old APIs almost never get changed but they are included in many test plans, so you have to schedule time on those environments to run your tests. You can simulate the API that never changes with virtual services and test your application under test more often without having to wait for the API availability. It is also less likely to impact other teams by burning through their test data causing further delays.

  • Cost of third party test transactions can complicate testing efforts.

In most cases, those paid APIs are very simple in nature and very rarely change. The cost of accessing third party APIs can complicate performance testing efforts as well. Simulating them using virtual services can reduce the third party transaction costs.

  • Unreliable performance tests

When you performance test many components simultaneously, it is often challenging to pinpoint the code change that causes a performance issue. The feedback loop is too large, and you are testing too many moving parts at one time. You ideally want to test small code releases in isolation and a limited number of components. That will ensure that if you see a degradation in performance, you can quickly point to a code changeset that was likely the cause. To run performance tests in isolation, you need virtual services. Most service virtualization tools on top of setting up test data capabilities will offer the possibility to define response times for the virtual services so you can create a production-like environment.

When you select a tool to use for service virtualization, keep the problem you are trying to solve in mind. Ask yourself a few questions about the problem at hand and what service virtualization can do to solve it.

Here are a few sample questions which could jumpstart the process for you:

  • Are service calls to real services slowing automation efforts?

  • Is lack of access to third party or backend services limiting testing efforts?

  • Is using real services the best place to test new code?

  • What problems might we need to address to create and maintain a virtual service for testing?

A Note Towards Architectural Refactoring

Once you have solved your problems with smart virtual services, you probably have introduced a bit more complexity to the delivery lifecycle. The next stage is to reduce that complexity of the architecture and APIs without re-introducing the problems you have just resolved. Architects and developers can focus on the long-term solution of simplifying the design to be able to simplify the virtual services as well. This is called architectural refactoring. Tackling complexity with more complexity is often a necessary short-term solution, but you have to keep the 5-10 year road ahead of you in mind as well. You do not want to end up in a place where there is just too much complexity for the job you are trying to do.

Exploratory Testing Microservice Architectures

Service virtualization tools can be useful when you are doing a lot of extensive exploratory testing of a microservice. Microservices can have many backend or third-party dependencies and you want to test what happens when one or more of those systems return unexpected or unusual responses. Examples of unusual or unexpected responses might be: empty book title, non-integer cart item count, negative stock quantity, slow response, cut connections, etc.

A service virtualization tool, with a graphical user interface designed specifically for exploratory testing, could allow a user to set up testing scenarios fairly quickly without delving into much of the service code base. Once a virtual service is created, the tester can focus on calls from the front end of the application or the service to the database or another service. Service Virtualization eliminates dependencies in testing a workflow by making them a non-issue as long as it’s used correctly.

Tool options

Let us have a look at several tools available on the market and their main characteristics (based on the opinions of WB Software Consultancy).

Table 2: Several Service Virtulization Tool Options

Tools

License

Cost 

Manual testing

Development and Continuous Integration

Advantages

Disadvantages

Getting started

Moutebank

Open Source

Free

Hard

Easy

Great for automation. Supports HTTP(S) as well as SMTP and TCP.

In our experience, manual testers find it hard to use.

Npm install and curl run

Wiremock

Open Source

Free

Hard

Easy

Great for automation. The most popular and stable open source tool with many contributors and strong open source community. Convers most HTTP use cases.

In our experience, manual testers find it hard to use.

Maven, gradle or standalone run

Hoverfly

Open Source

Free

Hard

Easy

Great for automation.

In our experience, manual testers find it hard to use.

Brew install and command line run

SoapUI MockServer

Open Source and Commercial

Free and paid

Easy

Hard

An established brand in the industry. Lots of usage across the industry. Easy to use in manual testing.

Only basic service virtualization functionality is available. In our experience not designed with modern Continuous Integration in mind.

Running via user interface

GetSandbox

Open Source and Commercial

Free and paid

Moderate

Easy

Great for automation. SaaS cloud version available.

In our experience, not designed with manual testers in mind. Missing some advanced service virtualization features.

Getting started user interface

APIry mock server

Commercial

Free and paid

Moderate

Easy

Focuses on API design. Great for automation. SaaS cloud version available.

In our experience, not designed with manual testers in mind. Only basic service virtualization available.

Mock server guide

Traffic Parrot

Commercial

Free and paid

Easy

Easy

Designed for both manual testing and automated development. Many advanced service virtualization functions available.

No cloud SaaS version available.

Sample project and a 3-minute getting started video

CA Service Virtualization

Commercial

Paid

Easy

Hard

Plenty of protocols supported. Long time on the market. Used by many large corporations. Many advanced service virtualization functions available. Cloud version available.

In our experience, consuming up to 10 times more system resources than alternative solutions (heavyweight). Often requires the installation of many components. In our experience does not play well with modern continuous integration practices compared to alternative solutions.

Start and use DevTest

Legal Disclaimer: All information presented in the comparison table is opinion based and not factual. Accurate as of 30th June 2017.

An Essential Tool

Service virtualization tools are essential in every testers toolbox. You can use them to unblock your team when it is waiting for a new API for testing, help reduce numbers of bugs, decrease the time it takes to reproduce bugs, or solve issues with setting up test data. There are a number of tools available on the market that you can use depending on system architecture and budget requirements. Any project could benefit from applying the practice of service virtualization.

If you have any problems with service virtualization drop the author a message on The Club, Slack or email at wojtek@wbsoftwareconsultancy.com and he will be happy to help.

References

  1. Front and back ends - Wikipedia

  2. Middleware - Wikipedia

  3. Application programming interface - Wikipedia

  4. Test Double Patterns - xUnit Patterns

  5. Service Virtualization and Stubbing Tools List Comparison - Traffic Parrot

  6. Architecture Refactoring Techniques - Mark Richards & Neal Ford

  7. Exploratory testing - Wikipedia

  8. 4 Ways to Boost Your Test Process with Service Virtualization - Bas Dijkstra

  9. Enterprise Service Virtualization Data - Voke

Author's Bio

Wojciech BulatyWojciech Bulaty is writing on behalf of WB Software Consultancy Limited. Wojciech has more than 10 years of hands-on and leadership experience in software development and testing. WB Software Consultancy has consulted for a spectrum of clients like British Sky Broadcasting and Lloyds Bank, and a range of startups.

Robot Process Automation As A Power Tool For Testing
Non-terrible Browser UI Tests with Selenium
How to Test Smarter (Not Harder) with Model-based Test Design
What Tools Should I Learn?
Systematic Exploratory Testing With YATTIE
Feature Spotlight: Using Checklist with Yattie
Deploy Microservices Confidently Using Consumer Driven Contracts - Henrik Stene
Lessons Learnt Moving to Microservices - Simon Dobson
Tighten Your Test Automation Feedback Loop
Selenium 4 introduces relative locators. This new feature allows the user to locate an object in relation to another object on the screen! Don't wait, get an instant demo today.
Explore MoT
Episode One: The Companion
A free monthly virtual software testing community gathering
MoT Intermediate Certificate in Test Automation
Elevate to senior test automation roles with mastery in automated checks, insightful reporting, and framework maintenance