aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java')
-rw-r--r--test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java
new file mode 100644
index 000000000..524152bb8
--- /dev/null
+++ b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java
@@ -0,0 +1,36 @@
+package org.traccar.protocol;
+
+import org.junit.Before;
+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.TYPE_CUSTOM);
+ command.set("raw", expected);
+ 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;
+ }
+
+}