use of io.cdap.cdap.etl.api.validation.ValidationFailure in project cdap by caskdata.
the class DataPipelineServiceTest method testValidateStageMultipleErrors.
// test that multiple exceptions set in an InvalidStageException are captured as failures
@Test
public void testValidateStageMultipleErrors() throws Exception {
// configure an invalid regex and a set the source and destination to the same value,
// which should generate 2 errors
String stageName = "stg";
Map<String, String> properties = new HashMap<>();
properties.put("filterRegex", "[");
properties.put("sourceFileset", "files");
properties.put("destinationFileset", "files");
ETLStage stage = new ETLStage(stageName, new ETLPlugin(FileMoveAction.NAME, Action.PLUGIN_TYPE, properties));
StageValidationRequest request = new StageValidationRequest(stage, Collections.emptyList(), false);
StageValidationResponse actual = sendRequest(request);
Assert.assertNull(actual.getSpec());
Assert.assertEquals(2, actual.getFailures().size());
ValidationFailure failure1 = actual.getFailures().get(0);
Assert.assertEquals("filterRegex", failure1.getCauses().get(0).getAttribute(CauseAttributes.STAGE_CONFIG));
Assert.assertEquals(stageName, failure1.getCauses().get(0).getAttribute(STAGE));
// failure 2 should have 2 causes one for each config property
ValidationFailure failure2 = actual.getFailures().get(1);
Assert.assertEquals(2, failure2.getCauses().size());
}
use of io.cdap.cdap.etl.api.validation.ValidationFailure in project cdap by caskdata.
the class DataPipelineServiceTest method testSecureMacroSubstitution.
@Test
public void testSecureMacroSubstitution() throws Exception {
// StringValueFilterTransform checks that the field exists in the input schema
String stageName = "tx";
Map<String, String> properties = new HashMap<>();
properties.put("field", "${secure(field)}");
properties.put("value", "y");
ETLStage stage = new ETLStage(stageName, new ETLPlugin(StringValueFilterTransform.NAME, Transform.PLUGIN_TYPE, properties));
Schema inputSchema = Schema.recordOf("x", Schema.Field.of("x", Schema.of(Schema.Type.INT)));
// this call happens when no value for 'field' is in the secure store, which should not result in
// any failures because the macro could not be enabled so the check is skipped
StageValidationRequest requestBody = new StageValidationRequest(stage, Collections.singletonList(new StageSchema("input", inputSchema)), false);
StageValidationResponse actual = sendRequest(requestBody);
Assert.assertTrue(actual.getFailures().isEmpty());
// now set the value of 'field' to be 'z', which is not in the input schema
// this call should result in a failure
getSecureStoreManager().put("default", "field", "z", "desc", Collections.emptyMap());
actual = sendRequest(requestBody);
Assert.assertNull(actual.getSpec());
Assert.assertEquals(1, actual.getFailures().size());
ValidationFailure failure = actual.getFailures().iterator().next();
// the stage will add 2 causes for invalid input field failure. One is related to input field and the other is
// related to config property.
Assert.assertEquals(1, failure.getCauses().size());
Assert.assertEquals("field", failure.getCauses().get(0).getAttribute(CauseAttributes.STAGE_CONFIG));
Assert.assertEquals(stageName, failure.getCauses().get(0).getAttribute(STAGE));
}
use of io.cdap.cdap.etl.api.validation.ValidationFailure in project cdap by caskdata.
the class DataPipelineServiceTest method testValidateStageOtherExceptionsCaptured.
// tests that exceptions thrown by configurePipeline that are not InvalidStageExceptions are
// captured as a ValidationFailure.
@Test
public void testValidateStageOtherExceptionsCaptured() throws Exception {
// SleepTransform throws an IllegalArgumentException if the sleep time is less than 1
String stageName = "tx";
ETLStage stage = new ETLStage(stageName, new ETLPlugin(SleepTransform.NAME, Transform.PLUGIN_TYPE, Collections.singletonMap("millis", "-1")));
StageValidationResponse actual = sendRequest(new StageValidationRequest(stage, Collections.emptyList(), false));
Assert.assertNull(actual.getSpec());
Assert.assertEquals(1, actual.getFailures().size());
ValidationFailure failure = actual.getFailures().iterator().next();
Assert.assertEquals(stageName, failure.getCauses().get(0).getAttribute(STAGE));
}
Aggregations