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

org.xmlunit.assertj.SingleNodeAssert 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.w3c.dom.Node;
import org.xmlunit.xpath.JAXPXPathEngine;

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 JAXPXPathEngine engine; SingleNodeAssert(Node node, JAXPXPathEngine 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. */ 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. */ 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. */ 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. */ 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. * @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