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 2015/03/19 16:18:38 UTC

[jira] [Updated] (JEXL-130) Ternary Conditional fails for Object values

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

Henri Biestro updated JEXL-130:
-------------------------------
    Fix Version/s: 3.0

> Ternary Conditional fails for Object values
> -------------------------------------------
>
>                 Key: JEXL-130
>                 URL: https://issues.apache.org/jira/browse/JEXL-130
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 2.1, 2.1.1
>            Reporter: William Bakker
>            Assignee: Henri Biestro
>             Fix For: 2.1.2, 3.0
>
>
> The documentation states on http://commons.apache.org/jexl/reference/syntax.html#Operators :
> {quote}
> The usual ternary conditional operator condition ? if_true : if_false operator can be used as well as the
> abbreviation value ?: if_false which returns the value if its evaluation is defined, non-null and non-false
> {quote}
> For object values however, it seems that this definition no longer holds in 2.1 and higher.
> The following unittests run successfully in 2.0.1, but the test "ternaryConditional_mapContainsObject_shouldReturnObject" fails in 2.1 and 2.1.1.
> {code}
> import org.apache.commons.jexl2.*;
> import org.junit.*;
> public class JexlTernaryConditionalTest
> {
>     @Test
>     public void ternaryConditional_mapContainsString_shouldReturnString()
>     {
>         String myName = "Test.Name";
>         Object myValue = "Test.Value";
>         JexlEngine myJexlEngine = new JexlEngine();
>         MapContext myMapContext = new MapContext();
>         myMapContext.set(myName, myValue);
>         Object myObjectWithTernaryConditional = myJexlEngine.createScript(myName + "?:null").execute(myMapContext);
>         Assert.assertEquals(myValue, myObjectWithTernaryConditional);
>     }
>     @Test
>     public void ternaryConditional_mapContainsObject_shouldReturnObject()
>     {
>         String myName = "Test.Name";
>         Object myValue = new Object();
>         JexlEngine myJexlEngine = new JexlEngine();
>         MapContext myMapContext = new MapContext();
>         myMapContext.set(myName, myValue);
>         Object myObjectWithTernaryConditional = myJexlEngine.createScript(myName + "?:null").execute(myMapContext);
>         Assert.assertEquals(myValue, myObjectWithTernaryConditional);
>     }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)