diff options
author | Abyss777 <abyss@fox5.ru> | 2017-09-04 18:01:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-09-04 18:01:43 +0500 |
commit | 87392d9fbb0289b5486496b6e6b97db1ea84e2b7 (patch) | |
tree | 6d8413ad76307ee7bc52b5788dc202bb55762958 /test/org/traccar/protocol/WatchProtocolEncoderTest.java | |
parent | 99fd421c76c8e7491095a91630516f6d2db27034 (diff) | |
download | trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.tar.gz trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.tar.bz2 trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.zip |
Accept timezone id instead of offset in commands
Diffstat (limited to 'test/org/traccar/protocol/WatchProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/WatchProtocolEncoderTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolEncoderTest.java b/test/org/traccar/protocol/WatchProtocolEncoderTest.java index 7184d278e..cffe373cf 100644 --- a/test/org/traccar/protocol/WatchProtocolEncoderTest.java +++ b/test/org/traccar/protocol/WatchProtocolEncoderTest.java @@ -41,16 +41,16 @@ public class WatchProtocolEncoderTest extends ProtocolTest { command = new Command(); command.setDeviceId(1); command.setType(Command.TYPE_SET_TIMEZONE); - command.set(Command.KEY_TIMEZONE, 60 * 60); + command.set(Command.KEY_TIMEZONE, "Europe/Amsterdam"); Assert.assertEquals("[CS*123456789012345*0006*LZ,,+1]", encoder.encodeCommand(command)); - command.set(Command.KEY_TIMEZONE, 90 * 60); + command.set(Command.KEY_TIMEZONE, "GMT+01:30"); Assert.assertEquals("[CS*123456789012345*0008*LZ,,+1.5]", encoder.encodeCommand(command)); - command.set(Command.KEY_TIMEZONE, -60 * 60); + command.set(Command.KEY_TIMEZONE, "Atlantic/Azores"); Assert.assertEquals("[CS*123456789012345*0006*LZ,,-1]", encoder.encodeCommand(command)); - command.set(Command.KEY_TIMEZONE, -11 * 60 * 60 - 30 * 60); + command.set(Command.KEY_TIMEZONE, "GMT-11:30"); Assert.assertEquals("[CS*123456789012345*0009*LZ,,-11.5]", encoder.encodeCommand(command)); } |