blob: 1559fce881368b9a1e9049075112e2c07d5b31c6 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.xml.security.test.dom.c14n.implementations;
import static org.junit.Assert.assertTrue;
import java.io.File;
import org.apache.xml.security.signature.Reference;
import org.apache.xml.security.signature.XMLSignature;
import org.apache.xml.security.test.dom.interop.InteropTestBase;
import org.apache.xml.security.utils.Constants;
import org.apache.xml.security.utils.XMLUtils;
import org.w3c.dom.Element;
/**
* Interop test for exclusive canonical XML.
*
*/
public class ExclusiveC14NInteropTest extends InteropTestBase {
static org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(ExclusiveC14NInteropTest.class);
static {
org.apache.xml.security.Init.init();
}
/**
* Constructor ExclusiveC14NInteropTest
*/
public ExclusiveC14NInteropTest() {
super();
}
/**
* Method test_Y1
*
* @throws Exception
*/
@org.junit.Test
public void test_Y1() throws Exception {
String success = t("src/test/resources/interop/c14n/Y1", "exc-signature.xml", true);
assertTrue(success, success == null);
}
/**
* Method test_Y2
*
* @throws Exception
*/
@org.junit.Test
public void test_Y2() throws Exception {
String success = t("src/test/resources/interop/c14n/Y2", "signature-joseph-exc.xml", false);
assertTrue(success, success == null);
}
/**
* Method test_Y3
*
* @throws Exception
*/
@org.junit.Test
public void test_Y3() throws Exception {
String success = t("src/test/resources/interop/c14n/Y3", "signature.xml", false);
assertTrue(success, success == null);
}
/**
* Method test_Y4
*
* @throws Exception
*/
@org.junit.Test
public void test_Y4() throws Exception {
String success = t("src/test/resources/interop/c14n/Y4", "signature.xml", true);
assertTrue(success, success == null);
}
@org.junit.Test
public void test_xfilter2() throws Exception {
String success = t("src/test/resources/interop/xfilter2/merlin-xpath-filter2-three", "sign-spec.xml", true);
assertTrue(success, success == null);
}
private String t(String directory, String file, boolean secureValidation) throws Exception {
String basedir = System.getProperty("basedir");
if (basedir != null && !"".equals(basedir)) {
directory = basedir + "/" + directory;
}
File f = new File(directory + "/" + file);
javax.xml.parsers.DocumentBuilder db = XMLUtils.createDocumentBuilder(false, false);
org.w3c.dom.Document doc = db.parse(f);
Element sigElement =
(Element) doc.getElementsByTagNameNS(Constants.SignatureSpecNS,
Constants._TAG_SIGNATURE).item(0);
XMLSignature signature = new XMLSignature(sigElement, f.toURI().toURL().toString(), secureValidation);
boolean verify =
signature.checkSignatureValue(signature.getKeyInfo().getPublicKey());
LOG.debug(" signature.checkSignatureValue finished: " + verify);
// if (!verify) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < signature.getSignedInfo().getLength(); i++) {
boolean refVerify =
signature.getSignedInfo().getVerificationResult(i);
//JavaUtils.writeBytesToFilename(directory + "/c14n-" + i + ".apache.html", signature.getSignedInfo().item(i).getHTMLRepresentation().getBytes());
if (refVerify) {
LOG.debug("Reference " + i + " was OK");
} else {
sb.append(i);
sb.append(" ");
//JavaUtils.writeBytesToFilename(directory + "/c14n-" + i + ".apache.txt", signature.getSignedInfo().item(i).getContentsAfterTransformation().getBytes());
//JavaUtils.writeBytesToFilename(directory + "/c14n-" + i + ".apache.html", signature.getSignedInfo().item(i).getHTMLRepresentation().getBytes());
Reference reference = signature.getSignedInfo().item(i);
int length = reference.getTransforms().getLength();
String algo = reference.getTransforms().item(length - 1).getURI();
LOG.debug("Reference " + i + " failed: " + algo);
}
}
String r = sb.toString().trim();
if (r.length() == 0) {
return null;
} else {
return r;
}
}
}