blob: 4c87bae4e33ccee83b8032cb35ce0e8122b6d7f9 (
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
88
89
90
91
|
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.
<pre>
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
</pre>
*/
@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());
}
}
|