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

org.custommonkey.xmlunit.ElementNameAndAttributeQualifier Maven / Gradle / Ivy

The newest version!
/*
******************************************************************
Copyright (c) 2001-2007,2015,2022 Jeff Martin, Tim Bacon
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

        * Redistributions of source code must retain the above copyright
          notice, this list of conditions and the following disclaimer.
        * Redistributions in binary form must reproduce the above
          copyright notice, this list of conditions and the following
          disclaimer in the documentation and/or other materials provided
          with the distribution.
        * Neither the name of the XMLUnit nor the names
          of its contributors may be used to endorse or promote products
          derived from this software without specific prior written
          permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

******************************************************************
*/

package org.custommonkey.xmlunit;

import java.util.Arrays;
import org.xmlunit.diff.ElementSelector;
import org.xmlunit.diff.ElementSelectors;
import org.w3c.dom.Attr;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;

/**
 * More complex interface implementation that tests two elements for tag name
 * and attribute name comparability.
 * @see DifferenceEngine#compareNodeList(java.util.List, java.util.List, int, DifferenceListener, ElementQualifier)
 * @see Diff#overrideElementQualifier(ElementQualifier)
 */
public class ElementNameAndAttributeQualifier extends ElementNameQualifier {
    private final ElementSelector selector;
    private static final String[] ALL_ATTRIBUTES = {"*"};

    private final String[] qualifyingAttrNames;

    /**
     * No-args constructor: use all attributes from all elements to determine
     * whether elements qualify for comparability
     */
    public ElementNameAndAttributeQualifier() {
        this(ALL_ATTRIBUTES);
    }

    /**
     * Simple constructor for a single qualifying attribute name
     * @param attrName the value to use to qualify whether two elements can be
     * compared further for differences
     */
    public ElementNameAndAttributeQualifier(String attrName) {
        this(new String[] {attrName});
    }

    /**
     * Extended constructor for multiple qualifying attribute names
     * @param attrNames the array of values to use to qualify whether two
     * elements can be compared further for differences
     */
    public ElementNameAndAttributeQualifier(String[] attrNames) {
        this.qualifyingAttrNames = new String[attrNames.length];
        System.arraycopy(attrNames, 0, qualifyingAttrNames, 0,
                         attrNames.length);
        selector = matchesAllAttributes(attrNames)
            ? ElementSelectors.byNameAndAllAttributes
            : ElementSelectors.byNameAndAttributesControlNS(attrNames);
    }

    /**
     * Determine whether two elements qualify for further Difference comparison.
     * @return true if the two elements qualify for further comparison based on
     * both the superclass qualification (namespace URI and non- namespaced tag
     * name), and the presence of qualifying attributes with the same values;
     * false otherwise
     */
    @Override
    public boolean qualifyForComparison(Element control, Element test) {
        return selector.canBeCompared(control, test);
    }

    /**
     * Determine whether the qualifying attributes are present in both elements
     * and if so whether their values are the same
     * @param control control element
     * @param test test element
     * @return true if all qualifying attributes are present with the same
     * values, false otherwise
     * @deprecated this method is no longer used by this class and is
     *             only kept for backwards compatibility, overriding
     *             it won't have any effect anymore
     */
    @Deprecated
    protected final boolean areAttributesComparable(Element control, Element test) {
        String controlValue, testValue;
        Attr[] qualifyingAttributes;
        NamedNodeMap namedNodeMap = control.getAttributes();
        if (matchesAllAttributes(qualifyingAttrNames)) {
            qualifyingAttributes = new Attr[namedNodeMap.getLength()];
            for (int n=0; n < qualifyingAttributes.length; ++n) {
                qualifyingAttributes[n] = (Attr) namedNodeMap.item(n);
            }
        } else {
            qualifyingAttributes = new Attr[qualifyingAttrNames.length];
            for (int n=0; n < qualifyingAttrNames.length; ++n) {
                qualifyingAttributes[n] = (Attr) namedNodeMap.getNamedItem(qualifyingAttrNames[n]);
            }
        }

        String nsURI, name;
        for (int i=0; i < qualifyingAttributes.length; ++i) {
            if (qualifyingAttributes[i] != null) {
                nsURI = qualifyingAttributes[i].getNamespaceURI();
                controlValue = qualifyingAttributes[i].getNodeValue();
                name = qualifyingAttributes[i].getName();
            } else {
                // cannot be "*" case
                nsURI = controlValue = "";
                name = qualifyingAttrNames[i];
            }
            if (nsURI == null || nsURI.length() == 0) {
                testValue = test.getAttribute(name);
            } else {
                testValue = test.getAttributeNS(nsURI, qualifyingAttributes[i].getLocalName());
            }
            if (controlValue == null) {
                if (testValue != null) {
                    return false;
                }
            } else {
                if (!controlValue.equals(testValue)) {
                    return false;
                }
            }
        }
        return true;
    }

    private static boolean matchesAllAttributes(String[] attributes) {
        return Arrays.equals(attributes, ALL_ATTRIBUTES);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy