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