aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java
deleted file mode 100644
index 8064bc654..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ProcurationSyntaxUnitTest.java
+++ /dev/null
@@ -1,107 +0,0 @@
-package org.spongycastle.asn1.test;
-
-import java.io.IOException;
-
-import org.spongycastle.asn1.ASN1InputStream;
-import org.spongycastle.asn1.ASN1Integer;
-import org.spongycastle.asn1.ASN1Sequence;
-import org.spongycastle.asn1.isismtt.x509.ProcurationSyntax;
-import org.spongycastle.asn1.x500.DirectoryString;
-import org.spongycastle.asn1.x509.GeneralName;
-import org.spongycastle.asn1.x509.GeneralNames;
-import org.spongycastle.asn1.x509.IssuerSerial;
-import org.spongycastle.asn1.x509.X509Name;
-
-public class ProcurationSyntaxUnitTest
- extends ASN1UnitTest
-{
- public String getName()
- {
- return "ProcurationSyntax";
- }
-
- public void performTest()
- throws Exception
- {
- String country = "AU";
- DirectoryString typeOfSubstitution = new DirectoryString("substitution");
- GeneralName thirdPerson = new GeneralName(new X509Name("CN=thirdPerson"));
- IssuerSerial certRef = new IssuerSerial(new GeneralNames(new GeneralName(new X509Name("CN=test"))), new ASN1Integer(1));
-
- ProcurationSyntax procuration = new ProcurationSyntax(country, typeOfSubstitution, thirdPerson);
-
- checkConstruction(procuration, country, typeOfSubstitution, thirdPerson, null);
-
- procuration = new ProcurationSyntax(country, typeOfSubstitution, certRef);
-
- checkConstruction(procuration, country, typeOfSubstitution, null, certRef);
-
- procuration = new ProcurationSyntax(null, typeOfSubstitution, certRef);
-
- checkConstruction(procuration, null, typeOfSubstitution, null, certRef);
-
- procuration = new ProcurationSyntax(country, null, certRef);
-
- checkConstruction(procuration, country, null, null, certRef);
-
- procuration = ProcurationSyntax.getInstance(null);
-
- if (procuration != null)
- {
- fail("null getInstance() failed.");
- }
-
- try
- {
- ProcurationSyntax.getInstance(new Object());
-
- fail("getInstance() failed to detect bad object.");
- }
- catch (IllegalArgumentException e)
- {
- // expected
- }
- }
-
- private void checkConstruction(
- ProcurationSyntax procuration,
- String country,
- DirectoryString typeOfSubstitution,
- GeneralName thirdPerson,
- IssuerSerial certRef)
- throws IOException
- {
- checkValues(procuration, country, typeOfSubstitution, thirdPerson, certRef);
-
- procuration = ProcurationSyntax.getInstance(procuration);
-
- checkValues(procuration, country, typeOfSubstitution, thirdPerson, certRef);
-
- ASN1InputStream aIn = new ASN1InputStream(procuration.toASN1Object().getEncoded());
-
- ASN1Sequence seq = (ASN1Sequence)aIn.readObject();
-
- procuration = ProcurationSyntax.getInstance(seq);
-
- checkValues(procuration, country, typeOfSubstitution, thirdPerson, certRef);
- }
-
- private void checkValues(
- ProcurationSyntax procuration,
- String country,
- DirectoryString typeOfSubstitution,
- GeneralName thirdPerson,
- IssuerSerial certRef)
- {
- checkOptionalField("country", country, procuration.getCountry());
- checkOptionalField("typeOfSubstitution", typeOfSubstitution, procuration.getTypeOfSubstitution());
- checkOptionalField("thirdPerson", thirdPerson, procuration.getThirdPerson());
- checkOptionalField("certRef", certRef, procuration.getCertRef());
- }
-
- public static void main(
- String[] args)
- {
- runTest(new ProcurationSyntaxUnitTest());
- }
-}