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

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

import org.assertj.core.api.AbstractAssert;
import org.w3c.dom.Node;
import org.xmlunit.xpath.XPathEngine;

import static org.xmlunit.assertj.error.ShouldHaveAttribute.shouldHaveAttribute;
import static org.xmlunit.assertj.error.ShouldHaveAttribute.shouldHaveAttributeWithValue;
import static org.xmlunit.assertj.error.ShouldHaveXPath.shouldHaveXPath;
import static org.xmlunit.assertj.error.ShouldNotHaveAttribute.shouldNotHaveAttribute;
import static org.xmlunit.assertj.error.ShouldNotHaveAttribute.shouldNotHaveAttributeWithValue;

/**
 * Assertion methods for {@link Node}.
 *
 * 

Simple Example

* *
 * import static org.xmlunit.assertj.XmlAssert.assertThat;
 *
 * final String xml = "<a><b attr=\"abc\"></b></a>";
 *
 * assertThat(xml).nodesByXPath("//a/b").first().hasAttribute("attr", "abc").
 * 
* * @since XMLUnit 2.6.1 */ public class SingleNodeAssert extends AbstractAssert { private final XPathEngine engine; SingleNodeAssert(Node node, XPathEngine engine) { super(node, SingleNodeAssert.class); this.engine = engine; } /** * Verifies that the actual node has attribute with given name. * * @throws AssertionError if the actual node is {@code null}. * @throws AssertionError if node has not attribute with given name. * @param attributeName name of the expected attribute * @return this */ public SingleNodeAssert hasAttribute(String attributeName) { isNotNull(); final String value = NodeUtils.attributeValue(actual, attributeName); if (value == null) { throwAssertionError(shouldHaveAttribute(actual.getNodeName(), attributeName)); } return this; } /** * Verifies that the actual node has attribute with given name and value. * * @throws AssertionError if the actual node is {@code null}. * @throws AssertionError if node has not attribute with given name and value. * @param attributeName name of the expected attribute * @param attributeValue expected attribute value * @return this */ public SingleNodeAssert hasAttribute(String attributeName, String attributeValue) { isNotNull(); final String value = NodeUtils.attributeValue(actual, attributeName); if (value == null || !value.equals(attributeValue)) { throwAssertionError(shouldHaveAttributeWithValue(actual.getNodeName(), attributeName, attributeValue)); } return this; } /** * Verifies that the actual node has not attribute with given name. * * @throws AssertionError if the actual node is {@code null}. * @throws AssertionError if node has attribute with given name. * @param attributeName name of the not-expected attribute * @return this */ public SingleNodeAssert doesNotHaveAttribute(String attributeName) { isNotNull(); final String value = NodeUtils.attributeValue(actual, attributeName); if (value != null) { throwAssertionError(shouldNotHaveAttribute(actual.getNodeName(), attributeName)); } return this; } /** * Verifies that the actual node has not attribute with given name and value. * * @throws AssertionError if the actual node is {@code null}. * @throws AssertionError if node has attribute with given name and value. * @param attributeName name of the expected attribute * @param attributeValue not-expected attribute value * @return this */ public SingleNodeAssert doesNotHaveAttribute(String attributeName, String attributeValue) { isNotNull(); final String value = NodeUtils.attributeValue(actual, attributeName); if (value != null && value.equals(attributeValue)) { throwAssertionError(shouldNotHaveAttributeWithValue(actual.getNodeName(), attributeName, attributeValue)); } return this; } /** * Verifies that the actual node or any child node matches given {@code xPath}. * The actual node is the root for {@code xPath}. * * @throws AssertionError if the actual node is {@code null}. * @throws AssertionError if node has attribute with given name and value. * @param xPath XPath expression to check * @return this * @since XMLUnit 2.6.4 */ public SingleNodeAssert hasXPath(String xPath) { isNotNull(); if (isNodeSetEmpty(xPath)) { throwAssertionError(shouldHaveXPath(actual.getNodeName(), xPath)); } return this; } boolean isNodeSetEmpty(String xPath) { return !engine.selectNodes(xPath, actual).iterator().hasNext(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy