All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmlunit.placeholder.package-info Maven / Gradle / Ivy

The newest version!
/*
  This file is licensed to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

/**
 * This package contains experimental support for configuring parts of
 * the test engine by using {@code ${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 {@code * ${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 {@link * org.xmlunit.placeholder.PlaceholderHandler} per keyword. The class {@link * org.xmlunit.placeholder.PlaceholderDifferenceEvaluator} loads all implementations via * {@code 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 {@code ${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 * ${, }, {@code (}, {@code )}, and {@code * ,}) can be configured explicitly.

* *

Keywords currently supported by built-in handlers are:

* *
    * *
  • {@code ${xmlunit.ignore}} which makes XMLUnit ignore the nested * text or attribute completely. This is handled by {@link * org.xmlunit.placeholder.IgnorePlaceholderHandler}.
  • * *
  • {@code ${xmlunit.isNumber}} makes the comparison pass if the * textual content of the element or attributes looks like a * number. This is handled by {@link org.xmlunit.placeholder.IsNumberPlaceholderHandler}.
  • * *
  • {@code ${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 by * {@link org.xmlunit.placeholder.MatchesRegexPlaceholderHandler}.
  • * *
  • {@code ${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 a {@link * java.text.SimpleDateFormat} pattern to use when trying to parse the * test. This is handled by {@link org.xmlunit.placeholder.IsDateTimePlaceholderHandler}.
  • * *
* *

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 {@link org.xmlunit.placeholder.PlaceholderSupport} to add it to a * {@link org.xmlunit.builder.DiffBuilder} or {@code * org.xmlunit.matchers.CompareMatcher} instance. The alternative * approach is to create an instance of {@link * org.xmlunit.placeholder.PlaceholderDifferenceEvaluator} as a {@link * org.xmlunit.diff.DifferenceEvaluator} and add it to the builder * yourself.

* * @since 2.6.0 */ package org.xmlunit.placeholder;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy