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

import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import org.junit.Test;
import org.traccar.ProtocolTest;

public class PstFrameEncoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        PstFrameEncoder encoder = new PstFrameEncoder();

        ByteBuf result = Unpooled.buffer();
        encoder.encode(null, binary("2FAF0B10059A0000B001022FAF0B10E91349A2AD3B1DAD2FF8A78228A58F"), result);
        verifyFrame(binary("282FAF0B10059A0000B001022FAF0B10E91349A2AD3B1DAD2FF8A7822768A58F29"), result);
    }

}