From e023e674020f1a435f7b8c8b9276704f576ea6e5 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Mon, 29 Mar 2021 14:08:45 +0200 Subject: structure change 1 --- .../asn1/test/UperEncodeEnumExtensionTest.java | 146 --------------------- 1 file changed, 146 deletions(-) delete mode 100644 src/org/uic/barcode/asn1/test/UperEncodeEnumExtensionTest.java (limited to 'src/org/uic/barcode/asn1/test/UperEncodeEnumExtensionTest.java') diff --git a/src/org/uic/barcode/asn1/test/UperEncodeEnumExtensionTest.java b/src/org/uic/barcode/asn1/test/UperEncodeEnumExtensionTest.java deleted file mode 100644 index a2ecbe1..0000000 --- a/src/org/uic/barcode/asn1/test/UperEncodeEnumExtensionTest.java +++ /dev/null @@ -1,146 +0,0 @@ -package org.uic.barcode.asn1.test; - -import static org.junit.Assert.assertEquals; - -import java.util.logging.Level; - -import org.junit.Test; -import org.uic.barcode.asn1.datatypes.Asn1Optional; -import org.uic.barcode.asn1.datatypes.FieldOrder; -import org.uic.barcode.asn1.datatypes.HasExtensionMarker; -import org.uic.barcode.asn1.datatypes.IsExtension; -import org.uic.barcode.asn1.datatypes.Sequence; -import org.uic.barcode.asn1.uper.UperEncoder; - - -public class UperEncodeEnumExtensionTest { - - /*** Example from the Standard on UPER. -
-    World-Schema DEFINITIONS AUTOMATIC TAGS ::= 
-    BEGIN
-    TestRecord ::= [APPLICATION 0] IMPLICIT SEQUENCE {
-            value EnumType DEFAULT value2
-    }
-
-    EnumType ::= ENUMERATED {	
-		value1 (0),
-		value2 (1)
-		,...
-    }	                                  
-    END
-    
- */ - @Sequence - public static class TestRecord { - - @FieldOrder(order = 0) - @Asn1Optional EnumType value = EnumType.value1; - public TestRecord() {} - public void setValue(EnumType value) { - this.value = value; - } - } - - - /*** Example from the Standard on UPER. - TestRecord ::= [APPLICATION 0] IMPLICIT SEQUENCE { - value EnumType DEFAULT value2, - } - - EnumType ::= ENUMERATED { - value1 (0), - value2 (1) - ,... - value3 (2) - } - */ - @Sequence - public static class TestRecordExtended { - - @Asn1Optional EnumTypeExtended value = EnumTypeExtended.value3; - - public TestRecordExtended() {} - - public void setValue(EnumTypeExtended value) { - this.value = value; - } - - - } - - @HasExtensionMarker - public enum EnumType { - value1("value1"), - value2("value2"); - - public String text; - - EnumType(String text) { - this.text = text; - } - - public String toString(){ - return text; - } - } - - - @HasExtensionMarker - public enum EnumTypeExtended { - value1("value1"), - value2("value2"), - - @IsExtension - value3("value3"); - - public String text; - - EnumTypeExtended(String text) { - this.text = text; - } - - public String toString(){ - return text; - } - } - - - - @Test public void testExtension() throws IllegalArgumentException, IllegalAccessException { - - TestRecordExtended record = new TestRecordExtended(); - record.setValue(EnumTypeExtended.value3); - byte[] encoded = UperEncoder.encode(record); - String hex = UperEncoder.hexStringFromBytes(encoded); - UperEncoder.logger.log(Level.FINEST,String.format("Enum value3: data hex: %s", hex)); - assertEquals("C000", hex); - } - - @Test public void testExtensionDecoding() throws IllegalArgumentException, IllegalAccessException { - - TestRecordExtended record = new TestRecordExtended(); - record.setValue(EnumTypeExtended.value3); - byte[] encoded = UperEncoder.encode(record); - String hex = UperEncoder.hexStringFromBytes(encoded); - UperEncoder.logger.log(Level.FINEST,String.format("Enum value3: data hex: %s", hex)); - assertEquals("C000", hex); - - TestRecordExtended result = UperEncoder.decode(encoded, TestRecordExtended.class); - assertEquals(result.value,EnumTypeExtended.value3); - } - - @Test public void testUnknownExtensionDecoding() throws IllegalArgumentException, IllegalAccessException { - - TestRecordExtended record = new TestRecordExtended(); - byte[] encoded = UperEncoder.encode(record); - String hex = UperEncoder.hexStringFromBytes(encoded); - UperEncoder.logger.log(Level.FINEST,String.format("Enum value3: data hex: %s", hex)); - assertEquals("C000", hex); - - TestRecord result = UperEncoder.decode(encoded, TestRecord.class); - assert(result.value == null); - } - - -} -- cgit v1.2.3