aboutsummaryrefslogtreecommitdiff
path: root/test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2010-04-17 15:28:14 +0000
committerAnton Tananaev <anton.tananaev@gmail.com>2010-04-17 15:28:14 +0000
commit79cb531f8511d0a4f34327b0df4f858bd7cf68f3 (patch)
treeb27164c40e0f0c2e2cc3c28c9f83051f34963350 /test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java
parentf519b288d61b29ed35be566a297cd3282bcb2820 (diff)
downloadtraccar-server-79cb531f8511d0a4f34327b0df4f858bd7cf68f3.tar.gz
traccar-server-79cb531f8511d0a4f34327b0df4f858bd7cf68f3.tar.bz2
traccar-server-79cb531f8511d0a4f34327b0df4f858bd7cf68f3.zip
Diffstat (limited to 'test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java')
-rw-r--r--test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java b/test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java
new file mode 100644
index 000000000..3ec430db2
--- /dev/null
+++ b/test/net/sourceforge/opentracking/protocol/gps103/Gps103ProtocolDecoderTest.java
@@ -0,0 +1,59 @@
+package net.sourceforge.opentracking.protocol.gps103;
+
+import java.util.Date;
+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 Gps103ProtocolDecoderTest {
+
+ 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 = "##,imei:10000000000000,A";
+
+ String testMsg2 = "imei:10000000000000,help me,1004171910,,F,010203.000,A,0102.0003,N,00102.0003,E,1.02,";
+
+ Gps103ProtocolDecoder decoder = new Gps103ProtocolDecoder(new TestDataManager());
+ assertNull(decoder.decode(null, null, testMsg1));
+ Position position = (Position) decoder.decode(null, null, testMsg2);
+
+ //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());
+ }
+
+} \ No newline at end of file