aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-11-26 19:54:14 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-11-26 19:54:14 +1300
commitb0068d87ddf894fc2f7d2688bd4c4ad88c891a2e (patch)
tree94d63486e068dd4905f19c235fd9ae3c9cb4131c /test
parentfddb9a7d3dfb65cd694dc0d4232efa52ecb835a2 (diff)
downloadtraccar-server-b0068d87ddf894fc2f7d2688bd4c4ad88c891a2e.tar.gz
traccar-server-b0068d87ddf894fc2f7d2688bd4c4ad88c891a2e.tar.bz2
traccar-server-b0068d87ddf894fc2f7d2688bd4c4ad88c891a2e.zip
Implement Maestro protocol decoder
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/MaestroProtocolDecoderTest.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/MaestroProtocolDecoderTest.java b/test/org/traccar/protocol/MaestroProtocolDecoderTest.java
new file mode 100644
index 000000000..b480ad9b2
--- /dev/null
+++ b/test/org/traccar/protocol/MaestroProtocolDecoderTest.java
@@ -0,0 +1,30 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+public class MaestroProtocolDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ MaestroProtocolDecoder decoder = new MaestroProtocolDecoder(new MaestroProtocol());
+
+ verifyPosition(decoder, text(
+ "@353893040202807,705,UPV-02,1,13.2,17,0,0,16/09/11,11:42:49,0.352705,32.647918,1210.5,0.000000,35.33,11,0.8,0.000,0!\0"));
+
+ verifyPosition(decoder, text(
+ "@353893040202807,705,UPV-02,1,13.4,18,0,0,16/09/11,11:43:30,0.352808,32.647990,1211.0,0.000000,80.96,11,0.8,0.000,0!\0"));
+
+ verifyPosition(decoder, text(
+ "@353893040202807,601,UPV-02,0,13.4,10,0,0,16/11/04,17:21:14,0.352793,32.647927,0,0,0,0,99,0.000,0!\0"));
+
+ verifyPosition(decoder, text(
+ "@123451234512345,531,M2MGTW,1,12.5,30,0,0,11/10/10,09:09:09,22.222222,114.141414,45.6,0.0,160.0,8,1,20!"));
+
+ verifyPosition(decoder, text(
+ "@123451234512345,702,M2MGTW,1,14.7,30,0,1,11/10/10,09:09:09,22.222222,114.141414,45.6,25.12,160.0,8,1,25!"));
+
+ }
+
+}