aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/OkoProtocolDecoderTest.java
blob: a13839d5ba247fe827900fd48adbee4693b5356b (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
25
26
27
package org.traccar.protocol;

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

public class OkoProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        OkoProtocolDecoder decoder = new OkoProtocolDecoder(new OkoProtocol());

        verifyPosition(decoder, text(
                "{861001001016415,115031.000,A,4804.101180,N,02255.227002,E,4.121,111.0,211215,6,0.00,F7,13.6,1,00"));

        verifyPosition(decoder, text(
                "{132810.000,A,4926.4243,N,03203.6831,E,25.0,183,131011,07,5.69,05,14.1,1,82,3N5"));

        verifyPosition(decoder, text(
                "{115034.000,A,4804.098944,N,02255.233436,E,7.858,120.9,211215,7,0.00,F7,13.7,1,00"));

        verifyPosition(decoder, text(
                "{115038.000,A,4804.091227,N,02255.250213,E,17.621,128.1,211215,8,0.00,00,13.7,2,00"));

    }

}