summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/uic/barcode/asn1/test/UperEncodeStringCustomAlphabetTest.java
blob: 557fad180ccd84ad8390fa7038d41db8a53a8d44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package org.uic.barcode.asn1.test;

import static org.junit.Assert.assertEquals;

import java.util.logging.Level;

import org.junit.Before;
import org.junit.Test;
import org.uic.barcode.asn1.datatypes.Asn1Optional;
import org.uic.barcode.asn1.datatypes.CharacterRestriction;
import org.uic.barcode.asn1.datatypes.FieldOrder;
import org.uic.barcode.asn1.datatypes.RestrictedString;
import org.uic.barcode.asn1.datatypes.Sequence;
import org.uic.barcode.asn1.uper.UperEncoder;
import org.uic.barcode.logger.LoggerFactory;


public class UperEncodeStringCustomAlphabetTest {

    /**
     * Example from the Standard on UPER.
     <pre>
        World-Schema DEFINITIONS AUTOMATIC TAGS ::= 
        BEGIN
        TestRecord ::= [APPLICATION 0] IMPLICIT SEQUENCE {
            value1 PrintableString ( FROM ("ACGT") ) OPTIONAL,
            value2 PrintableString ( FROM ("ACGT") ) OPTIONAL
         }                                   
        END
        
        rec1value TestRecord ::= {
          value1 "ACGT",
          value2 "ACTGCATCGA"
        }
    </pre>
     */
    @Sequence
    public static class TestRecord {
    	   	
    	@FieldOrder(order = 0)
    	@RestrictedString(value = CharacterRestriction.VisibleString, alphabet = GenAlphabet.class)
    	@Asn1Optional() String value1;
    	
    	@FieldOrder(order = 1)
    	@RestrictedString(value = CharacterRestriction.VisibleString, alphabet = GenAlphabet.class)
    	@Asn1Optional() String value2;

        public TestRecord() {
        }

        public TestRecord(String v1, String v2) {
        	this.value1 = v1;
        	this.value2 = v2;
        }
    }

	@Before public void prepare() {	
		LoggerFactory.setActivateConsoleLog(true);
	}

    @Test public void testEncode() throws IllegalArgumentException, IllegalAccessException {
    	
  	
        TestRecord record = new TestRecord("ACGT", "ACTGCATCGA");
        byte[] encoded = UperEncoder.encode(record);
        String hex = UperEncoder.hexStringFromBytes(encoded);
        UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));
        assertEquals("C106C2879360",hex); 
        
    }
    
    
    @Test public void testDecode() throws IllegalArgumentException, IllegalAccessException {
    	
        TestRecord record = new TestRecord("ACGT", "ACTGCATCGA");
        byte[] encoded = UperEncoder.encode(record);
        String hex = UperEncoder.hexStringFromBytes(encoded);
        UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));
        assertEquals("C106C2879360",hex); 
        TestRecord result = UperEncoder.decode(encoded, TestRecord.class);
        assertEquals(result.value1,record.value1); 
        assertEquals(result.value2,record.value2); 
    } 
    
    

}