From 425bd35c736b7e1c0dbe5b3f9162e195b3be6018 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Thu, 25 Feb 2021 11:02:26 +0100 Subject: - bug fix on TicketType Enum - duplicate function getDocument removed - issuedOnLine null value allowed - maven install added (required renaming of some packages) --- .../asn1/test/UperEncodeIntegerExtensionTest.java | 91 ---------------------- 1 file changed, 91 deletions(-) delete mode 100644 src/net/gcdc/asn1/test/UperEncodeIntegerExtensionTest.java (limited to 'src/net/gcdc/asn1/test/UperEncodeIntegerExtensionTest.java') diff --git a/src/net/gcdc/asn1/test/UperEncodeIntegerExtensionTest.java b/src/net/gcdc/asn1/test/UperEncodeIntegerExtensionTest.java deleted file mode 100644 index 4c87bae..0000000 --- a/src/net/gcdc/asn1/test/UperEncodeIntegerExtensionTest.java +++ /dev/null @@ -1,91 +0,0 @@ -package net.gcdc.asn1.test; - -import static org.junit.Assert.assertEquals; - -import java.util.logging.Level; - -import net.gcdc.asn1.datatypes.Asn1BigInteger; -import net.gcdc.asn1.datatypes.FieldOrder; -import net.gcdc.asn1.datatypes.HasExtensionMarker; -import net.gcdc.asn1.datatypes.IsExtension; -import net.gcdc.asn1.datatypes.Sequence; - -import net.gcdc.asn1.uper.UperEncoder; - -import org.junit.Test; - - -public class UperEncodeIntegerExtensionTest { - - /** - * Example from the Standard on UPER. -
-     TestRecord ::= [APPLICATION 0] IMPLICIT SEQUENCE {
-           number1 INTEGER,
-           ...,
-           number2 INTEGER,
-           number3 INTEGER 
-    }
-    
-    value TestRecord ::=  {     
-        value1       12345678909999899,
-        value2       5555555555,
-        value3       32001      
-       }
-    
-Encoding to the file 'data.uper' using PER UNALIGNED encoding rule...
-TestRecord SEQUENCE [root fieldcount (not encoded) = 1]
-  value1 INTEGER [length = 7.0]
-    12345678909999899
-  value2 INTEGER [length = 5.0]
-    5555555555
-  value3 INTEGER [length = 2.0]
-    32001
-Total encoded length = 20.2
-Encoded successfully in 21 bytes:
-8395EE2A 2EF8858D 81C18140 52C8C338 C0C09F40 40
-    
-    
-    
- */ - @Sequence - @HasExtensionMarker - public static class TestRecord { - - @FieldOrder(order = 0) - Asn1BigInteger value1; - - @FieldOrder(order = 2) - @IsExtension - Asn1BigInteger value3; - - @FieldOrder(order = 1) - @IsExtension - Asn1BigInteger value2; - - - public TestRecord() { - value1 = new Asn1BigInteger(12345678909999899L); - value2 = new Asn1BigInteger(5555555555L); - value3 = new Asn1BigInteger(32001L); - } - - - } - - - @Test public void test() throws IllegalArgumentException, IllegalAccessException { - - TestRecord record = new TestRecord(); - byte[] encoded = UperEncoder.encode(record); - TestRecord result = UperEncoder.decode(encoded, TestRecord.class); - assertEquals(result.value1.longValue(),record.value1.longValue()); - assertEquals(result.value2.longValue(),record.value2.longValue()); - assertEquals(result.value3.longValue(),record.value3.longValue()); - - - } - - - -} -- cgit v1.2.3