aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-02-10 05:46:45 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-02-10 05:46:45 +1300
commitbf02ae6cdfc1912e1fe7b87e0790ae89028717f4 (patch)
tree7981b61db647e4e88da79908e58eb2d534bac522 /test
parent034a0b6b4fc1fe549d893d7acc61906c8221f2e1 (diff)
downloadtrackermap-server-bf02ae6cdfc1912e1fe7b87e0790ae89028717f4.tar.gz
trackermap-server-bf02ae6cdfc1912e1fe7b87e0790ae89028717f4.tar.bz2
trackermap-server-bf02ae6cdfc1912e1fe7b87e0790ae89028717f4.zip
Refactor Suntech protocol decoder
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/SuntechProtocolDecoderTest.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/SuntechProtocolDecoderTest.java b/test/org/traccar/protocol/SuntechProtocolDecoderTest.java
index 78e1fb1de..ba2848348 100644
--- a/test/org/traccar/protocol/SuntechProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/SuntechProtocolDecoderTest.java
@@ -11,9 +11,6 @@ public class SuntechProtocolDecoderTest extends ProtocolTest {
SuntechProtocolDecoder decoder = new SuntechProtocolDecoder(new SuntechProtocol());
verifyPosition(decoder, text(
- "ST910;Location;560266;500;20161207;21:33:11;af910be101;-25.504234;-049.278003;000.080;000.00;1;10054889;70;1;1;1311;02;724;06;-317;3041;2;10;92"));
-
- verifyPosition(decoder, text(
"ST300ALT;205174410;14;712;20110101;00:00:07;00000;+20.593923;-100.336716;000.000;000.00;0;0;0;16.57;000000;81;000000;4.0;0;0.00;0000;0000;0;0"));
verifyNothing(decoder, text(
@@ -21,7 +18,7 @@ public class SuntechProtocolDecoderTest extends ProtocolTest {
verifyPosition(decoder, text(
"ST910;Alert;123456;410;20141018;18:30:12;+37.478774;+126.889690;000.000;000.00;0;4.0;1;6002"),
- position("2014-10-18 18:30:12.000", true, 37.47877, 126.88969));
+ position("2014-10-18 18:30:12.000", false, 37.47877, 126.88969));
verifyPosition(decoder, text(
"ST910;Alert;123456;410;20141018;18:30:12;+37.478774;+126.889690;000.000;000.00;0;4.0;1;6002;02;0;0310000100;450;01;-282;70;255;3;0"));
@@ -60,6 +57,11 @@ public class SuntechProtocolDecoderTest extends ProtocolTest {
verifyPosition(decoder, text(
"ST910;Emergency;205283272;500;20150716;19:12:01;-23.659019;-046.695403;000.602;000.00;0;4.2;1;1;02;10820;2fdb090736;724;05;0;2311;255;0;100"));
+ decoder.setProtocolType(1);
+
+ verifyPosition(decoder, text(
+ "ST910;Location;560266;500;20161207;21:33:11;af910be101;-25.504234;-049.278003;000.080;000.00;1;10054889;70;1;1;1311;02;724;06;-317;3041;2;10;92"));
+
}
}