[core] Inconsistent boolean value representation with Jaxen #1244
Labels
a:bug
PMD crashes or fails to analyse a file.
in:xpath
Relating to xpath support at large, eg Jaxen / Saxon, custom functions, attribute resolution
was:wontfix
The problem
Our Jaxen adapter treats boolean attribute values as strings, ie an attribute with the Java value
true
will have the XPath string value'true'
, and same forfalse
.The problem with that is that it's inconsistent with the XPath spec. In XPath, strings are truthy if they are non-empty. That means the string
'false'
is in fact truthy. Moreover, the only way to obtain boolean values in both XPath 1.0 and 2.0 is through the functionstrue()
andfalse()
.So for example, given:
and the XPath query (
<val>
is a placeholder):We have the following evaluation results, depending on the value of
<val>
and the XPath engine used.n
means no matchy
means a match<val>
:'true'
'false'
true()
false()
Saxon's behaviour is expected, it even has a type error when we try to compare the boolean with a string (at least in the designer).
Jaxen, on the other hand, is confused when using the boolean XPath functions:
'false'
is truthy so@Interface=true()
is true, because@Interface
is'false'
@Interface=false()
is falseThis is the inverse of what we'd expect.
So what?
Due to that inconsistency, all XPath 1.0 rules (so nearly all our XPath rules, and probably the majority of user rules as well) compare boolean attributes with string values.
The problem is that it's incompatibile with the correct behaviour of Saxon
Because of that, Jaxen rules cannot be transparently ported to Saxon without transforming at least these comparisons to use the boolean value functions. If they aren't transformed, we get type errors/ unseen failures, e.g. #902
Possible solution
If we want to drop Jaxen, we'd probably need to transform the faulty comparisons before feeding the expression to Saxon. #1243 could be a way to do that
Source
The faulty source is here:
pmd/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/xpath/Attribute.java
Lines 84 to 94 in 64ee977
Instead of returning just String.valueOf, this function should be returning a falsy (empty) string for
false
values, instead of'false'
.The same happens for properties:
pmd/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/xpath/JaxenXPathRuleQuery.java
Lines 256 to 257 in 64ee977
The text was updated successfully, but these errors were encountered: