diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2011-11-11 12:18:08 +0000 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2011-11-11 12:18:08 +0000 |
commit | a88479f670fea8f6c7f5fdf13c7dffa67772d854 (patch) | |
tree | 3d9557e949a0002ed7ef186163cf270c7502a71e /test/net/sourceforge/opentracking/protocol/xexun | |
parent | 139177767ab256033a5c3b71ea84b92c1dcbe504 (diff) | |
download | traccar-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.tar.gz traccar-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.tar.bz2 traccar-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.zip |
Diffstat (limited to 'test/net/sourceforge/opentracking/protocol/xexun')
-rw-r--r-- | test/net/sourceforge/opentracking/protocol/xexun/XexunProtocolDecoderTest.java | 36 |
1 files changed, 9 insertions, 27 deletions
diff --git a/test/net/sourceforge/opentracking/protocol/xexun/XexunProtocolDecoderTest.java b/test/net/sourceforge/opentracking/protocol/xexun/XexunProtocolDecoderTest.java index 1f7ad8845..ba374a3ed 100644 --- a/test/net/sourceforge/opentracking/protocol/xexun/XexunProtocolDecoderTest.java +++ b/test/net/sourceforge/opentracking/protocol/xexun/XexunProtocolDecoderTest.java @@ -29,39 +29,21 @@ public class XexunProtocolDecoderTest { @Test public void testDecode() throws Exception { - - String testMsg = - "GPRMC,150120.000,A,3346.4463,S,15057.3083,E,0.0,117.4,010911,,,A*76,F," + - "imei:351525010943661,"; - //"GPRMC,010203.000,A,0102.0003,N,00102.0003,E,1.02,1.02,010203,,,A*00,F,, " + - //"imei:10000000000000,"; - //"GPRMC,233842.000,A,5001.3060,N,01429.3243,E,0.00,,210211,,,A*74,F," + - //"imei:354776030495631,"; - //1103100803,+79629503178, - //"GPRMC,080303.000,A,5546.7313,N,03738.6005,E,0.56,160.13,100311,,,A*6A,L,imei:354778030461167,"; - + XexunProtocolDecoder decoder = new XexunProtocolDecoder(new TestDataManager(), 0); - Position position = (Position) decoder.decode(null, null, testMsg); - Date time = new GregorianCalendar(2003, 1, 1, 1, 2, 3).getTime(); - assertEquals(time, position.getTime()); + assertNotNull(decoder.decode(null, null, + "GPRMC,150120.000,A,3346.4463,S,15057.3083,E,0.0,117.4,010911,,,A*76,F,imei:351525010943661,")); - assertEquals(true, position.getValid()); + assertNotNull(decoder.decode(null, null, + "GPRMC,010203.000,A,0102.0003,N,00102.0003,E,1.02,1.02,010203,,,A*00,F,,imei:10000000000000,")); - Double latitude = 1.0 + 2.0003 / 60.0; - assertEquals(latitude, position.getLatitude()); + assertNotNull(decoder.decode(null, null, + "GPRMC,233842.000,A,5001.3060,N,01429.3243,E,0.00,,210211,,,A*74,F,imei:354776030495631,")); - Double longitude = 1.0 + 2.0003 / 60.0; - assertEquals(longitude, position.getLongitude()); + assertNotNull(decoder.decode(null, null, + "GPRMC,080303.000,A,5546.7313,N,03738.6005,E,0.56,160.13,100311,,,A*6A,L,imei:354778030461167,")); - Double speed = 1.02; - assertEquals(speed, position.getSpeed()); - - Double course = 1.02; - assertEquals(course, position.getCourse()); - - Long deviceId = new Long(1); - assertEquals(deviceId, position.getDeviceId()); } } |