aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-05-25 05:59:13 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-05-25 05:59:13 +1200
commit7a1791b67cbb47033f818cce2c57322c3161eef0 (patch)
tree1ecdbf7c16ab071202b16fa2f1c7387cd486ab78 /test
parente93f4bc11bda5f6851b6be4bd35e552435e31418 (diff)
downloadtrackermap-server-7a1791b67cbb47033f818cce2c57322c3161eef0.tar.gz
trackermap-server-7a1791b67cbb47033f818cce2c57322c3161eef0.tar.bz2
trackermap-server-7a1791b67cbb47033f818cce2c57322c3161eef0.zip
Implement Sabertek protocol
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/SabertekFrameDecoderTest.java21
-rw-r--r--test/org/traccar/protocol/SabertekProtocolDecoderTest.java21
2 files changed, 42 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/SabertekFrameDecoderTest.java b/test/org/traccar/protocol/SabertekFrameDecoderTest.java
new file mode 100644
index 000000000..7a42a71a0
--- /dev/null
+++ b/test/org/traccar/protocol/SabertekFrameDecoderTest.java
@@ -0,0 +1,21 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+import static org.junit.Assert.assertEquals;
+
+public class SabertekFrameDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ SabertekFrameDecoder decoder = new SabertekFrameDecoder();
+
+ assertEquals(
+ binary("2c3939393939393939392c332c34302c36352c372c302c312c2d32352e3738313636362c32382e3235343730322c34302c3236382c313431342c382c35353632332c"),
+ decoder.decode(null, null, binary("022c3939393939393939392c332c34302c36352c372c302c312c2d32352e3738313636362c32382e3235343730322c34302c3236382c313431342c382c35353632332c030d0a")));
+
+ }
+
+}
diff --git a/test/org/traccar/protocol/SabertekProtocolDecoderTest.java b/test/org/traccar/protocol/SabertekProtocolDecoderTest.java
new file mode 100644
index 000000000..32309fe12
--- /dev/null
+++ b/test/org/traccar/protocol/SabertekProtocolDecoderTest.java
@@ -0,0 +1,21 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+public class SabertekProtocolDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ SabertekProtocolDecoder decoder = new SabertekProtocolDecoder(new SabertekProtocol());
+
+ verifyPosition(decoder, text(
+ ",999999999,3,40,65,7,0,1,-25.781666,28.254702,40,268,1414,8,55623,"));
+
+ verifyPosition(decoder, text(
+ ",999999999,4,356495040613400,89270200120171498287,+27821234123,20180525145412,60,75,15,1,1,-25.781666,28.254702,40,268,1414,8,24844,"));
+
+ }
+
+}