Automated Testing of webMethods Services with REST Assured
Sunday, September 24, 2017While testing REST APIs for one of my projects, I found REST Assured. It was perfect, as it took care of low level HTTP calls under the hood, and provided a high-level, easy to use framework to write tests. Not only REST Assured works really well to test webMethods flow services, you can also run these tests as part of Continuous Integration process through Gradle.
You will need following things on your machine. Make sure these are working without any issues.
We will write automated tests for a simple flow service that adds two numbers.
Follow following steps to create automated tests.
Further resources to read
You will need following things on your machine. Make sure these are working without any issues.
We will write automated tests for a simple flow service that adds two numbers.
Follow following steps to create automated tests.
- Open IntelliJ IDEA and create a new project
- Add following lines in your build.gradle file
dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3' testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3' testCompile 'io.rest-assured:rest-assured:3.0.3' } task wrapper(type: Wrapper) { gradleVersion = '2.0' //version required }
- Create new package for our test cases
- Create new Java class for our tests.
package com.dhimate.wm; import org.junit.Before; import org.junit.Test; import io.restassured.RestAssured; import io.restassured.response.Response; import java.util.HashMap; import static io.restassured.RestAssured.given; import static io.restassured.RestAssured.basic; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.equalTo; public class AddNumbersTest { @Before public void setUp() throws Exception { RestAssured.baseURI = "http://localhost:5555/invoke"; RestAssured.authentication = basic("Administrator", "manage"); } @Test public void AddNumbersTestSuccess() { String requestBody = "{" + "\"num1\":\"10\"," + "\"num2\":\"20\"" + "}"; Response response = given(). header("Content-Type","application/json"). body(requestBody). put("Yogesh.flow/addNumbers"); response.getBody().prettyPrint(); HashMap responseBody = response.jsonPath().get(""); assertThat("status code", response.getStatusCode(), equalTo(200)); assertThat("sum", responseBody.get("sum"), equalTo("30")); } }
Here we are just taking advantage of Integration Server's built in content handler for Content Type - 'application/json'. For the flow service available on Integration Server, we can simply pass JSON request using REST Assured framework. Integration Server will take care of converting this to IDoc and subsequently process it to return a JSON response back to your test case. - Run the tests using Gradle wrapper
Gradle wrapper provides a convenient and easy to use CLI to run your tests. Using Gradle wrapper you can quickly associate your REST Assured tests with your Continuous Integration process.
Further resources to read
- REST Assured has comprehensive documentation available to get you started.
- Excellent tutorial on Gradle and Hamcrest by Vogella.