blob: 4065d30bfedcf5e0e21c10b2d112a7b3447a2cf1 [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.secure_val;
import static org.junit.Assert.assertNull;
import java.io.FileInputStream;
import javax.xml.parsers.DocumentBuilder;
import org.apache.xml.security.keys.KeyInfo;
import org.apache.xml.security.utils.XMLUtils;
import org.w3c.dom.Document;
/**
* This is a test for a Retrieval Method pointing to another Retrieval Method (forbidden under
* secure validation).
*/
public class ForbiddenRetrievalMethodTest {
private static final String BASEDIR = System.getProperty("basedir");
private static final String SEP = System.getProperty("file.separator");
public ForbiddenRetrievalMethodTest() {
org.apache.xml.security.Init.init();
}
@org.junit.Test
public void testMultipleRetrievalMethods() throws Exception {
FileInputStream fis = null;
String filename = "src/test/resources/org/apache/xml/security/keyresolver/retrievalmethod3.xml";
if (BASEDIR != null && !"".equals(BASEDIR)) {
fis = new FileInputStream(BASEDIR + SEP + filename);
} else {
fis = new FileInputStream(filename);
}
DocumentBuilder db = XMLUtils.createDocumentBuilder(false);
Document doc = db.parse(fis);
KeyInfo keyInfo = new KeyInfo(doc.getDocumentElement(), null);
keyInfo.setSecureValidation(true);
// Check neither of these give a StackOverflowError.
assertNull(keyInfo.getPublicKey());
assertNull(keyInfo.getX509Certificate());
}
}