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

import org.junit.Test;
import org.traccar.ProtocolDecoderTest;

public class TrackboxProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        TrackboxProtocolDecoder decoder = new TrackboxProtocolDecoder(new TrackboxProtocol());

        verifyNothing(decoder, text( "a=connect&v=11&i=111111111111111"));

        verifyPosition(decoder, text(
                "183457.999,5126.0247N,00002.8686E,5.2,70.4,3,57.63,32.11,17.32,150507,05"));

        verifyPosition(decoder, text(
                "183558.999,5126.3979N,00003.0745E,5.2,70.4,3,57.63,32.11,17.32,150507,05"));

    }

}