blob: 6d26356a54cb966a1a4255fbedd6fa597fc598d0 [file] [log] [blame]
/*
* Copyright 2006 The Apache Software Foundation.
*
* Licensed 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.
*
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
*/
package javax.xml.crypto.test.dsig;
import javax.xml.crypto.dsig.*;
import java.security.*;
import junit.framework.*;
/**
* Unit test for javax.xml.crypto.dsig.DigestMethod
*
* @version $Id$
* @author Valerie Peng
*/
public class DigestMethodTest extends TestCase {
private XMLSignatureFactory factory;
private static final String MD_ALGOS[] = {
DigestMethod.SHA1
};
public DigestMethodTest() {
super("DigestMethodTest");
}
public DigestMethodTest(String name) {
super(name);
}
public void setUp() throws Exception {
factory = XMLSignatureFactory.getInstance
("DOM", new org.jcp.xml.dsig.internal.dom.XMLDSigRI());
}
public void tearDown() { }
public void testisFeatureSupported() throws Exception {
DigestMethod dm;
for (int i = 0; i < MD_ALGOS.length; i++) {
String algo = MD_ALGOS[i];
dm = factory.newDigestMethod(algo, null);
try {
dm.isFeatureSupported(null);
fail("Should raise a NPE for null feature");
} catch (NullPointerException npe) {}
assertTrue(!dm.isFeatureSupported("not supported"));
}
}
public void testConstructor() throws Exception {
// test DSigStructureFactory.newDigestMethod
// (String algorithm, AlgorithmParameterSpec params)
// for generating DigestMethod objects
DigestMethod dm;
for (int i = 0; i < MD_ALGOS.length; i++) {
String algo = MD_ALGOS[i];
dm = factory.newDigestMethod(algo, null);
assertEquals(dm.getAlgorithm(), algo);
assertNull(dm.getParameterSpec());
try {
dm = factory.newDigestMethod(algo,
new TestUtils.MyOwnDigestMethodParameterSpec());
fail("Should raise an IAPE for invalid parameters");
} catch (InvalidAlgorithmParameterException iape) {
} catch (Exception ex) {
fail("Should raise an IAPE instead of " + ex);
}
}
try {
dm = factory.newDigestMethod("non-existent",
null);
fail("Should raise an NSAE for non-existent algos");
} catch (NoSuchAlgorithmException nsae) {}
try {
dm = factory.newDigestMethod(null, null);
fail("Should raise a NPE for null algo");
} catch (NullPointerException npe) {}
}
}