aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/TlvProtocolDecoderTest.java
blob: 54d66dac949954dad10a92df63943912ad9ee7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.traccar.protocol;

import org.junit.Test;
import org.traccar.ProtocolTest;

public class TlvProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new TlvProtocolDecoder(null);

        verifyNull(decoder, binary(
                "30430f383630323437303330303934333931ff10393233323132323030303834353433340f533636385f415f56312e30315f454eff1130303a30433a45373a30303a30303a30300132"));

        verifyNull(decoder, binary(
                "30410f383630323437303330303934333931"));

        verifyNull(decoder, binary(
                "30420f3836303234373033303039343339310131"));

    }

}