Introduction to Java integration testing for a RESTful API

Table of Contents

1. Overview

This post will focus on basic principles and mechanics of writing Java integration tests for a RESTful API (with a JSON payload). The goal is to provide an introduction to the technologies and to write some tests for basic correctness. The examples will consume the latest version of the GitHub REST API.

For an internal application, this kind of testing will usually run as a late step in a Continuous Integration process, consuming the REST API after it has already been deployed.

When testing a REST resource, there are usually a few orthogonal responsibilities the tests should focus on:

  • the HTTP response code
  • other HTTP headers in the response
  • the payload (JSON, XML)

Each test should only focus on a single responsibility and include a single assertion. Focusing on a clear separation always has benefits, but when doing this kind of black box testing it’s even more important, as the general tendency is to write complex test scenarios in the very beginning.

Another important aspect of the integration tests is adherence to the Single Level of Abstraction Principle – the logic within a test should be written at a high level. Details such as creating the request, sending the HTTP request to the server, dealing with IO, etc should not be done inline but via utility methods.

2. Testing the HTTP response code

@Test
public void givenUserDoesNotExists_whenUserInfoIsRetrieved_then404IsReceived()
      throws ClientProtocolException, IOException{
   // Given
   String name = randomAlphabetic( 8 );
   HttpUriRequest request = new HttpGet( "https://api.github.com/users/" + name );

   // When
   HttpResponse httpResponse = httpClient.execute( request );

   // Then
   RestAssert.assertResponseCodeIs( httpResponse, 404 );
}

This is a rather simple test, which verifies that a basic happy path is working, without adding to much complexity to the test suite. If, for whatever reason it fails, then there is no need to look at any other test for this URL until this is fixed. Because verifying the response code is one of the most common assertions of the integration testing suite, a custom assertion is used.

public static void assertResponseCodeIs
      ( final HttpResponse response, final int expectedCode ){
   final int statusCode = httpResponse.getStatusLine().getStatusCode();
   assertEquals( expectedCode, statusCode );
}

3. Testing other headers of the HTTP response

@Test
public void 
 givenRequestWithNoAcceptHeader_whenRequestIsExecuted_thenDefaultResponseContentTypeIsJson()
 throws ClientProtocolException, IOException{
   // Given
   String jsonMimeType = "application/json";
   HttpUriRequest request = new HttpGet( "https://api.github.com/users/eugenp" );

   // When
   HttpResponse response = this.httpClient.execute( request );

   // Then
   String mimeType = EntityUtils.getContentMimeType( response.getEntity() );
   assertEquals( jsonMimeType, mimeType );
}

This ensures that the response when requesting the details of the user is actually JSON. There is a logical progression of the functionality under test – first the response code, to ensure that the request was OK, then the mime type of the request, and only then the verification that the actual JSON is correct.

4. Testing the JSON payload of the HTTP response

@Test
public void 
 givenUserExists_whenUserInformationIsRetrieved_thenRetrievedResourceIsCorrect()
 throws ClientProtocolException, IOException{
   // Given
   HttpUriRequest request = new HttpGet( "https://api.github.com/users/eugenp" );

   // When
   HttpResponse response = new DefaultHttpClient().execute( request );

   // Then
   GitHubUser resource = RetrieveUtil.retrieveResourceFromResponse
    ( response, GitHubUser.class );
   assertThat( "eugenp", Matchers.is( resource.getLogin() ) );
}

In this case, I know the default representation of GitHub resources is JSON, but usually the Content-Type header of the response should be tested alongside the Accept header of the request – the client asks for a particular type of representation via Accept, which the server should honor.

5. The Utilities for testing

Here are the utilities that enable the tests to remain at a higher level of abstraction:

  • decorate the HTTP request with the JSON payload (or directly with the POJO):
public static < T >HttpEntityEnclosingRequest decorateRequestWithResource
      ( final HttpEntityEnclosingRequest request, final T resource )
      throws IOException{
   Preconditions.checkNotNull( request );
   Preconditions.checkNotNull( resource );

   final String resourceAsJson = JsonUtil.convertResourceToJson( resource );
   return JsonUtil.decorateRequestWithJson( request, resourceAsJson );
}

public static HttpEntityEnclosingRequest decorateRequestWithJson
      ( final HttpEntityEnclosingRequest request, final String json )
      throws UnsupportedEncodingException{
   Preconditions.checkNotNull( request );
   Preconditions.checkNotNull( json );

   request.setHeader( HttpConstants.CONTENT_TYPE_HEADER, "application/json" );
   request.setEntity( new StringEntity( json ) );

   return request;
}
  • retrieve the JSON payload (or directly the POJO) from the HTTP response:
public static String retrieveJsonFromResponse( final HttpResponse response )
      throws IOException{
   Preconditions.checkNotNull( response );

   return IOUtils.toString( response.getEntity().getContent() );
}

public static < T >T retrieveResourceFromResponse
      ( final HttpResponse response, final Class< T > clazz ) throws IOException{
   Preconditions.checkNotNull( response );
   Preconditions.checkNotNull( clazz );

   final String jsonFromResponse = retrieveJsonFromResponse( response );
   return ConvertUtil.convertJsonToResource( jsonFromResponse, clazz );
}
  • conversion utilities to and from java object (POJO) to JSON:
public static < T >String convertResourceToJson( final T resource )
      throws IOException{
   Preconditions.checkNotNull( resource );

  return new ObjectMapper().writeValueAsString( resource );
}

public static < T >T convertJsonToResource
      ( final String json, final Class< T > clazzOfResource ) throws IOException{
  Preconditions.checkNotNull( json );
  Preconditions.checkNotNull( clazzOfResource );

  return new ObjectMapper().readValue( json, clazzOfResource );
}

6. Dependencies

The utilities and tests make use of of the following libraries, all available in Maven central:

7. Conclusion

This is only one part of what the complete integration testing suite should be. The tests focus on ensuring basic correctness for the REST API, without going into more complex scenarios, discoverability of the API, consumption of different representations for the same resource or other more advanced areas. I will address these in a further post, in the meantime checkout the full project on github.


P.S. If you read this far, you should follow me on Twitter.

, ,

  • http://twitter.com/fuchshuber Josef Fuchshuber

    We are using REST-assured to test and validate our REST-API. In combination with the maven-failsafe-plugin, maven-jetty-plugin and Jenkins everything works fine! Link: http://code.google.com/p/rest-assured/

    • vivek pradhan

      can u post your REST-assured code / send it to me. I am also looking at using REST assured.

      • baeldung

        Sure, I’m planning to write a folloup article using only rest-assured; for the time being however, you can always check out the github project (link at the end of the post) for about 300 tests done with rest-assured.
        Eugen.

  • http://qweojidxz.com Terisa

    Good post, really good. The information helped me.

  • http://europelibertyreserve.com/ liberty reserve

    I like Your Article about Integration testing of a REST API | baeldung Perfect just what I was looking for! .

  • http://gapkandroid.blogspot.com/ Android Apps

    I like your article about Integration testing of a REST API | baeldung Perfect just what I was looking for! .

  • Anonymous

    This is very helpful series of articles. Very nice job for a newbie who want to start with Spring3.1 restful. I am wandering how can I test the post/put/delete methods from command line, for example using curl. I am able to do the get. But for the post, it always complains ” The server refused this request because the request etity is in a format not supported by the requested resource for the requested m
    thod ().”. My understanding is that the api is expecting foo entity. But how could this be sent from command line (or javascript eventually). My command line is something like:

    curl -u eparaschiv:eparaschiv -v -H “Accept: application/json” -H “Content-type: application/*” -X POST -d ‘{“Foo”:{“name”:”foo4″}}’ http://localhost:8080/rest/api/admin/foo/

    I am wondering if anyone here knows how to do this.

    Thanks a lot,
    Simon

    • Eugen

      Hi,
      Just a quick note about your curl command – the Accept header is application/json, so your Content-type should be the same. Other than that, you should be able to consume the API via curl commands without any problems. Also, you are asking how to send the Foo resource in the POST, but it looks like you’re already doing that, so you should be fine.
      Thanks for the interesting feedback.
      Eugen.

      • Anonymous

        Thanks for the replay. I tried Context-type with application/json, it’s giving me same error message.I tried different way on the data part and with no luck either.

  • braghome

    your github link for the testing code is returning a 404

Powered by WordPress. Designed by Woo Themes