aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-12-21 22:40:55 +1300
committerGitHub <noreply@github.com>2016-12-21 22:40:55 +1300
commitd8e016bc5fcb55f43fa0af676f977a99ebcb35b8 (patch)
treed70be97a1d2c4428b3483c94190dc7114da5de1c /test
parent48f83827701d06c3c2eab7d051a5f011cc42f65d (diff)
parentc70c026d31ae673e06abb58333f4808db875f6a6 (diff)
downloadtrackermap-server-d8e016bc5fcb55f43fa0af676f977a99ebcb35b8.tar.gz
trackermap-server-d8e016bc5fcb55f43fa0af676f977a99ebcb35b8.tar.bz2
trackermap-server-d8e016bc5fcb55f43fa0af676f977a99ebcb35b8.zip
Merge pull request #2712 from AddisMap/feature/2702-watch-ext
Feature #2702 watch ext
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/WatchProtocolEncoderTest.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolEncoderTest.java b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
index 4e707a47b..a7c360d7f 100644
--- a/test/org/traccar/protocol/WatchProtocolEncoderTest.java
+++ b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
@@ -32,6 +32,20 @@ public class WatchProtocolEncoderTest extends ProtocolTest {
command.set(Command.KEY_DATA, "3333");
Assert.assertEquals("[CS*123456789012345*0005*TK,33]", encoder.encodeCommand(command));
+ command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_SET_TIMEZONE);
+ command.set(Command.KEY_TIMEZONE, 60 * 60);
+ Assert.assertEquals("[CS*123456789012345*0006*LZ,,+1]", encoder.encodeCommand(command));
+
+ command.set(Command.KEY_TIMEZONE, 90 * 60);
+ Assert.assertEquals("[CS*123456789012345*0008*LZ,,+1.5]", encoder.encodeCommand(command));
+
+ command.set(Command.KEY_TIMEZONE, -60 * 60);
+ Assert.assertEquals("[CS*123456789012345*0006*LZ,,-1]", encoder.encodeCommand(command));
+
+ command.set(Command.KEY_TIMEZONE, -11 * 60 * 60 - 30 * 60);
+ Assert.assertEquals("[CS*123456789012345*0009*LZ,,-11.5]", encoder.encodeCommand(command));
}
}