本文整理汇总了Java中org.custommonkey.xmlunit.Validator类的典型用法代码示例。如果您正苦于以下问题:Java Validator类的具体用法?Java Validator怎么用?Java Validator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Validator类属于org.custommonkey.xmlunit包,在下文中一共展示了Validator类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: ignoresTrailingWhitespace
import org.custommonkey.xmlunit.Validator; //导入依赖的package包/类
@Test
public void ignoresTrailingWhitespace() throws Exception {
StringWriter writer = new StringWriter();
Properties log4jProperties = new Properties();
log4jProperties.load(getClass().getClassLoader().getResourceAsStream("log4j.issue5.properties"));
converter.toXml(log4jProperties, writer);
String expected = readFromStream("log4j.issue5.expected.xml");
String actual = writer.toString();
System.out.println(expected);
System.out.println("=============================");
System.out.println(actual);
XMLUnit.setIgnoreWhitespace(true);
XMLUnit.setControlEntityResolver(new Log4JEntityResolver());
XMLUnit.setTestEntityResolver(new Log4JEntityResolver());
Validator validator = new Validator(actual);
validator.assertIsValid();
XMLAssert.assertXMLEqual(expected, actual);
}
开发者ID:jroyals,项目名称:log4j-properties-converter,代码行数:25,代码来源:ConvertFromPropertiesToXmlTest.java
示例2: canConvertPropertiesToXmlFormat
import org.custommonkey.xmlunit.Validator; //导入依赖的package包/类
@Test
public void canConvertPropertiesToXmlFormat() throws IOException, SAXException {
StringWriter writer = new StringWriter();
Properties log4jProperties = new Properties();
log4jProperties.load(getClass().getClassLoader().getResourceAsStream("log4j.issue4.properties"));
converter.toXml(log4jProperties, writer);
String expected = readFromStream("log4j.issue4.expected.xml");
String actual = writer.toString();
XMLUnit.setIgnoreWhitespace(true);
XMLUnit.setControlEntityResolver(new Log4JEntityResolver());
XMLUnit.setTestEntityResolver(new Log4JEntityResolver());
Validator validator = new Validator(actual);
validator.assertIsValid();
XMLAssert.assertXMLEqual(expected, actual);
}
开发者ID:jroyals,项目名称:log4j-properties-converter,代码行数:21,代码来源:ConvertFromPropertiesToXmlTest.java
示例3: isValidXML
import org.custommonkey.xmlunit.Validator; //导入依赖的package包/类
private boolean isValidXML(String xmlAsString, String schemaAsString)
throws SAXException {
InputSource is = new InputSource(new StringReader(xmlAsString));
Validator v = new Validator(is);
v.useXMLSchema(true);
// v.setJAXP12SchemaSource(new File(myXmlSchemaFile));
// v.setJAXP12SchemaSource( new StringReader( schemaAsString ) ); //
// reader does NOT work
v.setJAXP12SchemaSource(new ByteArrayInputStream(schemaAsString
.getBytes()));
boolean isValid = v.isValid();
return isValid;
}
开发者ID:EXIficient,项目名称:exificient,代码行数:16,代码来源:SchemaProperties.java
示例4: testWebXmlDTDCompliance
import org.custommonkey.xmlunit.Validator; //导入依赖的package包/类
public void testWebXmlDTDCompliance() throws Exception {
// makes sure web.xml is DTD compliant (without requiring internet access in the process)
InputSource is = new InputSource(new FileInputStream("src/main/webapp/WEB-INF/web.xml"));
Validator v = new Validator(is, new File("src/test/java/org/geoserver/web/web-app_2_3.dtd")
.toURL().toString());
assertTrue(v.isValid());
}
开发者ID:geosolutions-it,项目名称:soil_sealing,代码行数:8,代码来源:WebXmlTest.java
示例5: validate
import org.custommonkey.xmlunit.Validator; //导入依赖的package包/类
protected void validate(InputStream is, String schemaUrl) throws Exception
{
InputSource saxIs = new InputSource(is);
Validator v = new Validator(saxIs);
v.useXMLSchema(true);
v.setJAXP12SchemaSource(schemaUrl);
assertTrue(v.isValid());
}
开发者ID:sensiasoft,项目名称:lib-swe-common,代码行数:9,代码来源:TestGMLBindingsV32.java
注:本文中的org.custommonkey.xmlunit.Validator类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论