Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7B97F17473 for ; Fri, 26 Jun 2015 11:16:05 +0000 (UTC) Received: (qmail 5071 invoked by uid 500); 26 Jun 2015 11:16:05 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 4959 invoked by uid 500); 26 Jun 2015 11:16:05 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 4662 invoked by uid 99); 26 Jun 2015 11:16:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2015 11:16:05 +0000 Date: Fri, 26 Jun 2015 11:16:05 +0000 (UTC) From: "Mike Day (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (JEXL-159) Difference in handling between Jexl expression evaluation and LazyDynaMap MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Mike Day created JEXL-159: ----------------------------- Summary: 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 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); } } -- This message was sent by Atlassian JIRA (v6.3.4#6332)