Search in sources :

Example 6 with Canonicalizer20010315ExclWithComments

use of org.apache.xml.security.c14n.implementations.Canonicalizer20010315ExclWithComments in project santuario-java by apache.

the class Canonicalizer20010315ExclusiveTest method test221excl.

/**
 * Method test221excl
 *
 * @throws CanonicalizationException
 * @throws FileNotFoundException
 * @throws IOException
 * @throws InvalidCanonicalizerException
 * @throws ParserConfigurationException
 * @throws SAXException
 * @throws TransformerException
 * @throws XMLSecurityException
 * @throws XMLSignatureException
 */
@org.junit.Test
public void test221excl() throws IOException, FileNotFoundException, SAXException, ParserConfigurationException, CanonicalizationException, InvalidCanonicalizerException, TransformerException, XMLSignatureException, XMLSecurityException {
    Document doc = this.db.parse(getAbsolutePath("src/test/resources/org/apache/xml/security/c14n/inExcl/example2_2_1.xml"));
    Node root = doc.getElementsByTagNameNS("http://example.net", "elem2").item(0);
    Canonicalizer20010315Excl c = new Canonicalizer20010315ExclWithComments();
    byte[] reference = JavaUtils.getBytesFromFile(getAbsolutePath("src/test/resources/org/apache/xml/security/c14n/inExcl/example2_2_c14nized_exclusive.xml"));
    byte[] result = c.engineCanonicalizeSubTree(root);
    boolean equals = java.security.MessageDigest.isEqual(reference, result);
    assertTrue(equals);
}
Also used : Canonicalizer20010315Excl(org.apache.xml.security.c14n.implementations.Canonicalizer20010315Excl) Canonicalizer20010315ExclWithComments(org.apache.xml.security.c14n.implementations.Canonicalizer20010315ExclWithComments) Node(org.w3c.dom.Node) Document(org.w3c.dom.Document)

Aggregations

Canonicalizer20010315ExclWithComments (org.apache.xml.security.c14n.implementations.Canonicalizer20010315ExclWithComments)6 Canonicalizer20010315Excl (org.apache.xml.security.c14n.implementations.Canonicalizer20010315Excl)5 Document (org.w3c.dom.Document)5 Node (org.w3c.dom.Node)4 Element (org.w3c.dom.Element)2 XPath (javax.xml.xpath.XPath)1 XPathFactory (javax.xml.xpath.XPathFactory)1 CanonicalizationException (org.apache.xml.security.c14n.CanonicalizationException)1 XMLSecurityException (org.apache.xml.security.exceptions.XMLSecurityException)1 XMLSignatureInput (org.apache.xml.security.signature.XMLSignatureInput)1 DSNamespaceContext (org.apache.xml.security.test.dom.DSNamespaceContext)1 InclusiveNamespaces (org.apache.xml.security.transforms.params.InclusiveNamespaces)1 NodeList (org.w3c.dom.NodeList)1