diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2013-10-10 22:45:41 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2013-10-10 22:45:41 +1300 |
commit | 3d8cfc4e0c33a0a9ca5c18b5cc24bc5e91895355 (patch) | |
tree | fc842dd0fceff8266a2deb57a8bde70fc568758d /test/org/traccar/protocol/AtrackProtocolDecoderTest.java | |
parent | a4c475c833c07713d58669fea4d069563ee4bc26 (diff) | |
download | trackermap-server-3d8cfc4e0c33a0a9ca5c18b5cc24bc5e91895355.tar.gz trackermap-server-3d8cfc4e0c33a0a9ca5c18b5cc24bc5e91895355.tar.bz2 trackermap-server-3d8cfc4e0c33a0a9ca5c18b5cc24bc5e91895355.zip |
Support atrack keep alive
Diffstat (limited to 'test/org/traccar/protocol/AtrackProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/AtrackProtocolDecoderTest.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/AtrackProtocolDecoderTest.java b/test/org/traccar/protocol/AtrackProtocolDecoderTest.java new file mode 100644 index 000000000..c0d146153 --- /dev/null +++ b/test/org/traccar/protocol/AtrackProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import org.jboss.netty.buffer.ChannelBuffers; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; +import org.traccar.helper.ChannelBufferTools; + +public class AtrackProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + AtrackProtocolDecoder decoder = new AtrackProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + int[] buf1 = {0xfe,0x02,0x00,0x01,0x41,0x04,0xd8,0xf1,0x96,0x82,0x00,0x01}; + assertNotNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertArray(buf1)))); + + } + +} |