2 * Copyright 2005 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.xml;
19 import java.util.Collections;
20 import java.util.Comparator;
21 import java.util.List;
23 import java.util.TreeMap;
25 import junit.framework.TestCase;
27 import org.dom4j.Attribute;
28 import org.dom4j.Document;
29 import org.dom4j.Element;
32 * XML test support utilities.
34 public final class XmlUtils {
37 * Disabled constructor.
45 * Checks equality of two XML documents excluding comment and processing
46 * nodes and trimming the text of the elements. In case of problems, it
47 * provides an xpath-like expression describing where the problem is.
53 public static void assertEquals(String aMsg,
54 org.w3c.dom.Document aExpected, org.w3c.dom.Document aActual) {
55 assertEquals(aMsg, DomUtils.convert(aExpected), DomUtils
60 * Checks equality of two XML documents excluding comment and processing
61 * nodes and trimming the text of the elements. In case of problems, it
62 * provides an xpath-like expression describing where the problem is.
68 public static void assertEquals(String aMsg, Document aExpected,
70 assertEquals(aMsg + "/" + aExpected.getRootElement().getName(), aExpected.getRootElement(), aActual.getRootElement());
74 * Checks equality of two XML elements excluding comment and processing
75 * nodes and trimming the text of the elements. In case of problems, it
76 * provides an xpath-like expression describing where the problem is.
82 public static void assertEquals(String aMsg, Element aExpected,
86 TestCase.assertEquals(aMsg + "/name()", aExpected.getName(), aActual
90 TestCase.assertEquals(aMsg + "/text()", aExpected.getTextTrim(),
91 aActual.getTextTrim());
94 List<Attribute> expectedAttrs = aExpected.attributes();
95 Collections.sort(expectedAttrs, new AttributeComparator());
96 List<Attribute> actualAttrs = aActual.attributes();
97 Collections.sort(actualAttrs, new AttributeComparator());
99 TestCase.assertEquals("count(" + aMsg + "/@*)", expectedAttrs.size(),
101 for (int i = 0; i < expectedAttrs.size(); i++) {
102 String msg = aMsg + "/@" + expectedAttrs.get(i).getName();
103 assertEquals(msg, expectedAttrs.get(i), actualAttrs.get(i));
107 List<Element> expectedElems = aExpected.elements();
108 List<Element> actualElems = aActual.elements();
109 TestCase.assertEquals("count(" + aMsg + "/*)", expectedElems.size(),
111 // determine the how-manyth element of the given name we are at.
112 // Maps element name to the last used index (or null if not yet used)
113 Map<String, Integer> elementIndex = new TreeMap<String, Integer>();
114 for (int i = 0; i < expectedElems.size(); i++) {
115 String elemName = expectedElems.get(i).getName();
116 Integer index = elementIndex.get(elemName);
122 elementIndex.put(elemName, index);
123 String msg = aMsg + "/" + expectedElems.get(i).getName() + "["
126 assertEquals(msg, expectedElems.get(i), actualElems.get(i));
131 * Checks equality of two attributes. In case of problems, it
132 * provides an xpath-like expression describing where the problem is.
138 public static void assertEquals(String aMsg, Attribute aExpected,
140 TestCase.assertEquals(aMsg + ":name", aExpected.getName(), aActual
142 TestCase.assertEquals(aMsg + ":value", aExpected.getValue(), aActual
147 * Comparator which compares attributes by name.
149 private static final class AttributeComparator implements
150 Comparator<Attribute> {
154 * @see java.util.Comparator#compare(T, T)
156 public int compare(Attribute aAttribute1, Attribute aAttribute2) {
157 return aAttribute1.getName().compareTo(aAttribute2.getName());