test_RecursiveElementNameAndTextQualifier.java

/*
******************************************************************
Copyright (c) 2008-2009,2013,2015 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.examples;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

import javax.xml.parsers.DocumentBuilderFactory;

import junit.framework.TestCase;

import org.custommonkey.xmlunit.Diff;
import org.custommonkey.xmlunit.XMLAssert;
import org.custommonkey.xmlunit.ElementNameAndTextQualifier;
import org.custommonkey.xmlunit.ElementQualifier;
import org.custommonkey.xmlunit.XMLUnit;

/**
 * JUnit testcase for RecursiveElementNameAndTextQualifier with most
 * tests copied from MultiLevelElementNameAndTextQualifier' test.
 * @see org.custommonkey.xmlunit.test_Diff#testRepeatedElementNamesWithTextQualification()
 */
public class test_RecursiveElementNameAndTextQualifier extends TestCase {
    private static final String TAG_NAME = "tagYoureIt";
    private static final String TAG_NAME2 = "tagYoureIt2";
    private static final String TEXT_A = "textA";
    private static final String TEXT_B = "textB";
    private Document document;
        
    // copy of ElementNameAndTextQualifier test
    public void testSingleTextValue() throws Exception {
        ElementQualifier qualifier =
            new RecursiveElementNameAndTextQualifier();

        Element control = document.createElement(TAG_NAME);
        control.appendChild(document.createTextNode(TEXT_A));

        Element test = document.createElement(TAG_NAME);
                
        assertFalse("control text not comparable to empty text", 
                    qualifier.qualifyForComparison(control, test));
                
        test.appendChild(document.createTextNode(TEXT_A));              
        assertTrue("control textA comparable to test textA",
                   qualifier.qualifyForComparison(control, test));
                                        
        test = document.createElement(TAG_NAME);

        test.appendChild(document.createTextNode(TEXT_B));
        assertFalse("control textA not comparable to test textB",
                    qualifier.qualifyForComparison(control, test));
    }
        
    // copy of ElementNameAndTextQualifier test
    public void testMultipleTextValues() throws Exception {
        ElementQualifier qualifier =
            new RecursiveElementNameAndTextQualifier();

        Element control = document.createElement(TAG_NAME);
        control.appendChild(document.createTextNode(TEXT_A));
        control.appendChild(document.createTextNode(TEXT_B));

        Element test = document.createElement(TAG_NAME);
        test.appendChild(document.createTextNode(TEXT_A + TEXT_B));
        assertTrue("denormalised control text comparable to normalised test text",
                   qualifier.qualifyForComparison(control, test));
    }

    // three levels
    public void testThreeLevels() throws Exception {
        ElementQualifier qualifier =
            new RecursiveElementNameAndTextQualifier();

        Element control = document.createElement(TAG_NAME);
        Element child = document.createElement(TAG_NAME2);
        control.appendChild(child);
        Element child2 = document.createElement(TAG_NAME);
        child.appendChild(child2);
        child2.appendChild(document.createTextNode(TEXT_B));

        Element test = document.createElement(TAG_NAME);
        child = document.createElement(TAG_NAME2);
        test.appendChild(child);
        child2 = document.createElement(TAG_NAME);
        child.appendChild(child2);
        child2.appendChild(document.createTextNode(TEXT_B));

        assertTrue(qualifier.qualifyForComparison(control, test));
    }
        
    /**
     * @see <a href="https://sourceforge.net/forum/forum.php?thread_id=1440169&forum_id=73274"/>
     */
    public void testThread1440169() throws Exception {
        String s1 = "<a><b><c>foo</c></b><b><c>bar</c></b></a>";
        String s2 = "<a><b><c>bar</c></b><b><c>foo</c></b></a>";
        Diff d = new Diff(s1, s2);
        assertFalse(d.similar());

        // reset
        d = new Diff(s1, s2);
        d.overrideElementQualifier(new ElementNameAndTextQualifier());
        assertFalse(d.similar());

        // reset once again
        d = new Diff(s1, s2);
        d.overrideElementQualifier(new RecursiveElementNameAndTextQualifier());
        assertTrue(d.similar());

    }

    public void testUserGuideExample() throws Exception {
        String control =
            "<table>\n"
            + "  <tr>\n"
            + "    <td>foo</td>\n"
            + "  </tr>\n"
            + "  <tr>\n"
            + "    <td>bar</td>\n"
            + "  </tr>\n"
            + "</table>\n";
        String test =
            "<table>\n"
            + "  <tr>\n"
            + "    <td>bar</td>\n"
            + "  </tr>\n"
            + "  <tr>\n"
            + "    <td>foo</td>\n"
            + "  </tr>\n"
            + "</table>\n";

        Diff d = new Diff(control, test);
        d.overrideElementQualifier(new RecursiveElementNameAndTextQualifier());
        assertTrue(d.toString(), d.similar());
    }

    /**
     * @see "http://sourceforge.net/p/xmlunit/bugs/62/"
     */
    public void testMultipleTextValuesWithAdditionalElement() throws Exception {
        ElementQualifier qualifier =
            new RecursiveElementNameAndTextQualifier();

        Element control = document.createElement(TAG_NAME);
        control.appendChild(document.createTextNode(TEXT_A));
        control.appendChild(document.createTextNode(TEXT_B));
        control.appendChild(document.createElement(TAG_NAME));

        Element test = document.createElement(TAG_NAME);
        test.appendChild(document.createTextNode(TEXT_A + TEXT_B));
        test.appendChild(document.createElement(TAG_NAME));
        assertTrue("denormalised control text comparable to normalised test text",
                   qualifier.qualifyForComparison(control, test));
    }

    public void setUp() throws Exception {
        document = XMLUnit.newControlParser().newDocument();
    }

    /**
     * @see <a href="https://sourceforge.net/forum/forum.php?thread_id=2948005&amp;forum_id=73273"/>
     */
    public void testOpenDiscussionThread2948995_1() throws Exception {
        Diff myDiff = new Diff("<root>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>1</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>2</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>3</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>4</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "</root>",
                               "<root>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>2</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>1</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>3</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>4</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "</root>");
        myDiff.overrideElementQualifier(new RecursiveElementNameAndTextQualifier()); 
        XMLAssert.assertXMLEqual("Not similar", myDiff, true); 
    }

    /**
     * @see <a href="https://sourceforge.net/forum/forum.php?thread_id=2948005&amp;forum_id=73273"/>
     */
    public void testOpenDiscussionThread2948995_2() throws Exception {
        Diff myDiff = new Diff("<root>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>1</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>2</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>3</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>4</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "</root>",
                               "<root>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>1</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>2</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "  <ent>"
                               + "    <value>"
                               + "      <int>4</int>"
                               + "    </value>"
                               + "    <value>"
                               + "      <int>3</int>"
                               + "    </value>"
                               + "  </ent>"
                               + "</root>");
        myDiff.overrideElementQualifier(new RecursiveElementNameAndTextQualifier()); 
        XMLAssert.assertXMLEqual("Not similar", myDiff, true); 
    }

    public void testByNameAndTextRec_Multilevel() throws Exception {
        Document control = DocumentBuilderFactory.newInstance()
            .newDocumentBuilder().newDocument();
        {
            Element root = control.createElement("root");
            control.appendChild(root);
            Element controlSub = control.createElement("sub");
            root.appendChild(controlSub);
            Element controlSubSubValue = control.createElement("value");
            controlSub.appendChild(controlSubSubValue);
            controlSubSubValue.appendChild(control.createTextNode("1"));
            controlSubSubValue = control.createElement("value");
            controlSub.appendChild(controlSubSubValue);
            controlSubSubValue.appendChild(control.createTextNode("2"));

            controlSub = control.createElement("sub");
            root.appendChild(controlSub);
            controlSubSubValue = control.createElement("value");
            controlSub.appendChild(controlSubSubValue);
            controlSubSubValue.appendChild(control.createTextNode("3"));
            controlSubSubValue = control.createElement("value");
            controlSub.appendChild(controlSubSubValue);
            controlSubSubValue.appendChild(control.createTextNode("4"));
        }
        Document test = DocumentBuilderFactory.newInstance()
            .newDocumentBuilder().newDocument();
        {
            Element root = test.createElement("root");
            test.appendChild(root);
            Element testSub = test.createElement("sub");
            root.appendChild(testSub);
            Element testSubValue = test.createElement("value");
            testSub.appendChild(testSubValue);
            testSubValue.appendChild(test.createTextNode("1"));
            testSubValue = test.createElement("value");
            testSub.appendChild(testSubValue);
            testSubValue.appendChild(test.createTextNode("2"));

            testSub = test.createElement("sub");
            root.appendChild(testSub);
            testSubValue = test.createElement("value");
            testSub.appendChild(testSubValue);
            testSubValue.appendChild(test.createTextNode("4"));
            testSubValue = test.createElement("value");
            testSub.appendChild(testSubValue);
            testSubValue.appendChild(test.createTextNode("3"));
        }

        Diff d = new Diff(control, test);
        d.overrideElementQualifier(new RecursiveElementNameAndTextQualifier());
        XMLAssert.assertXMLEqual("Not similar", d, true);
    }
}