aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/CellocatorProtocolEncoderTest.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-02-18 16:28:17 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-02-18 16:28:17 +1300
commitd5bd395f19ef5ed6732b32a0e8d0eb5e6a25c33e (patch)
tree8f19594583dbff0a2198d68751a05d9dee779d69 /test/org/traccar/protocol/CellocatorProtocolEncoderTest.java
parent4753e462767812712bafbc8e9985f355021c6f16 (diff)
downloadtraccar-server-d5bd395f19ef5ed6732b32a0e8d0eb5e6a25c33e.tar.gz
traccar-server-d5bd395f19ef5ed6732b32a0e8d0eb5e6a25c33e.tar.bz2
traccar-server-d5bd395f19ef5ed6732b32a0e8d0eb5e6a25c33e.zip
Implement Cellocator output control
Diffstat (limited to 'test/org/traccar/protocol/CellocatorProtocolEncoderTest.java')
-rw-r--r--test/org/traccar/protocol/CellocatorProtocolEncoderTest.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/CellocatorProtocolEncoderTest.java b/test/org/traccar/protocol/CellocatorProtocolEncoderTest.java
new file mode 100644
index 000000000..89850fb5f
--- /dev/null
+++ b/test/org/traccar/protocol/CellocatorProtocolEncoderTest.java
@@ -0,0 +1,26 @@
+package org.traccar.protocol;
+
+import org.junit.Ignore;
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+import org.traccar.model.Command;
+
+public class CellocatorProtocolEncoderTest extends ProtocolTest {
+
+ @Ignore
+ @Test
+ public void testEncode() throws Exception {
+
+ CellocatorProtocolEncoder encoder = new CellocatorProtocolEncoder();
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_OUTPUT_CONTROL);
+ command.set(Command.KEY_INDEX, 0);
+ command.set(Command.KEY_DATA, "1");
+
+ verifyCommand(encoder, command, binary("4D434750000000000000000000000303101000000000000026"));
+
+ }
+
+}