aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-08-05 14:23:00 +0300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-08-05 22:33:57 +0300
commit2cc642af2b1aeeb07e2b6676cf433112cc7cd7bc (patch)
tree634235ebdda0622ccc0144fb45d7e32f17f8e413 /test/org/traccar/protocol
parente15f80a0eb5c57a90a98773e8d21ae20e98a8910 (diff)
downloadtrackermap-server-2cc642af2b1aeeb07e2b6676cf433112cc7cd7bc.tar.gz
trackermap-server-2cc642af2b1aeeb07e2b6676cf433112cc7cd7bc.tar.bz2
trackermap-server-2cc642af2b1aeeb07e2b6676cf433112cc7cd7bc.zip
Implement OBD dongle protocol
Diffstat (limited to 'test/org/traccar/protocol')
-rw-r--r--test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java b/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java
new file mode 100644
index 000000000..19e3a4ff2
--- /dev/null
+++ b/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java
@@ -0,0 +1,22 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+public class ObdDongleProtocolDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ ObdDongleProtocolDecoder decoder = new ObdDongleProtocolDecoder(new ObdDongleProtocol());
+
+ verifyNothing(decoder, binary(
+ "55550003383634383637303232353131303135010009010011023402010201ABAAAA"));
+
+ verifyPosition(decoder, binary(
+ "5555000338363438363730323235313130313503000100010355AABBCC184F1ABC614E21C1FA08712A84ABAAAA"),
+ position("2015-07-18 20:49:16.000", true, 22.12346, -123.45678));
+
+ }
+
+}