aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/processing
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-10-30 13:27:24 +0500
committerAbyss777 <abyss@fox5.ru>2017-10-30 13:27:24 +0500
commitaa606dfd6159dc7e0d1ab35f656654db03c1cdec (patch)
tree259ef61225b55c87ae8dbf51bbc0a0514975c5c3 /test/org/traccar/processing
parenta23453cdeb6285db91af5544686192c966ad03c4 (diff)
downloadtrackermap-server-aa606dfd6159dc7e0d1ab35f656654db03c1cdec.tar.gz
trackermap-server-aa606dfd6159dc7e0d1ab35f656654db03c1cdec.tar.bz2
trackermap-server-aa606dfd6159dc7e0d1ab35f656654db03c1cdec.zip
Map "Math" to Computed Attributes context
Diffstat (limited to 'test/org/traccar/processing')
-rw-r--r--test/org/traccar/processing/ComputedAttributesTest.java17
1 files changed, 10 insertions, 7 deletions
diff --git a/test/org/traccar/processing/ComputedAttributesTest.java b/test/org/traccar/processing/ComputedAttributesTest.java
index ac4331c6d..fe898ff54 100644
--- a/test/org/traccar/processing/ComputedAttributesTest.java
+++ b/test/org/traccar/processing/ComputedAttributesTest.java
@@ -8,7 +8,7 @@ import org.traccar.model.Attribute;
import org.traccar.model.Position;
public class ComputedAttributesTest {
-
+
@Test
public void testComputedAttributes() {
Position position = new Position();
@@ -39,26 +39,29 @@ public class ComputedAttributesTest {
attribute.setExpression("if (event == 42) \"lowBattery\"");
Assert.assertEquals("lowBattery", computedAttributesHandler.computeAttribute(attribute, position));
-
+
attribute.setExpression("speed > 5 && valid");
Assert.assertEquals(false, computedAttributesHandler.computeAttribute(attribute, position));
-
+
attribute.setExpression("fixTime");
Assert.assertEquals(date, computedAttributesHandler.computeAttribute(attribute, position));
-
+
+ attribute.setExpression("math:pow(adc1, 2)");
+ Assert.assertEquals(16384.0, computedAttributesHandler.computeAttribute(attribute, position));
+
// modification tests
attribute.setExpression("adc1 = 256");
computedAttributesHandler.computeAttribute(attribute, position);
Assert.assertEquals(128, position.getInteger("adc1"));
-
+
attribute.setExpression("result = \"fail\"");
computedAttributesHandler.computeAttribute(attribute, position);
Assert.assertEquals("success", position.getString("result"));
-
+
attribute.setExpression("fixTime = \"2017-10-18 10:00:01\"");
computedAttributesHandler.computeAttribute(attribute, position);
Assert.assertEquals(date, position.getFixTime());
-
+
}
}