diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-07 00:11:19 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-07 00:11:19 +1200 |
commit | 81cac93e54e336b78c80e3a099b72d6bb8f3e1b4 (patch) | |
tree | 39e2e1730d8711c7512b4e870fcd380e1b62a822 /test/org/traccar/protocol | |
parent | 21a8fb81a0aa88a7bc1cb6804da034ecc9a79bcd (diff) | |
parent | f8f21ce131556ca5c1ea44ede496ace9d810c844 (diff) | |
download | trackermap-server-81cac93e54e336b78c80e3a099b72d6bb8f3e1b4.tar.gz trackermap-server-81cac93e54e336b78c80e3a099b72d6bb8f3e1b4.tar.bz2 trackermap-server-81cac93e54e336b78c80e3a099b72d6bb8f3e1b4.zip |
Merge pull request #2081 from Abyss777/master
Granit protocol implementation
Diffstat (limited to 'test/org/traccar/protocol')
-rw-r--r-- | test/org/traccar/protocol/GranitProtocolDecoderTest.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/GranitProtocolDecoderTest.java b/test/org/traccar/protocol/GranitProtocolDecoderTest.java new file mode 100644 index 000000000..9f1f07bf7 --- /dev/null +++ b/test/org/traccar/protocol/GranitProtocolDecoderTest.java @@ -0,0 +1,33 @@ +package org.traccar.protocol; + +import java.nio.ByteOrder; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class GranitProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + GranitProtocolDecoder decoder = new GranitProtocolDecoder(new GranitProtocol()); + + verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "2b525243427e1a003e2934757c57b8b03c38d279b4e61e9bd7006b000000001c00002a45330d0a")); + + verifyPositions(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "2b444441547e84003e290401d01690737c57b8903c383c7fa0e5081b64006b000000001c0000b8803c388e7fe7e5102197006c000000001c0000b8813c38ad7f02e6042035006c000000001d0000b8813c38bf7f13e6001d1e006c000000001d0000b8813c38bf7f13e6001d00006c000000001d0000b8903c38977f34e6091065006c000000001e000014002a39320d0a")); + + verifyPositions(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "2b444441547e84003e290401d41680747c57f8a03c38987f50e6005300006c000000001c0000f8b03c38987f50e6005300006c000000001c0000fefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefe14002a43460d0a")); + + //+IDNT: Navigator.04x Firmware version 0712GLN *21 + verifyAttributes(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "2b49444e543a204e6176696761746f722e30347820204669726d776172652076657273696f6e202030373132474c4e202a32310d0a")); + + //ERROR WRONG CHECKSUM_1 + verifyAttributes(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "4552524f522057524f4e4720434845434b53554d5f310d0a")); + } + +} |