aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-09-03 10:40:13 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-09-03 10:40:13 +1200
commit65e0cec500c23b6d49ebf0c2950c205076de1177 (patch)
tree4ee2821853499af0fca26c6adc15b13f8768c313 /test
parente0fd68f63da84b9484514ace9f0fc70a877d7062 (diff)
downloadtraccar-server-65e0cec500c23b6d49ebf0c2950c205076de1177.tar.gz
traccar-server-65e0cec500c23b6d49ebf0c2950c205076de1177.tar.bz2
traccar-server-65e0cec500c23b6d49ebf0c2950c205076de1177.zip
Implement Milesmate protocol
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/MilesmateProtocolDecoderTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/MilesmateProtocolDecoderTest.java b/test/org/traccar/protocol/MilesmateProtocolDecoderTest.java
new file mode 100644
index 000000000..400c3d9bf
--- /dev/null
+++ b/test/org/traccar/protocol/MilesmateProtocolDecoderTest.java
@@ -0,0 +1,22 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+public class MilesmateProtocolDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ MilesmateProtocolDecoder decoder = new MilesmateProtocolDecoder(new MilesmateProtocol());
+
+ verifyPosition(decoder, text(
+ "ApiString={A:861359037496211,B:12.7,C:06.0,D:060218,E:2837.1003N,F:07723.3162E,G:016.80,H:310818,I:G,J:10010100,K:0000000A,L:1234,M:358.33}"),
+ position("2018-08-31 06:02:18.000", true, 28.61834, 77.38860));
+
+ verifyPosition(decoder, text(
+ "ApiString={A:862631032208018,B:12.1,C:24.4,D:055852,E:2838.5310N,F:07717.8126E,G:000.0,H:200117,I:G,J:10100100,K:1000000A,L:1234,M:324.45}"));
+
+ }
+
+}