aQute.bnd.test.XmlTester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bnd Show documentation
Show all versions of bnd Show documentation
A command line utility and Ant plugin to wrap, build, or examine bundles.
package aQute.bnd.test;
import java.io.*;
import java.util.*;
import javax.xml.namespace.*;
import javax.xml.parsers.*;
import javax.xml.xpath.*;
import junit.framework.*;
import org.w3c.dom.*;
public class XmlTester {
final static DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
final static XPathFactory xpathf = XPathFactory.newInstance();
final static DocumentBuilder db;
static {
try {
dbf.setNamespaceAware(true);
db = dbf.newDocumentBuilder();
}
catch (ParserConfigurationException e) {
throw new RuntimeException(e);
}
}
final Document document;
final XPath xpath = xpathf.newXPath();
public XmlTester(InputStream in, final String... namespace) throws Exception {
xpath.setNamespaceContext(new NamespaceContext() {
public Iterator getPrefixes(String namespaceURI) {
return Arrays.asList("md", "scr").iterator();
}
public String getPrefix(String namespaceURI) {
for (int i = 0; i < namespace.length; i += 2) {
if (namespaceURI.equals(namespace[i + 1]))
return namespace[i];
}
return null;
}
public String getNamespaceURI(String prefix) {
for (int i = 0; i < namespace.length; i += 2) {
if (prefix.equals(namespace[i]))
return namespace[i + 1];
}
return null;
}
});
document = db.parse(in);
}
public void assertAttribute(String value, String expr) throws XPathExpressionException {
System.err.println(expr);
String o = (String) xpath.evaluate(expr, document, XPathConstants.STRING);
Assert.assertNotNull(o);
Assert.assertEquals(value, o);
}
public void assertNamespace(String namespace) {
Element element = document.getDocumentElement();
String xmlns = element.getNamespaceURI();
Assert.assertEquals(namespace, xmlns);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy