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

org.xmlunit.assertj.XmlAssert Maven / Gradle / Ivy

/*
  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.
*/
package org.xmlunit.assertj;

import org.assertj.core.api.AbstractAssert;
import org.xmlunit.builder.Input;

import java.util.Map;

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.validation.Schema;
import javax.xml.xpath.XPathFactory;

import static org.xmlunit.assertj.error.ShouldNotHaveThrown.shouldNotHaveThrown;


/**
 * Entry point for fluent interface for writing assertions based on AssertJ library.
 *
 * 

All types which are supported by {@link Input#from(Object)} * can be used as input for {@link XmlAssert#assertThat(Object)}

* *

Simple Example

* *
 *    import static org.xmlunit.assertj.XmlAssert.assertThat;
 *
 *    final String xml = "<a><b attr=\"abc\"></b></a>";
 *
 *    assertThat(xml).nodesByXPath("//a/b/@attr").exist();
 *    assertThat(xml).hasXPath("//a/b/@attr");
 *    assertThat(xml).doesNotHaveXPath("//a/b/c");
 * 
* *

Example with namespace mapping

* *
 *    String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
 *          "<feed xmlns=\"http://www.w3.org/2005/Atom\">" +
 *          "   <title>title</title>" +
 *          "   <entry>" +
 *          "       <title>title1</title>" +
 *          "       <id>id1</id>" +
 *          "   </entry>" +
 *          "</feed>";
 *
 *    HashMap<String, String> prefix2Uri = new HashMap<String, String>();
 *    prefix2Uri.put("atom", "http://www.w3.org/2005/Atom");
 *    assertThat(xml)
 *          .withNamespaceContext(prefix2Uri)
 *          .hasXPath("//atom:feed/atom:entry/atom:id"));
 * 
* *

Testing XPath expression value

* *
 *    String xml = "<a><b attr=\"abc\"></b></a>";
 *
 *    assertThat(xml).valueByXPath("//a/b/@attr").isEqualTo("abc");
 *    assertThat(xml).valueByXPath("count(//a/b)").isEqualTo(1);
 * 
* *

Example with XML validation

* *
 *    String xml = "<a><b attr=\"abc\"></b></a>";
 *    StreamSource xsd = new StreamSource(new File("schema.xsd"));
 *
 *    assertThat(xml).isValid();
 *    assertThat(xml).isValidAgainst(xsd);
 * 
* *

Example with XMLs comparision

* *
 *    final String control = "<a><b attr=\"abc\"></b></a>";
 *    final String test = "<a><b attr=\"xyz\"></b></a>";
 *
 *    assertThat(test).and(control).areIdentical();
 *    assertThat(test).and(control).areNotIdentical();
 *    assertThat(test).and(control).areSimilar();
 *    assertThat(test).and(control).areNotSimilar();
 *
 *    assertThat(test).and(control)
 *          .normalizeWhitespace()
 *          .ignoreComments()
 *          .withNodeMatcher(new DefaultNodeMatcher(new MyElementSelector()))
 *          .withDifferenceEvaluator(DifferenceEvaluators.chain(
 *               DifferenceEvaluators.Default, new MyDifferenceEvaluator()));
 *          .areIdentical();
 * 
* * @since XMLUnit 2.6.1 */ public class XmlAssert extends AbstractAssert { private XmlAssertConfig config; private XmlAssert(Object o) { super(o, XmlAssert.class); this.config = new XmlAssertConfig(getWritableAssertionInfo()); } /** * Factory method for {@link XmlAssert} * * @param o object with type supported by {@link Input#from(Object)} */ public static XmlAssert assertThat(Object o) { return new XmlAssert(o); } /** * Sets the {@link DocumentBuilderFactory} to use when creating a * {@link org.w3c.dom.Document} from the XML input. * * @throws AssertionError if the actual value is {@code null}. */ public XmlAssert withDocumentBuilderFactory(DocumentBuilderFactory dbf) { isNotNull(); this.config.dbf = dbf; return this; } /** * Sets the {@link XPathFactory} to use for XPath related assertions. * * @throws AssertionError if the actual value is {@code null}. */ public XmlAssert withXPathFactory(XPathFactory xpf) { isNotNull(); this.config.xpf = xpf; return this; } /** * Utility method used for creating a namespace context mapping to be used in XPath matching. * * @param prefix2Uri prefix2Uri maps from prefix to namespace URI. It is used to resolve * XML namespace prefixes in the XPath expression * @throws AssertionError if the actual value is {@code null}. */ public XmlAssert withNamespaceContext(Map prefix2Uri) { isNotNull(); this.config.prefix2Uri = prefix2Uri; return this; } /** * Create {@link MultipleNodeAssert} from nodes selecting by given xPath. * * @throws AssertionError if the xPath is blank. * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value provide invalid XML. */ public MultipleNodeAssert nodesByXPath(String xPath) { isNotNull(); try { return MultipleNodeAssert.create(actual, xPath, config); } catch (Exception e) { throwAssertionError(shouldNotHaveThrown(e)); } return null; //fix compile issue } /** * Equivalent for
{@link #nodesByXPath(String) nodesByXPath(xPath)}.{@link MultipleNodeAssert#exist() exist()}
*/ public MultipleNodeAssert hasXPath(String xPath) { return nodesByXPath(xPath).exist(); } /** * Equivalent for
{@link #nodesByXPath(String) nodesByXPath(xPath)}.{@link MultipleNodeAssert#doNotExist() doNotExist()}
*/ public void doesNotHaveXPath(String xPath) { nodesByXPath(xPath).doNotExist(); } /** * Create {@link ValueAssert} from value of given xPath expression. * * @throws AssertionError if the xPath is blank. * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value provide invalid XML. */ public ValueAssert valueByXPath(String xPath) { isNotNull(); try { return ValueAssert.create(actual, xPath, config); } catch (Exception e) { throwAssertionError(shouldNotHaveThrown(e)); } return null; //fix compile issue } /** * Create {@link CompareAssert} for given control XML source and actual XML source. * * @throws AssertionError if the actual value is {@code null} * @throws AssertionError if the control value is {@code null} */ public CompareAssert and(Object control) { isNotNull(); try { return CompareAssert.create(actual, control, config); } catch (Exception e) { throwAssertionError(shouldNotHaveThrown(e)); } return null; //fix compile issue } /** * Check if actual value is valid against W3C XML Schema * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is invalid */ public XmlAssert isValid() { isNotNull(); ValidationAssert.create(actual, config).isValid(); return this; } /** * Check if actual value is not valid against W3C XML Schema * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is valid */ public XmlAssert isInvalid() { isNotNull(); ValidationAssert.create(actual, config).isInvalid(); return this; } /** * Check if actual value is valid against given schema * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is invalid */ public XmlAssert isValidAgainst(Schema schema) { isNotNull(); ValidationAssert.create(actual, schema, config).isValid(); return this; } /** * Check if actual value is not valid against given schema * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is valid */ public XmlAssert isNotValidAgainst(Schema schema) { isNotNull(); ValidationAssert.create(actual, schema, config).isInvalid(); return this; } /** * Check if actual value is valid against schema provided by given sources * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is invalid */ public XmlAssert isValidAgainst(Object... schemaSources) { isNotNull(); ValidationAssert.create(actual, config, schemaSources).isValid(); return this; } /** * Check if actual value is not valid against schema provided by given sources * * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is valid */ public XmlAssert isNotValidAgainst(Object... schemaSources) { isNotNull(); ValidationAssert.create(actual, config, schemaSources).isInvalid(); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy