use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.export.utils.TdchUtils in project kylo by Teradata.
the class TdchUtilsTest method testMaskTdchCredentials_MaskingNotApplicable.
@Test
public void testMaskTdchCredentials_MaskingNotApplicable() {
TdchUtils tdchUtils = new TdchUtils();
String tdchCommand = "This is a command with no -my_key my_value parameters to mask";
String maskedTdchCommand = tdchUtils.maskTdchCredentials(tdchCommand);
Assert.assertEquals("This is a command with no -my_key my_value parameters to mask", maskedTdchCommand);
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.export.utils.TdchUtils in project kylo by Teradata.
the class TdchUtilsTest method testGetExportHiveToTeradataJobExitCode_FailureCode.
@Test
public void testGetExportHiveToTeradataJobExitCode_FailureCode() {
TestRunner runner = TestRunners.newTestRunner(TestAbstractTdchProcessor.class);
MockComponentLog componentLog = runner.getLogger();
TdchUtils tdchUtils = new TdchUtils();
long code = tdchUtils.getExportHiveToTeradataJobExitCode(getTdchProcessResultWithFailureExitCode(), componentLog);
Assert.assertEquals(-1, code);
List<LogMessage> warnMessages = componentLog.getWarnMessages();
Assert.assertEquals(1, warnMessages.size());
Assert.assertTrue(warnMessages.get(0).getMsg().endsWith("Skipping attempt to retrieve TDCH exit code"));
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.export.utils.TdchUtils in project kylo by Teradata.
the class TdchUtilsTest method testGetExportHiveToTeradataJobExitCode_NoCode.
@Test
public void testGetExportHiveToTeradataJobExitCode_NoCode() {
TestRunner runner = TestRunners.newTestRunner(TestAbstractTdchProcessor.class);
MockComponentLog componentLog = runner.getLogger();
TdchUtils tdchUtils = new TdchUtils();
long code = tdchUtils.getExportHiveToTeradataJobExitCode(getTdchProcessResultWithNoExitCode(), componentLog);
Assert.assertEquals(-1, code);
List<LogMessage> warnMessages = componentLog.getWarnMessages();
Assert.assertEquals(1, warnMessages.size());
Assert.assertTrue(warnMessages.get(0).getMsg().endsWith("Skipping attempt to retrieve TDCH exit code"));
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.export.utils.TdchUtils in project kylo by Teradata.
the class TdchUtilsTest method testGetExportHiveToTeradataJobTimeTaken_InvalidTimeTakenLong.
@Test
public void testGetExportHiveToTeradataJobTimeTaken_InvalidTimeTakenLong() {
TestRunner runner = TestRunners.newTestRunner(TestAbstractTdchProcessor.class);
MockComponentLog componentLog = runner.getLogger();
TdchUtils tdchUtils = new TdchUtils();
String timeTaken = tdchUtils.getExportHiveToTeradataJobTimeTaken(getTdchProcessResultWithLongInvalidTimeTaken(), componentLog);
Assert.assertEquals("Unable to determine time taken", timeTaken);
List<LogMessage> warnMessages = componentLog.getWarnMessages();
Assert.assertEquals(1, warnMessages.size());
Assert.assertTrue(warnMessages.get(0).getMsg().endsWith("Unable to get valid value for time taken by TDCH job"));
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.export.utils.TdchUtils in project kylo by Teradata.
the class TdchUtilsTest method testGetExportHiveToTeradataJobTimeTaken_NoTimeTaken.
@Test
public void testGetExportHiveToTeradataJobTimeTaken_NoTimeTaken() {
TestRunner runner = TestRunners.newTestRunner(TestAbstractTdchProcessor.class);
MockComponentLog componentLog = runner.getLogger();
TdchUtils tdchUtils = new TdchUtils();
String timeTaken = tdchUtils.getExportHiveToTeradataJobTimeTaken(getTdchProcessResultWithNoTimeTaken(), componentLog);
Assert.assertEquals("Unable to determine time taken", timeTaken);
List<LogMessage> warnMessages = componentLog.getWarnMessages();
Assert.assertEquals(1, warnMessages.size());
Assert.assertTrue(warnMessages.get(0).getMsg().endsWith("Skipping attempt to retrieve time taken by TDCH job"));
}
Aggregations