diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-01-07 17:27:39 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-01-07 17:27:39 +1300 |
commit | 2232f5387b7d2126a86f725231454b687f3913d0 (patch) | |
tree | 7ce2ccb8074ae71f7433dfea837ac6e3e467877b /test/org/traccar/protocol/GatorProtocolDecoderTest.java | |
parent | 68e178c43d8619b8b13aa78828c75e788d4d2621 (diff) | |
download | trackermap-server-2232f5387b7d2126a86f725231454b687f3913d0.tar.gz trackermap-server-2232f5387b7d2126a86f725231454b687f3913d0.tar.bz2 trackermap-server-2232f5387b7d2126a86f725231454b687f3913d0.zip |
Update binary test cases
Diffstat (limited to 'test/org/traccar/protocol/GatorProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/GatorProtocolDecoderTest.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/org/traccar/protocol/GatorProtocolDecoderTest.java b/test/org/traccar/protocol/GatorProtocolDecoderTest.java index 75c2847ca..24cf1ed1f 100644 --- a/test/org/traccar/protocol/GatorProtocolDecoderTest.java +++ b/test/org/traccar/protocol/GatorProtocolDecoderTest.java @@ -13,17 +13,17 @@ public class GatorProtocolDecoderTest { GatorProtocolDecoder decoder = new GatorProtocolDecoder(new TestDataManager(), null, null); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertArray( - new int[] {0x24,0x24,0x80,0x00,0x26,0x00,0x09,0x63,0x2d,0x14,0x11,0x21,0x07,0x27,0x02,0x05,0x92,0x26,0x18,0x01,0x04,0x36,0x75,0x00,0x00,0x00,0x00,0xc0,0x47,0x00,0x07,0x9c,0x0c,0x34,0x00,0x0a,0xd8,0x0b,0x00,0xff,0x00,0x0a,0x0d})))); + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "24248000260009632d141121072702059226180104367500000000c04700079c0c34000ad80b00ff000a0d")))); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertArray( - new int[] {0x24,0x24,0x81,0x00,0x23,0x0C,0xA2,0x32,0x85,0x10,0x03,0x06,0x14,0x59,0x07,0x02,0x23,0x46,0x90,0x11,0x35,0x29,0x47,0x00,0x00,0x00,0x00,0xC0,0x40,0x01,0x01,0x2C,0x0E,0x11,0x00,0x00,0x00,0x21,0xCB,0x0D})))); + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "24248100230CA23285100306145907022346901135294700000000C04001012C0E1100000021CB0D")))); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertArray( - new int[] {0x24,0x24,0x80,0x00,0x23,0xc2,0x63,0x1e,0x00,0x11,0x12,0x20,0x10,0x49,0x09,0x83,0x32,0x68,0x64,0x87,0x03,0x80,0x41,0x00,0x00,0x00,0x00,0xc0,0x47,0x00,0x00,0x00,0x0b,0x4e,0x00,0x00,0x00,0x00,0x55,0x0d})))); + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "2424800023c2631e00111220104909833268648703804100000000c0470000000b4e00000000550d")))); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertArray( - new int[] {0x24,0x24,0x80,0x00,0x26,0x00,0x09,0x63,0x2d,0x14,0x11,0x21,0x07,0x27,0x02,0x05,0x92,0x26,0x18,0x01,0x04,0x36,0x75,0x00,0x00,0x00,0x00,0xc0,0x47,0x00,0x07,0x9c,0x0c,0x34,0x00,0x0a,0xd8,0x0b,0x00,0xff,0x00,0x0a,0x0d})))); + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "24248000260009632d141121072702059226180104367500000000c04700079c0c34000ad80b00ff000a0d")))); } |