aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/OwnTracksProtocolDecoderTest.java
blob: c11670caef81681aad11b6ef7ef474021baaee7f (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
package org.traccar.protocol;

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

public class OwnTracksProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        OwnTracksProtocolDecoder decoder = new OwnTracksProtocolDecoder(new OwnTracksProtocol());

/*
 * I don'w know how to get JSON into that ...
 *
        verifyNull(decoder, request(
                "{ \"id\" : \"hello\" }"));

        verifyPosition(decoder, request(
                "{\"cog\":271,\"lon\":2.29513,\"acc\":5,\"vel\":61,\"vac\":21,\"lat\":48.85833,\"tst\":1497349316,\"alt\":167,\"_type\":\"location\",\"tid\":\"JJ\"}"));

*/

    }

}