use of com.ibm.watson.developer_cloud.service.exception.ConflictException in project java-sdk by watson-developer-cloud.
the class ErrorResponseTest method testConflict.
/**
* Test HTTP status code 409 (Conflict) error response.
*/
@Test
public void testConflict() {
String message = "The request failed because the moon is full.";
server.enqueue(new MockResponse().setResponseCode(409).addHeader(CONTENT_TYPE, HttpMediaType.APPLICATION_JSON).setBody("{\"error\": \"" + message + "\"}"));
try {
GenericModel response = service.testMethod().execute();
} catch (Exception e) {
assertTrue(e instanceof ConflictException);
ConflictException ex = (ConflictException) e;
assertEquals(409, ex.getStatusCode());
assertEquals(message, ex.getMessage());
}
}
Aggregations