diff options
author | Abyss777 <abyss@fox5.ru> | 2016-10-07 11:36:12 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-10-07 11:36:12 +0500 |
commit | 7ee3482b31288d29d7a46fbdf4ffba6732159a89 (patch) | |
tree | a50ca9d1c30ed6f938c79cabfc0ff02672b42aa2 /test/org/traccar/protocol | |
parent | 4b816255f5e55cddd8ea022b940f33bd204aeb60 (diff) | |
download | trackermap-server-7ee3482b31288d29d7a46fbdf4ffba6732159a89.tar.gz trackermap-server-7ee3482b31288d29d7a46fbdf4ffba6732159a89.tar.bz2 trackermap-server-7ee3482b31288d29d7a46fbdf4ffba6732159a89.zip |
- Handle GTVER packets
- Added few alarms
Diffstat (limited to 'test/org/traccar/protocol')
-rw-r--r-- | test/org/traccar/protocol/Gl200ProtocolDecoderTest.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Gl200ProtocolDecoderTest.java b/test/org/traccar/protocol/Gl200ProtocolDecoderTest.java index c2cdafb49..83f8b02f1 100644 --- a/test/org/traccar/protocol/Gl200ProtocolDecoderTest.java +++ b/test/org/traccar/protocol/Gl200ProtocolDecoderTest.java @@ -162,6 +162,21 @@ public class Gl200ProtocolDecoderTest extends ProtocolTest { verifyPosition(decoder, text( "+RESP:GTRTL,280100,A1000043D20139,,0,0,1,1,0.1,321,239.1,-76.661047,39.832501,20150615114455,0310,0484,00600019,0A52,,87,20150615074456,031E$")); + + verifyAttributes(decoder, text( + "+BUFF:GTBPL,1A0800,860599000773978,GL300,3.55,0,0.0,0,257.1,60.565437,56.818277,20161006070553,,,,,204.7,20161006071028,0C75$")); + + verifyAttributes(decoder, text( + "+RESP:GTTEM,1A0102,860599000000448,,3,33,0,5.8,0,33.4,117.201191,31.832502,20130109061410,0460,0000,5678,2079,,20130109061517,0091$")); + + verifyAttributes(decoder, text( + "+RESP:GTJDR,0A0102,135790246811220,,0,4.3,92,70.0,121.354335,31.222073,20090214013254,0460,0000,18d8,6141,00,20090214093254,11F0$")); + + verifyAttributes(decoder, text( + "+RESP:GTJDS,0A0102,135790246811220,,2,0,4.3,92,70.0,121.354335,31.222073,20090214013254,0460,0000,18d8,6141,00,20090214093254,11F0$")); + + verifyAttributes(decoder, text( + "+RESP:GTVER,1A0800,860599000773978,GL300,GL300,0A03,0103,20161007041531,10F8$")); verifyNothing(decoder, text( "+ACK:GTHBD,1A0401,135790246811220,,20100214093254,11F0")); |