blob: 3d053e74bf14b78803936a1e9af37699d683f465 (
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
|
package org.uic.barcode.test;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import org.junit.Test;
import org.uic.barcode.staticFrame.UTLAYDataRecord;
import org.uic.barcode.staticFrame.ticketLayoutBarcode.LayoutElement;
import org.uic.barcode.staticFrame.ticketLayoutBarcode.TicketLayout;
import org.uic.barcode.test.utils.SimpleTestTicketLayout;
import org.uic.barcode.test.utils.TestUtils;
import org.uic.barcode.ticket.EncodingFormatException;
public class TicketLayoutTest {
@Test public void testTicketLayout() throws IOException, EncodingFormatException{
UTLAYDataRecord tl1 = new UTLAYDataRecord();
TicketLayout layout = SimpleTestTicketLayout.getSimpleTestTicketLayout();
tl1.setLayout(layout);
byte[] encoded = null;
try {
encoded = tl1.encode();
} catch (IOException e) {
throw (e);
}
String hex = TestUtils.hexStringFromBytes(encoded);
assertEquals(hex,"555F544C41593031303034305243543230303031303130313031323030303030374DC3BC6C6C6572");
UTLAYDataRecord tl2 = new UTLAYDataRecord();
tl2.decode(tl1.encode());
assertEquals(tl1.toString(),tl2.toString());
compare(layout, tl2.getLayout());
}
public static void compare(TicketLayout layout1, TicketLayout layout2) {
assert(layout1.getLayoutStandard().equals(layout2.getLayoutStandard()));
for (LayoutElement e1: layout1.getElements() ) {
for (LayoutElement e2 :layout2.getElements()) {
boolean found = false;
if (e1.getLine() == e2.getLine() && e1.getColumn() == e2.getColumn()) {
found = true;
assert(e1.getText().equals(e2.getText()));
}
assert(found == true);
}
}
}
}
|