![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.asn1.test.MonetaryLimitUnitTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.asn1.test;
import java.io.IOException;
import org.bouncycastle.asn1.ASN1InputStream;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.isismtt.x509.MonetaryLimit;
public class MonetaryLimitUnitTest
extends ASN1UnitTest
{
public String getName()
{
return "MonetaryLimit";
}
public void performTest()
throws Exception
{
String currency = "AUD";
int amount = 1;
int exponent = 2;
MonetaryLimit limit = new MonetaryLimit(currency, amount, exponent);
checkConstruction(limit, currency, amount, exponent);
limit = MonetaryLimit.getInstance(null);
if (limit != null)
{
fail("null getInstance() failed.");
}
try
{
MonetaryLimit.getInstance(new Object());
fail("getInstance() failed to detect bad object.");
}
catch (IllegalArgumentException e)
{
// expected
}
}
private void checkConstruction(
MonetaryLimit limit,
String currency,
int amount,
int exponent)
throws IOException
{
checkValues(limit, currency, amount, exponent);
limit = MonetaryLimit.getInstance(limit);
checkValues(limit, currency, amount, exponent);
ASN1InputStream aIn = new ASN1InputStream(limit.toASN1Primitive().getEncoded());
ASN1Sequence seq = (ASN1Sequence)aIn.readObject();
limit = MonetaryLimit.getInstance(seq);
checkValues(limit, currency, amount, exponent);
}
private void checkValues(
MonetaryLimit limit,
String currency,
int amount,
int exponent)
{
checkMandatoryField("currency", currency, limit.getCurrency());
checkMandatoryField("amount", amount, limit.getAmount().intValue());
checkMandatoryField("exponent", exponent, limit.getExponent().intValue());
}
public static void main(
String[] args)
{
runTest(new MonetaryLimitUnitTest());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy