You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Biestro (Jira)" <ji...@apache.org> on 2021/06/29 07:00:03 UTC

[jira] [Closed] (JEXL-159) Difference in handling between Jexl expression evaluation and LazyDynaMap

     [ https://issues.apache.org/jira/browse/JEXL-159?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Biestro closed JEXL-159.
------------------------------

> Difference in handling between Jexl expression evaluation and LazyDynaMap
> -------------------------------------------------------------------------
>
>                 Key: JEXL-159
>                 URL: https://issues.apache.org/jira/browse/JEXL-159
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 2.1.1
>            Reporter: Mike Day
>            Priority: Major
>             Fix For: 3.1
>
>
> LazyDynaMap seems to support a full stop in the attribute name, but the Jexl expression evaluation expects this to signify a nested object.
> The second test below fails, even though the first assertion is correct. Please can you take a look?
> {code}
> public class JexlTest {
> 	@Test
> 	public void testUnderscoreInName() {
>         JexlEngine jexl = new JexlEngine();
>         String jexlExp = "(x.length_mm * x.width)";
>         Expression e = jexl.createExpression( jexlExp );
>         JexlContext jc = new MapContext();
>         LazyDynaMap object = new LazyDynaMap();
>         object.set("length_mm", "10.0"); 
>         object.set("width", "5.0");
>         jc.set("x", object );
> 	    assertEquals(null, ((Double)e.evaluate(jc)).doubleValue(), 50d, 0d);
>    }
> 	@Test
> 	public void testFullStopInName() {
>         JexlEngine jexl = new JexlEngine();
>         String jexlExp = "(x.length.mm * x.width)";
>         Expression e = jexl.createExpression( jexlExp );
>         JexlContext jc = new MapContext();
>         LazyDynaMap object = new LazyDynaMap();
>         object.set("length.mm", "10.0"); 
>         object.set("width", "5.0");
>         
>         assertEquals(null, object.get("length.mm"), "10.0");
>         jc.set("x", object );
> 	    assertEquals(null, ((Double)e.evaluate(jc)).doubleValue(), 50d, 0d);
> 	}
> 	
> 	@Test
> 	public void testFullStopInNameMakingSubObject() {
>         JexlEngine jexl = new JexlEngine();
>         String jexlExp = "(x.length.mm * x.width)";
>         Expression e = jexl.createExpression( jexlExp );
>         JexlContext jc = new MapContext();
>         LazyDynaMap object = new LazyDynaMap();
>         LazyDynaMap subObject = new LazyDynaMap();
>         object.set("length", subObject);
>         subObject.set("mm", "10.0");
>         object.set("width", "5.0");
>         
>         jc.set("x", object );
> 	    assertEquals(null, ((Double)e.evaluate(jc)).doubleValue(), 50d, 0d);
> 	}
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)