diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-02-23 06:35:05 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-02-23 06:35:05 +1300 |
commit | 0d6b84af0aac6f312fd654cba33d8a1a13e2ed25 (patch) | |
tree | 3129bc39d2a7fdb1204e132ed3c82bdb78874bfd /test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java | |
parent | c7cb3de0ef6745cd66cec065c1d6250258b18628 (diff) | |
download | trackermap-server-0d6b84af0aac6f312fd654cba33d8a1a13e2ed25.tar.gz trackermap-server-0d6b84af0aac6f312fd654cba33d8a1a13e2ed25.tar.bz2 trackermap-server-0d6b84af0aac6f312fd654cba33d8a1a13e2ed25.zip |
Implement GlobeKeeper protocol
Diffstat (limited to 'test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java b/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java new file mode 100644 index 000000000..918fd9083 --- /dev/null +++ b/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java @@ -0,0 +1,33 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class GlobeKeeperProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + GlobeKeeperProtocolDecoder decoder = new GlobeKeeperProtocolDecoder(new GlobeKeeperProtocol()); + + verifyPosition(decoder, text( + "48666666666;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;120;2292;1")); + + verifyPosition(decoder, text( + "48666666666;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;90;4000;0")); + + verifyPosition(decoder, text( + "48666666666;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;90;1199;0")); + + verifyPosition(decoder, text( + "48601601601;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;360;2292;1")); + + verifyPosition(decoder, text( + "48601601601;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;360;4000;0")); + + verifyPosition(decoder, text( + "48601601601;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;360;1199;0")); + + } + +} |