diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-12-17 10:01:10 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-12-17 10:01:10 +1300 |
commit | e61fb62eba34e337f748eb18ce93bb3d3035e275 (patch) | |
tree | 6a49ca2cfefd3d2c5a354fabe28241dacbacf9c5 /test/org/traccar | |
parent | 1253934d826bd64e12fd0a40cc283f89006b2509 (diff) | |
download | trackermap-server-e61fb62eba34e337f748eb18ce93bb3d3035e275.tar.gz trackermap-server-e61fb62eba34e337f748eb18ce93bb3d3035e275.tar.bz2 trackermap-server-e61fb62eba34e337f748eb18ce93bb3d3035e275.zip |
Fix Noran new position decoding (fix #1595)
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/NoranProtocolDecoderTest.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/NoranProtocolDecoderTest.java b/test/org/traccar/protocol/NoranProtocolDecoderTest.java index de3a6c24f..abe21c68e 100644 --- a/test/org/traccar/protocol/NoranProtocolDecoderTest.java +++ b/test/org/traccar/protocol/NoranProtocolDecoderTest.java @@ -11,10 +11,13 @@ public class NoranProtocolDecoderTest extends ProtocolTest { public void testDecode() throws Exception { NoranProtocolDecoder decoder = new NoranProtocolDecoder(new NoranProtocol()); - - //verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, - // "28003200c38000d900fcc97a416b1a7a42b43eef3d4e523039473034383737000000000092fcda4a")); - + + verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "28003200c380000000469458408c4ad340ad381e3f4e52303947313336303900000001ff00002041")); + + verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "28003200c38000d900fcc97a416b1a7a42b43eef3d4e523039473034383737000000000092fcda4a")); + verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, "3400080001090000000000001D43A29BE842E62520424E523039423036363932000031322D30332D30352031313A34373A343300")); |