From 8622ba6e081b987a96e3b1885209576f3c389266 Mon Sep 17 00:00:00 2001 From: Hans van den Elsen Date: Sat, 13 Feb 2016 16:13:18 +0100 Subject: Added objectEncoder for Minifinder protocol --- .../protocol/MiniFinderProtocolEncoderTest.java | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java (limited to 'test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java') diff --git a/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java new file mode 100644 index 000000000..7beb52b51 --- /dev/null +++ b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java @@ -0,0 +1,38 @@ +package org.traccar.protocol; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; +import org.traccar.ProtocolTest; +import org.traccar.model.Command; + +public class MiniFinderProtocolEncoderTest extends ProtocolTest { + + private String prefix = "123456"; + private MiniFinderProtocolEncoder encoder; + + @Before + public void setup() { + encoder = new MiniFinderProtocolEncoder(); + } + + @Test + public void testEncodeCustom() throws Exception { + String expected = String.format("%sM,700", prefix); + Command command = new Command(); + command.setType(Command.CUSTOM); + command.set(expected, 1); + Object encoded = encoder.encodeCommand(command); + assert expected.equals(encoded); + } + + @Test + public void testEncodeUnsupportedCommand() throws Exception { + Command command = new Command(); + command.setType("UNSUPPORTED"); + Object o = encoder.encodeCommand(command); + assert o == null; + } + +} -- cgit v1.2.3