org.xmlunit.assertj.SingleNodeAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlunit-assertj Show documentation
Show all versions of xmlunit-assertj Show documentation
XMLUnit with AssertJ fluent API
/*
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.
*/
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();
}
}