use of com.microsoft.azure.sdk.iot.service.exceptions.IotHubException in project azure-iot-sdk-java by Azure.
the class IotHubExceptionManagerTest method httpResponseVerification_301_withErrorReason.
// Tests_SRS_SERVICE_SDK_JAVA_IOTHUBEXCEPTIONMANAGER_21_013: [If the httpresponse contains a reason message, the function must print this reason in the error message]
// Assert
@Test
public void httpResponseVerification_301_withErrorReason() throws IotHubException {
// Arrange
final int status = 301;
final byte[] body = { 1 };
final Map<String, List<String>> headerFields = new HashMap<>();
final byte[] errorReason = "{\"ExceptionMessage\":\"This is the error message\"}".getBytes();
HttpResponse response = new HttpResponse(status, body, headerFields, errorReason);
// Act
try {
IotHubExceptionManager.httpResponseVerification(response);
assert true;
} catch (IotHubException expected) {
// Expected throw.
assertThat(expected.getMessage(), is("This is the error message"));
}
IotHubException iotHubException = new IotHubException("error message");
IotHubExceptionManager iotHubExceptionManager = new IotHubExceptionManager();
// Assert
assertNotEquals(null, iotHubException);
assertNotEquals(null, iotHubExceptionManager);
}
Aggregations