aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/WatchProtocolEncoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/WatchProtocolEncoderTest.java')
-rw-r--r--test/org/traccar/protocol/WatchProtocolEncoderTest.java83
1 files changed, 0 insertions, 83 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolEncoderTest.java b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
deleted file mode 100644
index a0631be3b..000000000
--- a/test/org/traccar/protocol/WatchProtocolEncoderTest.java
+++ /dev/null
@@ -1,83 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-import org.traccar.model.Command;
-
-public class WatchProtocolEncoderTest extends ProtocolTest {
-
- @Test
- public void testEncode() throws Exception {
-
- WatchProtocolEncoder encoder = new WatchProtocolEncoder();
-
- Command command;
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_REBOOT_DEVICE);
- verifyFrame(buffer("[CS*123456789012345*0005*RESET]"), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_SOS_NUMBER);
- command.set(Command.KEY_INDEX, 1);
- command.set(Command.KEY_PHONE, "123456789");
- verifyFrame(buffer("[CS*123456789012345*000e*SOS1,123456789]"), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_VOICE_MESSAGE);
- command.set(Command.KEY_DATA, "2321414d520a2573");
- verifyFrame(buffer("[CS*123456789012345*000b*TK,#!AMR\n%s]"), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_VOICE_MESSAGE);
- command.set(Command.KEY_DATA, "7d5b5d2c2a");
- verifyFrame(concatenateBuffers(buffer("[CS*123456789012345*000d*TK,"), binary("7d017d027d037d047d05"), buffer("]")), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_VOICE_MESSAGE);
- command.set(Command.KEY_DATA, "ff");
- verifyFrame(concatenateBuffers(buffer("[CS*123456789012345*0004*TK,"), binary("ff"), buffer("]")), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_MESSAGE);
- command.set(Command.KEY_MESSAGE, "text");
- verifyFrame(buffer("[CS*123456789012345*0018*MESSAGE,0074006500780074]"), encoder.encodeCommand(null, command));
-
- command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_CUSTOM);
- command.set(Command.KEY_DATA, "WORK,6-9,11-13,13-15,17-19");
- verifyFrame(buffer("[CS*123456789012345*001a*WORK,6-9,11-13,13-15,17-19]"), encoder.encodeCommand(null, command));
-
- }
-
- @Test
- public void testEncodeTimezone() {
-
- WatchProtocolEncoder encoder = new WatchProtocolEncoder();
-
- Command command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_SET_TIMEZONE);
-
- command.set(Command.KEY_TIMEZONE, "Europe/Amsterdam");
- verifyFrame(buffer("[CS*123456789012345*0006*LZ,,+1]"), encoder.encodeCommand(null, command));
-
- command.set(Command.KEY_TIMEZONE, "GMT+01:30");
- verifyFrame(buffer("[CS*123456789012345*0008*LZ,,+1.5]"), encoder.encodeCommand(null, command));
-
- command.set(Command.KEY_TIMEZONE, "Atlantic/Azores");
- verifyFrame(buffer("[CS*123456789012345*0006*LZ,,-1]"), encoder.encodeCommand(null, command));
-
- command.set(Command.KEY_TIMEZONE, "GMT-11:30");
- verifyFrame(buffer("[CS*123456789012345*0009*LZ,,-11.5]"), encoder.encodeCommand(null, command));
-
- }
-
-}