|
| 1 | +package com.rumpf.mapper; |
| 2 | + |
| 3 | +import com.rumpf.proto.PbField; |
| 4 | +import com.rumpf.proto.PbFieldType; |
| 5 | +import com.rumpf.proto.field.NotCompatibleFieldTypeException; |
| 6 | +import com.rumpf.proto.mapper.PbObjectMapper; |
| 7 | +import com.rumpf.sample.Person; |
| 8 | +import org.junit.jupiter.api.Assertions; |
| 9 | +import org.junit.jupiter.api.BeforeEach; |
| 10 | +import org.junit.jupiter.api.Test; |
| 11 | + |
| 12 | +import java.nio.ByteBuffer; |
| 13 | +import java.nio.charset.StandardCharsets; |
| 14 | + |
| 15 | +public class PbObjectMapperTest { |
| 16 | + |
| 17 | + private static class SampleClass1 { |
| 18 | + |
| 19 | + @PbField(field = 1, type = PbFieldType.INT32) |
| 20 | + private int id; |
| 21 | + |
| 22 | + @PbField(field = 2, type = PbFieldType.STRING) |
| 23 | + private String name; |
| 24 | + |
| 25 | + public SampleClass1() { |
| 26 | + id = -1; |
| 27 | + name = null; |
| 28 | + } |
| 29 | + |
| 30 | + public SampleClass1(int id, String name) { |
| 31 | + this.id = id; |
| 32 | + this.name = name; |
| 33 | + } |
| 34 | + |
| 35 | + public int getId() { |
| 36 | + return id; |
| 37 | + } |
| 38 | + |
| 39 | + public String getName() { |
| 40 | + return name; |
| 41 | + } |
| 42 | + |
| 43 | + public void setId(int id) { |
| 44 | + this.id = id; |
| 45 | + } |
| 46 | + |
| 47 | + public void setName(String name) { |
| 48 | + this.name = name; |
| 49 | + } |
| 50 | + } |
| 51 | + |
| 52 | + private PbObjectMapper mapper; |
| 53 | + |
| 54 | + @BeforeEach |
| 55 | + public void setup() { |
| 56 | + mapper = new PbObjectMapper(); |
| 57 | + } |
| 58 | + |
| 59 | + @Test |
| 60 | + public void objectMapperWriteTest() throws Exception { |
| 61 | + SampleClass1 sample = new SampleClass1(20, "Rumpfi"); |
| 62 | + byte[] expected = new byte[]{ 0x08, 0x14, 0x12, 0x06, 0x52, 0x75, 0x6D, 0x70, 0x66, 0x69}; |
| 63 | + |
| 64 | + byte[] result = mapper.write(sample); |
| 65 | + |
| 66 | + Assertions.assertArrayEquals(expected, result); |
| 67 | + } |
| 68 | + |
| 69 | + @Test |
| 70 | + public void objectMapperReadTest() throws Exception { |
| 71 | + byte[] sampleData = new byte[]{ 0x08, 0x14, 0x12, 0x06, 0x52, 0x75, 0x6D, 0x70, 0x66, 0x69}; |
| 72 | + |
| 73 | + SampleClass1 sampleObject = mapper.read(sampleData, SampleClass1.class); |
| 74 | + |
| 75 | + Assertions.assertAll( |
| 76 | + () -> Assertions.assertEquals(20, sampleObject.getId()), |
| 77 | + () -> Assertions.assertEquals("Rumpfi", sampleObject.getName()) |
| 78 | + ); |
| 79 | + } |
| 80 | + |
| 81 | + @Test |
| 82 | + public void writeObjectWithObjects() throws Exception { |
| 83 | + Person person = new Person(); |
| 84 | + |
| 85 | + person.setId(19465); |
| 86 | + person.setName("Christian Rumpf"); |
| 87 | + person.setEmail("christian.rumpf88@gmx.at"); |
| 88 | + |
| 89 | + person.addPhoneNumber("+433142.....", Person.PhoneType.WORK); |
| 90 | + person.addPhoneNumber("+43664.......", Person.PhoneType.MOBILE); |
| 91 | + |
| 92 | + byte[] expected = new byte[84]; |
| 93 | + ByteBuffer buffer = ByteBuffer.wrap(expected); |
| 94 | + |
| 95 | + buffer.put((byte)0x0A); // tag |
| 96 | + buffer.put((byte)0x0F); // length |
| 97 | + buffer.put("Christian Rumpf".getBytes(StandardCharsets.UTF_8)); |
| 98 | + |
| 99 | + buffer.put((byte) 0x10); // tag |
| 100 | + buffer.put((byte) 0x89); |
| 101 | + buffer.put((byte) 0x98); |
| 102 | + buffer.put((byte) 0x01); |
| 103 | + |
| 104 | + buffer.put((byte) 0x1A); // tag |
| 105 | + buffer.put((byte) 0x18); // length |
| 106 | + buffer.put("christian.rumpf88@gmx.at".getBytes(StandardCharsets.UTF_8)); |
| 107 | + |
| 108 | + buffer.put((byte) 0x22); // tag |
| 109 | + buffer.put((byte) 0x10); // length |
| 110 | + buffer.put((byte) 0x0A); // tag |
| 111 | + buffer.put((byte) 0x0C); // length |
| 112 | + buffer.put("+433142.....".getBytes(StandardCharsets.UTF_8)); |
| 113 | + buffer.put((byte) 0x10); // tag |
| 114 | + buffer.put((byte) 0x02); // WORK |
| 115 | + |
| 116 | + |
| 117 | + buffer.put((byte) 0x22); // tag |
| 118 | + buffer.put((byte) 0x11); // length |
| 119 | + buffer.put((byte) 0x0A); // tag |
| 120 | + buffer.put((byte) 0x0D); // length |
| 121 | + buffer.put("+43664.......".getBytes(StandardCharsets.UTF_8)); |
| 122 | + buffer.put((byte) 0x10); // tag |
| 123 | + buffer.put((byte) 0x00); // MOBILE |
| 124 | + |
| 125 | + |
| 126 | + |
| 127 | + byte[] result = mapper.write(person); |
| 128 | + |
| 129 | + Assertions.assertArrayEquals(expected, result); |
| 130 | + } |
| 131 | +} |
0 commit comments