diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-01-21 22:19:20 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-01-21 22:19:20 +1300 |
commit | fc0a26137fbd00339fcbf28b10b2afae6242d094 (patch) | |
tree | 33b8764b40a55af68a2d52bd81b35cf48a56731a /test/org/traccar | |
parent | 39de5581b92a505a19cf1929a52bc562c48c3e2f (diff) | |
download | trackermap-server-fc0a26137fbd00339fcbf28b10b2afae6242d094.tar.gz trackermap-server-fc0a26137fbd00339fcbf28b10b2afae6242d094.tar.bz2 trackermap-server-fc0a26137fbd00339fcbf28b10b2afae6242d094.zip |
Fix Ulbotech frame and protocol decoders
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/UlbotechFrameDecoderTest.java | 4 | ||||
-rw-r--r-- | test/org/traccar/protocol/UlbotechProtocolDecoderTest.java | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/UlbotechFrameDecoderTest.java b/test/org/traccar/protocol/UlbotechFrameDecoderTest.java index baf151659..3a21fd209 100644 --- a/test/org/traccar/protocol/UlbotechFrameDecoderTest.java +++ b/test/org/traccar/protocol/UlbotechFrameDecoderTest.java @@ -12,6 +12,10 @@ public class UlbotechFrameDecoderTest extends ProtocolTest { UlbotechFrameDecoder decoder = new UlbotechFrameDecoder(); Assert.assertEquals( + binary("2a545330312c33353430343330353133383934363023"), + decoder.decode(null, null, binary("2a545330312c33353430343330353133383934363023"))); + + Assert.assertEquals( binary("f8010108679650230646339de69054010e015ee17506bde2c60000000000ac0304024000000404000009f705060390181422170711310583410c0000310d00312f834131018608040003130a100101136cf8"), decoder.decode(null, null, binary("f8010108679650230646339de69054010e015ee17506bde2c60000000000ac0304024000000404000009f70005060390181422170711310583410c0000310d00312f834131018608040003130a100101136cf8"))); diff --git a/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java b/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java index 1fb515315..e87e95efe 100644 --- a/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java +++ b/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java @@ -10,6 +10,9 @@ public class UlbotechProtocolDecoderTest extends ProtocolTest { UlbotechProtocolDecoder decoder = new UlbotechProtocolDecoder(new UlbotechProtocol()); + verifyNothing(decoder, binary( + "2a545330312c33353430343330353133383934363023")); + verifyPosition(decoder, binary( "f8010108679650230646339de69054010e015ee17506bde2c60000000000ac0304024000000404000009f705060390181422170711310583410c0000310d00312f834131018608040003130a100101136cf8")); |