1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
using System;
using System.Xml;
using System.IO;
namespace MonoTests.stand_alone.WebHarness
{
/// <summary>
/// Summary description for XmlComparer.
/// </summary>
public class XmlComparer
{
[Flags]
public enum Flags {
IgnoreNone=0,
IgnoreAttribOrder=1,
IgnoreNodeOrder=2,
}
Flags flags;
bool ignoreWS = true;
string lastCompare = "";
string _actual = "";
string _expected = "";
public XmlComparer (Flags flags, bool ignoreWS)
{
this.flags = flags;
this.ignoreWS = ignoreWS;
}
public XmlComparer (Flags flags) : this (flags, true)
{
}
public XmlComparer () : this (Flags.IgnoreAttribOrder)
{
}
public bool AreEqualAttribs (XmlAttributeCollection expected, XmlAttributeCollection actual)
{
if (expected.Count != actual.Count)
return false;
for (int i=0; i<expected.Count; i++) {
if ((flags & Flags.IgnoreAttribOrder) != 0) {
string ln = expected[i].LocalName;
string ns = expected[i].NamespaceURI;
string val = expected[i].Value;
_expected = ns+":"+ln+"="+val;
XmlAttribute atr2 = actual[ln, ns];
_actual = atr2 == null ? "<<missing>>" : ns + ":" + ln + "=" + atr2.Value;
if (atr2 == null || atr2.Value.Trim().ToLower() != val.Trim().ToLower())
return false;
} else {
if (expected [i].LocalName != actual [i].LocalName)
return false;
if (expected [i].NamespaceURI != actual [i].NamespaceURI)
return false;
if (expected [i].Value.Trim().ToLower() != actual [i].Value.Trim().ToLower())
return false;
}
}
return true;
}
public bool AreEqualNodeList (XmlNodeList expected, XmlNodeList actual)
{
if (expected.Count != actual.Count)
return false;
for (int i=0; i<expected.Count; i++) {
if (!AreEqual (expected[i], actual[i]))
return false;
}
return true;
}
public bool AreEqual (XmlNode expected, XmlNode actual)
{
lastCompare = expected.OuterXml + "\n" + actual.OuterXml;
_actual = actual.OuterXml;
_expected = expected.OuterXml;
// skip XmlDeclaration
if ((expected.NodeType == XmlNodeType.XmlDeclaration) &&
(actual.NodeType == XmlNodeType.XmlDeclaration))
return true;
if (expected.NodeType != actual.NodeType)
return false;
if (expected.LocalName != actual.LocalName)
return false;
if (expected.NamespaceURI != actual.NamespaceURI)
return false;
if (expected.Attributes != null && actual.Attributes != null) {
if (!AreEqualAttribs (expected.Attributes, actual.Attributes))
return false;
_actual = actual.OuterXml;
_expected = expected.OuterXml;
}
else //one of nodes has no attrs
if (expected.Attributes != null || actual.Attributes != null)
return false;//and another has some
if (!expected.HasChildNodes && !actual.HasChildNodes) {
string val1 = expected.Value;
string val2 = actual.Value;
if (ignoreWS) //ignore white spaces
{
if (val1 != null)
val1 = val1.Trim().Replace("\r\n", "\n");
if (val2 != null)
val2 = val2.Trim().Replace("\r\n", "\n");
}
return val1 == val2;
}
else {//one of nodes has some children
if (!expected.HasChildNodes || !actual.HasChildNodes)
return false;//and another has none
return AreEqualNodeList (expected.ChildNodes, actual.ChildNodes);
}
}
public bool AreEqual (string expected, string actual)
{
XmlDocument eDocument = new XmlDocument();
eDocument.LoadXml(expected);
XmlNode eNode = eDocument.DocumentElement;
XmlDocument aDocument = new XmlDocument ();
aDocument.LoadXml (actual);
XmlNode aNode = aDocument.DocumentElement;
return AreEqual (eNode, aNode);
}
public string LastCompare
{
get {return lastCompare;}
}
public string Actual
{
get { return _actual; }
}
public string Expected
{
get { return _expected; }
}
}
}
|