use of com.adaptris.transform.validate.NotNullContentValidation in project interlok by adaptris.
the class XmlRuleValidatorTest method testMultipleContentValidation.
@Test
public void testMultipleContentValidation() throws Exception {
XmlRuleValidator validator = new XmlRuleValidator();
ValidationStage vs = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_ZEUS, XPATH_CHILDREN_OF_HERA, new SimpleListContentValidation(CHILDREN_OF_HERA), new NotNullContentValidation());
validator.addValidationStage(vs);
ValidationStage vs2 = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_CRONOS, XPATH_CHILDREN_OF_RHEA, new SimpleListContentValidation(CHILDREN_OF_RHEA), new NotNullContentValidation());
validator.addValidationStage(vs2);
AdaptrisMessage msg = new DefaultMessageFactory().newMessage(XML_FAMILY_TREE);
XmlValidationService service = new XmlValidationService(validator);
try {
ExampleServiceCase.execute(service, msg);
} catch (ServiceException e) {
fail("RuleValidationService failure when expecting success");
}
}
use of com.adaptris.transform.validate.NotNullContentValidation in project interlok by adaptris.
the class XmlRuleValidatorTest method testNotNullContentValidation_DataIsNull.
@Test
public void testNotNullContentValidation_DataIsNull() throws Exception {
XmlRuleValidator validator = new XmlRuleValidator();
// Hades had no children; poor god.
ValidationStage vs = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_HADES, XPATH_CHILD_NAME, new NotNullContentValidation());
validator.addValidationStage(vs);
AdaptrisMessage msg = new DefaultMessageFactory().newMessage(XML_FAMILY_TREE);
XmlValidationService service = new XmlValidationService(validator);
try {
ExampleServiceCase.execute(service, msg);
fail("RuleValidationService success when expecting exception");
} catch (ServiceException e) {
// expected
;
}
}
use of com.adaptris.transform.validate.NotNullContentValidation in project interlok by adaptris.
the class XmlRuleValidatorTest method testListContentValidation_WithNamespace.
@Test
public void testListContentValidation_WithNamespace() throws Exception {
XmlRuleValidator validator = new XmlRuleValidator();
validator.setNamespaceContext(createNamespaceHolder());
ValidationStage vs = new ValidationStage(XPATH_NS_ITERATION_TITAN_NAMES, XPATH_NS_TITAN_NAME, new SimpleListContentValidation(THE_TWELVE_TITANS), new NotNullContentValidation());
validator.addValidationStage(vs);
AdaptrisMessage msg = new DefaultMessageFactory().newMessage(XML_WITH_NAMESEPACE);
XmlValidationService service = new XmlValidationService(validator);
try {
ExampleServiceCase.execute(service, msg);
} catch (ServiceException e) {
fail("RuleValidationService failure when expecting success");
}
}
use of com.adaptris.transform.validate.NotNullContentValidation in project interlok by adaptris.
the class XmlRuleValidatorTest method testListContentValidation_WithNamespaceDataNotInList.
@Test
public void testListContentValidation_WithNamespaceDataNotInList() throws Exception {
XmlRuleValidator validator = new XmlRuleValidator();
validator.setNamespaceContext(createNamespaceHolder());
ValidationStage vs = new ValidationStage(XPATH_NS_ITERATION_OLYMPIAN_NAMES, XPATH_NS_OLYMPIAN_NAME, new SimpleListContentValidation(THE_TWELVE_TITANS), new NotNullContentValidation());
validator.addValidationStage(vs);
AdaptrisMessage msg = new DefaultMessageFactory().newMessage(XML_WITH_NAMESEPACE);
XmlValidationService service = new XmlValidationService(validator);
try {
ExampleServiceCase.execute(service, msg);
fail("RuleValidationService success when expecting exception");
} catch (ServiceException e) {
// expected
;
}
}
use of com.adaptris.transform.validate.NotNullContentValidation in project interlok by adaptris.
the class XmlRuleValidatorTest method createSample.
static XmlRuleValidator createSample() {
XmlRuleValidator validator = new XmlRuleValidator();
ValidationStage stage1 = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_CRONOS, XPATH_CHILDREN_OF_RHEA, new NotNullContentValidation(), new SimpleListContentValidation(CHILDREN_OF_RHEA));
validator.addValidationStage(stage1);
ValidationStage stage2 = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_ZEUS, XPATH_CHILDREN_OF_HERA, new NotNullContentValidation(), new SimpleListContentValidation(CHILDREN_OF_HERA));
validator.addValidationStage(stage2);
ValidationStage stage3 = new ValidationStage(XPATH_ITERATION_CHILDREN_OF_ZEUS, XPATH_CHILDREN_OF_LETO, new NotNullContentValidation(), new NotInListContentValidation(CHILDREN_OF_HERA));
validator.addValidationStage(stage3);
return validator;
}
Aggregations