From d96638ab083af4134a54536abd00d3810627699d Mon Sep 17 00:00:00 2001 From: Vitaly Litvak Date: Mon, 23 Feb 2015 20:23:35 +0300 Subject: Implemented AutoFon 4.5 protocol (also works for StarLine M10/M11/M16/M17 devices) --- .../protocol/AutoFon45ProtocolDecoderTest.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/org/traccar/protocol/AutoFon45ProtocolDecoderTest.java (limited to 'test') diff --git a/test/org/traccar/protocol/AutoFon45ProtocolDecoderTest.java b/test/org/traccar/protocol/AutoFon45ProtocolDecoderTest.java new file mode 100644 index 000000000..2665c7cab --- /dev/null +++ b/test/org/traccar/protocol/AutoFon45ProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import org.jboss.netty.buffer.ChannelBuffers; +import org.junit.Test; +import org.traccar.helper.ChannelBufferTools; +import org.traccar.helper.TestDataManager; + +import static org.junit.Assert.assertNull; +import static org.traccar.helper.DecoderVerifier.verify; + +public class AutoFon45ProtocolDecoderTest { + @Test + public void testDecode() throws Exception { + AutoFon45ProtocolDecoder decoder = new AutoFon45ProtocolDecoder(new TestDataManager(), null, null); + + assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "41032125656985547543619173484002123481")))); + + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "023E00001E004D411EFA01772F185285009C48041F1E366C2961380F26B10B00911C")))); + } +} -- cgit v1.2.3