summaryrefslogtreecommitdiffstats
path: root/pki/base/util/test/com/netscape/security/util
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/test/com/netscape/security/util')
-rw-r--r--pki/base/util/test/com/netscape/security/util/BMPStringTest.java274
-rw-r--r--pki/base/util/test/com/netscape/security/util/IA5StringTest.java273
-rw-r--r--pki/base/util/test/com/netscape/security/util/JSSUtil.java73
-rw-r--r--pki/base/util/test/com/netscape/security/util/PrintableStringTest.java290
-rw-r--r--pki/base/util/test/com/netscape/security/util/StringTestUtil.java79
-rw-r--r--pki/base/util/test/com/netscape/security/util/TeletexStringTest.java273
-rw-r--r--pki/base/util/test/com/netscape/security/util/UTF8StringTest.java262
-rw-r--r--pki/base/util/test/com/netscape/security/util/UniversalStringTest.java262
8 files changed, 0 insertions, 1786 deletions
diff --git a/pki/base/util/test/com/netscape/security/util/BMPStringTest.java b/pki/base/util/test/com/netscape/security/util/BMPStringTest.java
deleted file mode 100644
index ffe13b238..000000000
--- a/pki/base/util/test/com/netscape/security/util/BMPStringTest.java
+++ /dev/null
@@ -1,274 +0,0 @@
-package com.netscape.security.util;
-
-import netscape.security.util.DerValue;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-public class BMPStringTest {
-
- public byte tag = DerValue.tag_BMPString;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- String input = StringTestUtil.NULL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/IA5StringTest.java b/pki/base/util/test/com/netscape/security/util/IA5StringTest.java
deleted file mode 100644
index dd0af242c..000000000
--- a/pki/base/util/test/com/netscape/security/util/IA5StringTest.java
+++ /dev/null
@@ -1,273 +0,0 @@
-package com.netscape.security.util;
-
-import java.io.IOException;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-import sun.security.util.DerValue;
-
-public class IA5StringTest {
-
- public byte tag = DerValue.tag_IA5String;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- String input = StringTestUtil.NULL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(DerValue.tag_UTF8String, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/JSSUtil.java b/pki/base/util/test/com/netscape/security/util/JSSUtil.java
deleted file mode 100644
index bbbabbf14..000000000
--- a/pki/base/util/test/com/netscape/security/util/JSSUtil.java
+++ /dev/null
@@ -1,73 +0,0 @@
-package com.netscape.security.util;
-
-import netscape.security.util.DerValue;
-
-import org.mozilla.jss.asn1.ASN1Template;
-import org.mozilla.jss.asn1.ASN1Util;
-import org.mozilla.jss.asn1.ASN1Value;
-import org.mozilla.jss.asn1.BMPString;
-import org.mozilla.jss.asn1.IA5String;
-import org.mozilla.jss.asn1.PrintableString;
-import org.mozilla.jss.asn1.Tag;
-import org.mozilla.jss.asn1.TeletexString;
-import org.mozilla.jss.asn1.UTF8String;
-import org.mozilla.jss.asn1.UniversalString;
-
-public class JSSUtil {
-
- public static byte[] encode(byte tag, String string) throws Exception {
- ASN1Value value;
-
- switch (tag) {
- case DerValue.tag_BMPString:
- value = new BMPString(string);
- break;
- case DerValue.tag_IA5String:
- value = new IA5String(string);
- break;
- case DerValue.tag_PrintableString:
- value = new PrintableString(string);
- break;
- case DerValue.tag_T61String:
- value = new TeletexString(string);
- break;
- case DerValue.tag_UniversalString:
- value = new UniversalString(string);
- break;
- case DerValue.tag_UTF8String:
- value = new UTF8String(string);
- break;
- default:
- throw new Exception("Unsupported tag: " + tag);
- }
- return ASN1Util.encode(value);
- }
-
- public static String decode(byte tag, byte[] bytes) throws Exception {
- ASN1Template template;
-
- switch (tag) {
- case DerValue.tag_BMPString:
- template = new BMPString.Template();
- break;
- case DerValue.tag_IA5String:
- template = new IA5String.Template();
- break;
- case DerValue.tag_PrintableString:
- template = new PrintableString.Template();
- break;
- case DerValue.tag_T61String:
- template = new TeletexString.Template();
- break;
- case DerValue.tag_UniversalString:
- template = new UniversalString.Template();
- break;
- case DerValue.tag_UTF8String:
- template = new UTF8String.Template();
- break;
- default:
- throw new Exception("Unsupported tag: " + tag);
- }
- return ASN1Util.decode(new Tag(Tag.UNIVERSAL, tag), template, bytes).toString();
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/PrintableStringTest.java b/pki/base/util/test/com/netscape/security/util/PrintableStringTest.java
deleted file mode 100644
index 5808a2650..000000000
--- a/pki/base/util/test/com/netscape/security/util/PrintableStringTest.java
+++ /dev/null
@@ -1,290 +0,0 @@
-package com.netscape.security.util;
-
-import java.io.IOException;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-import sun.security.util.DerValue;
-
-public class PrintableStringTest {
-
- public byte tag = DerValue.tag_PrintableString;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- byte[] data = { 0x13, 0x01, 0x00 };
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- String expected = ""; // skip null chars (bug 359010)
- System.out.println(" - expected: [" + expected + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(expected, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(DerValue.tag_UTF8String, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(DerValue.tag_UTF8String, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, StringTestUtil.MULTIBYTE_CHARS);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(DerValue.tag_UTF8String, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.PRINTABLE_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.PRINTABLE_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/StringTestUtil.java b/pki/base/util/test/com/netscape/security/util/StringTestUtil.java
deleted file mode 100644
index 16810581c..000000000
--- a/pki/base/util/test/com/netscape/security/util/StringTestUtil.java
+++ /dev/null
@@ -1,79 +0,0 @@
-package com.netscape.security.util;
-
-import netscape.security.util.DerInputStream;
-import netscape.security.util.DerOutputStream;
-import netscape.security.util.DerValue;
-
-public class StringTestUtil {
-
- public final static String NULL_CHARS = "\u0000";
-
- public final static String PRINTABLE_CHARS =
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 \'()+,-./:=?";
-
- public final static String NON_PRINTABLE_CHARS = "\"\\";
-
- public final static String CONTROL_CHARS = "\b\t\n\f\r";
-
- public final static String MULTIBYTE_CHARS = "我爱你"; // I love you
-
- public static String toString(byte[] array) {
-
- StringBuffer sb = new StringBuffer();
- for (int i = 0; i < array.length; i++) {
- if (i > 0)
- sb.append(" ");
- sb.append(Integer.toHexString(0xff & array[i] | 0x100).substring(1).toUpperCase());
- }
-
- return sb.toString();
- }
-
- public static byte[] normalizeUnicode(byte[] data) throws Exception {
-
- DerValue value = new DerValue(data);
- byte[] tmp = value.data.toByteArray();
-
- if (tmp[0] == -2 && tmp[1] == -1) { // remove optional big-endian byte-order mark
-
- byte tag = value.tag;
- int length = value.length() - 2;
-
- DerOutputStream os = new DerOutputStream();
- os.putTag((byte) 0, false, tag);
- os.putLength(length);
- os.write(tmp, 2, length);
-
- return os.toByteArray();
- }
-
- return data;
- }
-
- public static byte[] encode(byte tag, String string) throws Exception {
- DerOutputStream os = new DerOutputStream();
- os.putStringType(tag, string);
- return os.toByteArray();
- }
-
- public static String decode(byte tag, byte[] bytes) throws Exception {
- DerInputStream is = new DerInputStream(bytes);
-
- switch (tag) {
- case DerValue.tag_BMPString:
- return is.getBMPString();
- case DerValue.tag_IA5String:
- return is.getIA5String();
- case DerValue.tag_PrintableString:
- return is.getPrintableString();
- case DerValue.tag_T61String:
- return is.getT61String();
- case DerValue.tag_UniversalString:
- return is.getUniversalString();
- case DerValue.tag_UTF8String:
- return is.getDerValue().getUTF8String();
- default:
- throw new Exception("Unsupported tag: " + tag);
- }
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/TeletexStringTest.java b/pki/base/util/test/com/netscape/security/util/TeletexStringTest.java
deleted file mode 100644
index 69f46c220..000000000
--- a/pki/base/util/test/com/netscape/security/util/TeletexStringTest.java
+++ /dev/null
@@ -1,273 +0,0 @@
-package com.netscape.security.util;
-
-import java.io.IOException;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-import sun.security.util.DerValue;
-
-public class TeletexStringTest {
-
- public byte tag = DerValue.tag_T61String;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- String input = StringTestUtil.NULL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(DerValue.tag_UTF8String, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: IOException");
-
- try {
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.fail();
-
- } catch (Exception e) {
- System.out.println(" - actual : " + e.getClass().getSimpleName());
- Assert.assertTrue(e instanceof IOException);
- }
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/UTF8StringTest.java b/pki/base/util/test/com/netscape/security/util/UTF8StringTest.java
deleted file mode 100644
index 6bffb28b6..000000000
--- a/pki/base/util/test/com/netscape/security/util/UTF8StringTest.java
+++ /dev/null
@@ -1,262 +0,0 @@
-package com.netscape.security.util;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-import sun.security.util.DerValue;
-
-public class UTF8StringTest {
-
- public byte tag = DerValue.tag_UTF8String;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, "");
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, "");
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- String input = StringTestUtil.NULL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}
diff --git a/pki/base/util/test/com/netscape/security/util/UniversalStringTest.java b/pki/base/util/test/com/netscape/security/util/UniversalStringTest.java
deleted file mode 100644
index 5f09f1f8e..000000000
--- a/pki/base/util/test/com/netscape/security/util/UniversalStringTest.java
+++ /dev/null
@@ -1,262 +0,0 @@
-package com.netscape.security.util;
-
-import org.junit.Test;
-import org.junit.Assert;
-
-import sun.security.util.DerValue;
-
-public class UniversalStringTest {
-
- public byte tag = DerValue.tag_UniversalString;
-
- @Test
- public void testEncodingEmptyString() throws Exception {
-
- String string = "";
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingEmptyString() throws Exception {
-
- String input = "";
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNullCharacters() throws Exception {
-
- String string = StringTestUtil.NULL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- actual = StringTestUtil.normalizeUnicode(actual);
- System.out.println(" - norm. : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNullCharacters() throws Exception {
-
- String input = StringTestUtil.NULL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingNonPrintableCharacters() throws Exception {
-
- String string = StringTestUtil.NON_PRINTABLE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingNonPrintableCharacters() throws Exception {
-
- String input = StringTestUtil.NON_PRINTABLE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + input + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + output + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingControlCharacters() throws Exception {
-
- String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Encoding: [" + StringTestUtil.toString(string.getBytes()) + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingControlCharacters() throws Exception {
-
- String input = StringTestUtil.CONTROL_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingMultibyteCharacters() throws Exception {
-
- String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Encoding: [" + string + "]");
-
- byte[] expected = JSSUtil.encode(tag, string);
- System.out.println(" - expected: " + StringTestUtil.toString(expected));
-
- byte[] actual = StringTestUtil.encode(tag, string);
- System.out.println(" - actual : " + StringTestUtil.toString(actual));
-
- Assert.assertArrayEquals(expected, actual);
- }
-
- @Test
- public void testDecodingMultibyteCharacters() throws Exception {
-
- String input = StringTestUtil.MULTIBYTE_CHARS;
- byte[] data = JSSUtil.encode(tag, input);
-
- System.out.println("Decoding: [" + StringTestUtil.toString(data) + "]");
-
- System.out.println(" - expected: [" + StringTestUtil.toString(input.getBytes()) + "]");
-
- String output = StringTestUtil.decode(tag, data);
- System.out.println(" - actual : [" + StringTestUtil.toString(output.getBytes()) + "]");
-
- Assert.assertEquals(input, output);
- }
-
- @Test
- public void testEncodingTime() throws Exception {
-
- System.out.println("Encoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.encode(tag, string);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.encode(tag, string);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-
- @Test
- public void testDecodingTime() throws Exception {
-
- System.out.println("Decoding time:");
-
- String string = StringTestUtil.NULL_CHARS +
- StringTestUtil.PRINTABLE_CHARS +
- StringTestUtil.NON_PRINTABLE_CHARS +
- StringTestUtil.CONTROL_CHARS +
- StringTestUtil.MULTIBYTE_CHARS;
-
- byte[] data = JSSUtil.encode(tag, string);
-
- long t0 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- JSSUtil.decode(tag, data);
-
- long t1 = System.currentTimeMillis();
-
- for (int i = 0; i < 10000; i++)
- StringTestUtil.decode(tag, data);
-
- long t2 = System.currentTimeMillis();
-
- long time1 = t1 - t0;
- long time2 = t2 - t1;
-
- System.out.println(" - JSS : " + time1 + " ms");
- System.out.println(" - Internal: " + time2 + " ms");
- }
-}