org.bouncycastle.asn1.isismtt.test.NamingAuthorityUnitTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15on Show documentation
Show all versions of bcutil-jdk15on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up.
The newest version!
package org.bouncycastle.asn1.isismtt.test;
import java.io.IOException;
import org.bouncycastle.asn1.ASN1InputStream;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.isismtt.x509.NamingAuthority;
import org.bouncycastle.asn1.util.test.ASN1UnitTest;
import org.bouncycastle.asn1.x500.DirectoryString;
public class NamingAuthorityUnitTest
extends ASN1UnitTest
{
public String getName()
{
return "NamingAuthority";
}
public void performTest()
throws Exception
{
ASN1ObjectIdentifier namingAuthorityID = new ASN1ObjectIdentifier("1.2.3");
String namingAuthorityURL = "url";
DirectoryString namingAuthorityText = new DirectoryString("text");
NamingAuthority auth = new NamingAuthority(namingAuthorityID, namingAuthorityURL, namingAuthorityText);
checkConstruction(auth, namingAuthorityID, namingAuthorityURL, namingAuthorityText);
auth = new NamingAuthority(null, namingAuthorityURL, namingAuthorityText);
checkConstruction(auth, null, namingAuthorityURL, namingAuthorityText);
auth = new NamingAuthority(namingAuthorityID, null, namingAuthorityText);
checkConstruction(auth, namingAuthorityID, null, namingAuthorityText);
auth = new NamingAuthority(namingAuthorityID, namingAuthorityURL, null);
checkConstruction(auth, namingAuthorityID, namingAuthorityURL, null);
auth = NamingAuthority.getInstance(null);
if (auth != null)
{
fail("null getInstance() failed.");
}
try
{
NamingAuthority.getInstance(new Object());
fail("getInstance() failed to detect bad object.");
}
catch (IllegalArgumentException e)
{
// expected
}
}
private void checkConstruction(
NamingAuthority auth,
ASN1ObjectIdentifier namingAuthorityID,
String namingAuthorityURL,
DirectoryString namingAuthorityText)
throws IOException
{
checkValues(auth, namingAuthorityID, namingAuthorityURL, namingAuthorityText);
auth = NamingAuthority.getInstance(auth);
checkValues(auth, namingAuthorityID, namingAuthorityURL, namingAuthorityText);
ASN1InputStream aIn = new ASN1InputStream(auth.toASN1Primitive().getEncoded());
ASN1Sequence seq = (ASN1Sequence)aIn.readObject();
auth = NamingAuthority.getInstance(seq);
checkValues(auth, namingAuthorityID, namingAuthorityURL, namingAuthorityText);
}
private void checkValues(
NamingAuthority auth,
ASN1ObjectIdentifier namingAuthorityId,
String namingAuthorityURL,
DirectoryString namingAuthorityText)
{
checkOptionalField("namingAuthorityId", namingAuthorityId, auth.getNamingAuthorityId());
checkOptionalField("namingAuthorityURL", namingAuthorityURL, auth.getNamingAuthorityUrl());
checkOptionalField("namingAuthorityText", namingAuthorityText, auth.getNamingAuthorityText());
}
public static void main(
String[] args)
{
runTest(new NamingAuthorityUnitTest());
}
}