From c9eb46368a3e8de594ea53770cd5853b5d025966 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 24 Apr 2015 15:58:59 +1200 Subject: Add AVL301 protocol support --- .../protocol/Avl301ProtocolDecoderTest.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 test/org/traccar/protocol/Avl301ProtocolDecoderTest.java (limited to 'test/org') diff --git a/test/org/traccar/protocol/Avl301ProtocolDecoderTest.java b/test/org/traccar/protocol/Avl301ProtocolDecoderTest.java new file mode 100644 index 000000000..666bb0b43 --- /dev/null +++ b/test/org/traccar/protocol/Avl301ProtocolDecoderTest.java @@ -0,0 +1,28 @@ +package org.traccar.protocol; + +import org.jboss.netty.buffer.ChannelBuffers; +import org.junit.Test; +import org.traccar.helper.ChannelBufferTools; + +import static org.junit.Assert.assertNull; +import static org.traccar.helper.DecoderVerifier.verify; + +public class Avl301ProtocolDecoderTest extends ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Avl301ProtocolDecoder decoder = new Avl301ProtocolDecoder(null); + + assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "244c0f086058500087335500010d0a")))); + + assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "24480d1001c3065c0d00010d0a")))); + + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "24242c0f041710001d0e060146944904ff4ac40000148f0651044b001a081001be06590daa00000108a30d0a")))); + + } + +} -- cgit v1.2.3