aboutsummaryrefslogtreecommitdiff
path: root/gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java')
-rw-r--r--gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java b/gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java
new file mode 100644
index 00000000..873b9032
--- /dev/null
+++ b/gnu/testlet/gnu/java/security/hash/TestOfHashFactory.java
@@ -0,0 +1,59 @@
+/* TestOfHashFactory.java --
+ Copyright (C) 2006 Free Software Foundation, Inc.
+This file is part of Mauve.
+
+Mauve is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+Mauve is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Mauve; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+*/
+
+// Tags: GNU-CRYPTO JDK1.4
+
+package gnu.testlet.gnu.java.security.hash;
+
+import gnu.java.security.hash.HashFactory;
+import gnu.java.security.hash.IMessageDigest;
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+import java.util.Iterator;
+
+/**
+ * Conformance tests for the HashFactory implementation.
+ */
+public class TestOfHashFactory implements Testlet
+{
+ public void test(TestHarness harness)
+ {
+ harness.checkPoint("TestOfHashFactory");
+ String hash;
+ IMessageDigest algorithm;
+ for (Iterator it = HashFactory.getNames().iterator(); it.hasNext();)
+ {
+ hash = (String) it.next();
+ try
+ {
+ algorithm = HashFactory.getInstance(hash);
+ harness.check(algorithm != null, "getInstance("
+ + String.valueOf(hash) + ")");
+ }
+ catch (InternalError x)
+ {
+ harness.debug(x);
+ harness.fail("TestOfHashFactory.getInstance("
+ + String.valueOf(hash) + ")");
+ }
+ }
+ }
+} \ No newline at end of file