diff options
author | Abyss777 <abyss@fox5.ru> | 2017-10-30 13:27:24 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-10-30 13:27:24 +0500 |
commit | aa606dfd6159dc7e0d1ab35f656654db03c1cdec (patch) | |
tree | 259ef61225b55c87ae8dbf51bbc0a0514975c5c3 /test/org/traccar | |
parent | a23453cdeb6285db91af5544686192c966ad03c4 (diff) | |
download | trackermap-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')
-rw-r--r-- | test/org/traccar/processing/ComputedAttributesTest.java | 17 |
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()); - + } } |