use of com.adaptris.core.DefaultMessageFactory in project interlok by adaptris.
the class XmlTransformServiceTest method testObtainUrlWithEmptyMetadataValue.
@Test
public void testObtainUrlWithEmptyMetadataValue() throws Exception {
AdaptrisMessage msg = new DefaultMessageFactory().newMessage();
msg.addMetadata("key", "");
XmlTransformService service = new XmlTransformService();
try {
service.setUrl("url");
service.setMetadataKey("key");
service.setAllowOverride(true);
LifecycleHelper.init(service);
assertTrue(service.obtainUrlToUse(msg).equals("url"));
} finally {
LifecycleHelper.close(service);
}
}
use of com.adaptris.core.DefaultMessageFactory in project interlok by adaptris.
the class XmlValidationServiceTest method testSimpleValidator_IsInvalidXml_LessThan.
@Test
public void testSimpleValidator_IsInvalidXml_LessThan() throws Exception {
XmlBasicValidator validator = new XmlBasicValidator(new DocumentBuilderFactoryBuilder());
AdaptrisMessage msg = new DefaultMessageFactory().newMessage("<?xml version=\"1.0\"?><Root><</Root>");
XmlValidationService service = new XmlValidationService(validator);
try {
execute(service, msg);
fail("Success with invalid XML");
} catch (ServiceException e) {
;
}
}
use of com.adaptris.core.DefaultMessageFactory in project interlok by adaptris.
the class XmlValidationServiceTest method testSchemaValidator_InvalidXml.
@Test
public void testSchemaValidator_InvalidXml() throws Exception {
String schemaUrl = PROPERTIES.getProperty(KEY_WILL_VALIDATE_SCHEMA);
// if (!ExternalResourcesHelper.isExternalServerAvailable(new URLString(schemaUrl))) {
// log.debug(schemaUrl + " not available, ignoring testInvalidXml test");
// return;
// }
BasicXmlSchemaValidator validator = new BasicXmlSchemaValidator();
validator.setSchema(schemaUrl);
XmlValidationService service = new XmlValidationService(validator);
AdaptrisMessage msg = new DefaultMessageFactory().newMessage("<?xml version=\"1.0\"?><Root></Root>");
try {
execute(service, msg);
fail("Success on a file that isn't valid XML!");
} catch (ServiceException e) {
;
}
}
use of com.adaptris.core.DefaultMessageFactory in project interlok by adaptris.
the class XmlValidationServiceTest method testSimpleValidator_IsInvalidXml_AmpersandNoEntity.
@Test
public void testSimpleValidator_IsInvalidXml_AmpersandNoEntity() throws Exception {
XmlBasicValidator validator = new XmlBasicValidator();
AdaptrisMessage msg = new DefaultMessageFactory().newMessage("<?xml version=\"1.0\"?><Root>&</Root>");
XmlValidationService service = new XmlValidationService(validator);
try {
execute(service, msg);
fail("Success with invalid XML");
} catch (ServiceException e) {
;
}
}
use of com.adaptris.core.DefaultMessageFactory in project interlok by adaptris.
the class XmlRuleValidatorTest method testNotInListContentValidation_DataInList.
@Test
public void testNotInListContentValidation_DataInList() throws Exception {
XmlRuleValidator validator = new XmlRuleValidator();
validator.addValidationStage(new ValidationStage(XPATH_ITERATION_CHILDREN_OF_ZEUS, XPATH_CHILDREN_OF_HERA, new NotInListContentValidation(CHILDREN_OF_HERA)));
AdaptrisMessage msg = new DefaultMessageFactory().newMessage(XML_FAMILY_TREE);
XmlValidationService service = new XmlValidationService(validator);
try {
ExampleServiceCase.execute(service, msg);
fail("RuleValidationService success when expecting failure");
} catch (ServiceException expected) {
}
}
Aggregations