aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
diff options
context:
space:
mode:
authorIvan Muratov <binakot@gmail.com>2017-07-14 08:48:27 +0300
committerIvan Muratov <binakot@gmail.com>2017-07-14 08:48:27 +0300
commit50d45d27beb423c1689f83401d0adb88b7fafb65 (patch)
tree9e40c2bf7d581c8987dfa8cb562b1e8d1c831c04 /test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
parenta2376cf6354a94c8bd8c8e13c4e78936d4f2ae97 (diff)
downloadtrackermap-server-50d45d27beb423c1689f83401d0adb88b7fafb65.tar.gz
trackermap-server-50d45d27beb423c1689f83401d0adb88b7fafb65.tar.bz2
trackermap-server-50d45d27beb423c1689f83401d0adb88b7fafb65.zip
Correction based on comments.
Re-write modulo256 checksum's parameter to byte array, not varargs. Split the tests to two methods for HEADER ver1 and ver2. Remove above-class copyrights, added top-file copyrights. Rename parcelNumber to index. Rename recordStartSign to recordType. Remove crearing additional buffer for record data, use origin buffer instead. Added check on minimal length of packet to avoid the out-of-range exceptions.
Diffstat (limited to 'test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java b/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
index 2395572a1..d789b1c9c 100644
--- a/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
@@ -5,13 +5,10 @@ import org.traccar.ProtocolTest;
import java.nio.ByteOrder;
-/**
- * Created by Ivan Muratov @binakot on 11.07.2017.
- */
public class Arnavi4ProtocolDecoderTest extends ProtocolTest {
@Test
- public void testDecode() throws Exception {
+ public void testHeader1Decode() throws Exception {
Arnavi4ProtocolDecoder decoder;
@@ -23,6 +20,12 @@ public class Arnavi4ProtocolDecoderTest extends ProtocolTest {
verifyPositions(decoder, binary(ByteOrder.LITTLE_ENDIAN, // Valid PACKAGE packet with one DATA packet
"5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d"),
position("2017-07-07 05:09:55.000", true, 45.05597, 39.03347));
+ }
+
+ @Test
+ public void testHeader2Decode() throws Exception {
+
+ Arnavi4ProtocolDecoder decoder;
decoder = new Arnavi4ProtocolDecoder(new Arnavi4Protocol());