use of org.apache.drill.exec.proto.UserBitShared.DrillPBError in project drill by axbaretto.
the class TestUserException method testBuildUserExceptionWithCause.
@Test
public void testBuildUserExceptionWithCause() {
String message = "Test message";
UserException uex = UserException.dataWriteError(new RuntimeException(message)).build(logger);
DrillPBError error = uex.getOrCreatePBError(false);
// cause message should be used
Assert.assertEquals(ErrorType.DATA_WRITE, error.getErrorType());
Assert.assertEquals(message, uex.getOriginalMessage());
}
use of org.apache.drill.exec.proto.UserBitShared.DrillPBError in project drill by axbaretto.
the class TestUserException method testBuildUserExceptionWithFormattedMessage.
@Test
public void testBuildUserExceptionWithFormattedMessage() {
String format = "This is test #%d";
UserException uex = UserException.connectionError().message(format, 5).build(logger);
DrillPBError error = uex.getOrCreatePBError(false);
Assert.assertEquals(ErrorType.CONNECTION, error.getErrorType());
Assert.assertEquals(String.format(format, 5), uex.getOriginalMessage());
}
use of org.apache.drill.exec.proto.UserBitShared.DrillPBError in project drill by axbaretto.
the class TestUserException method testBuildUserExceptionWithCauseAndMessage.
@Test
public void testBuildUserExceptionWithCauseAndMessage() {
String messageA = "Test message A";
String messageB = "Test message B";
UserException uex = UserException.dataWriteError(new RuntimeException(messageA)).message(messageB).build(logger);
DrillPBError error = uex.getOrCreatePBError(false);
// passed message should override the cause message
Assert.assertEquals(ErrorType.DATA_WRITE, error.getErrorType());
// messageA should not be part of the context
Assert.assertFalse(error.getMessage().contains(messageA));
Assert.assertEquals(messageB, uex.getOriginalMessage());
}
use of org.apache.drill.exec.proto.UserBitShared.DrillPBError in project drill by axbaretto.
the class TestUserException method testBuildUserExceptionWithMessage.
@Test
public void testBuildUserExceptionWithMessage() {
String message = "Test message";
UserException uex = UserException.dataWriteError().message(message).build(logger);
DrillPBError error = uex.getOrCreatePBError(false);
Assert.assertEquals(ErrorType.DATA_WRITE, error.getErrorType());
Assert.assertEquals(message, uex.getOriginalMessage());
}
use of org.apache.drill.exec.proto.UserBitShared.DrillPBError in project drill by axbaretto.
the class TestUserException method testBuildUserExceptionWithUserExceptionCauseAndMessage.
@Test
public void testBuildUserExceptionWithUserExceptionCauseAndMessage() {
String messageA = "Test message A";
String messageB = "Test message B";
UserException original = UserException.connectionError().message(messageA).build(logger);
UserException uex = UserException.dataWriteError(wrap(original, 5)).message(messageB).build(logger);
// builder should return the unwrapped original user exception and not build a new one
Assert.assertEquals(original, uex);
DrillPBError error = uex.getOrCreatePBError(false);
Assert.assertEquals(messageA, uex.getOriginalMessage());
// messageB should not be part of the context
Assert.assertFalse(error.getMessage().contains(messageB));
}
Aggregations