blob: 4e707a47b4db2b35a9a158ac140ba503f7942df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package org.traccar.protocol;
import org.junit.Assert;
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);
Assert.assertEquals("[CS*123456789012345*0005*RESET]", encoder.encodeCommand(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");
Assert.assertEquals("[CS*123456789012345*000e*SOS1,123456789]", encoder.encodeCommand(command));
command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_VOICE_MESSAGE);
command.set(Command.KEY_DATA, "3333");
Assert.assertEquals("[CS*123456789012345*0005*TK,33]", encoder.encodeCommand(command));
}
}
|