Package org.xmlunit.placeholder
${xmlunit.KEYWORD}
sequences
inside the control document.
This package and the whole module are considered experimental and any API may change between releases of XMLUnit.
The placeholder feature allows a placeholder sequence of
${xmlunit.KEYWORD(args...)}
to be used as nested text in elements or as
attribute values of the control document and trigger special
handling based on the keyword.
The "special handling" is controlled by an instance of PlaceholderHandler
per keyword. The class PlaceholderDifferenceEvaluator
loads all implementations via
java.util.ServiceLoader
so it is possible to extend the set
of handlers via your own modules.
The placeholder sequence can take any number of string values as
arguments in the form ${xmlunit.KEYWORD(args1,arg2)}
- if
no arguments are used the parentheses can be omitted
completely. Arguments are not quoted, whitespace inside of the
argument list is significant. All separators (by default
${
, }
, (
, )
, and
,
) can be configured explicitly.
Keywords currently supported by built-in handlers are:
${xmlunit.ignore}
which makes XMLUnit ignore the nested text or attribute completely. This is handled byIgnorePlaceholderHandler
.${xmlunit.isNumber}
makes the comparison pass if the textual content of the element or attributes looks like a number. This is handled byIsNumberPlaceholderHandler
.${xmlunit.matchesRegex}
makes the comparison pass if the textual content of the element or attribute matches the regular expression specified as the first (and only) argument. If there is no argument at all, the comparison will fail. This is handled byMatchesRegexPlaceholderHandler
.${xmlunit.isDateTime}
makes the comparison pass if the textual content of the element or attributes looks like a date or datetime in the current locale or parsed by ISO rules. An optional argument can be used to specify aSimpleDateFormat
pattern to use when trying to parse the test. This is handled byIsDateTimePlaceholderHandler
.
The default delimiters of ${
and }
can
be overwritten using custom regular expressions.
The easiest way to activate the placeholder feature is to use
one of the methods in PlaceholderSupport
to add it to a
DiffBuilder
or
org.xmlunit.matchers.CompareMatcher
instance. The alternative
approach is to create an instance of PlaceholderDifferenceEvaluator
as a DifferenceEvaluator
and add it to the builder
yourself.
- Since:
- 2.6.0
-
ClassDescriptionHandler for the "ignore" placeholder keyword.Handler for the
isDateTime
placeholder keyword.Handler for theisNumber
placeholder keyword.Handler for thematchesRegex()
placeholder keyword.This class is used to add placeholder feature to XML comparison.Interface implemented by classes that are responsible for a placeholder keyword.Adds support for the placeholder feature to aDifferenceEngineConfigurer
- likeDiffBuilder
ororg.xmlunit.matchers.CompareMatcher
.