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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package net.sourceforge.opentracking.protocol.gl200;
import java.util.Calendar;
import java.util.TimeZone;
import java.util.GregorianCalendar;
import java.util.List;
import org.junit.Test;
import net.sourceforge.opentracking.Device;
import net.sourceforge.opentracking.Position;
import net.sourceforge.opentracking.DataManager;
import static org.junit.Assert.*;
public class Gl200ProtocolDecoderTest {
private class TestDataManager implements DataManager {
public List getDevices() {
return null;
}
public Device getDeviceByImei(String imei) {
Device device = new Device();
device.setId(new Long(1));
device.setImei("10000000000000");
return device;
}
public void setPosition(Position position) {
}
}
@Test
public void testDecode() throws Exception {
String testMsg1 = "+RESP:GTFRI,020102,000035988863964,,0,0,1,1,4.3,92,70.0,121.354335,31.222073,20090214013254,0460,0000,18d8,6141,00,,20090214093254,11F0";
Gl200ProtocolDecoder decoder = new Gl200ProtocolDecoder(new TestDataManager(), 0);
Position position = (Position) decoder.decode(null, null, testMsg1);
//Date time = new GregorianCalendar(2003, 1, 1, 1, 2, 3).getTime();
//assertEquals(time, position.getTime());
assertEquals(true, position.getValid());
Double latitude = 1.0 + 2.0003 / 60.0;
assertEquals(latitude, position.getLatitude());
Double longitude = 1.0 + 2.0003 / 60.0;
assertEquals(longitude, position.getLongitude());
Double speed = 1.02;
assertEquals(speed, position.getSpeed());
Long deviceId = new Long(1);
assertEquals(deviceId, position.getDeviceId());
}
}
|