What is the best way to compare XML files for equality?

前端 未结 7 1253
春和景丽
春和景丽 2020-12-20 12:59

I\'m using .NET 2.0, and a recent code change has invalidated my previous Assert.AreEqual call (which compared two strings of XML). Only one element of the XML is actually

相关标签:
7条回答
  • 2020-12-20 13:10

    It really depends on what you want to check as "differences".

    Right now, we're using Microsoft XmlDiff: http://msdn.microsoft.com/en-us/library/aa302294.aspx

    0 讨论(0)
  • 2020-12-20 13:14

    Doing a simple string compare on a xml string not always work. Why ?

    for example both :

    <MyElement></MyElmennt> and <MyElment/> are equal from an xml standpoint ..

    There are algorithms for converting making an xml always look the same, they are called canonicalization algorithms. .Net has support for canonicalization.

    0 讨论(0)
  • 2020-12-20 13:17

    Because of the contents of an XML file can have different formatting and still be considered the same (from a DOM point of view) when you are testing the equality you need to determine what the measure of that equality is, for example is formatting ignored? does meta-data get ignored etc is positioning important, lots of edge cases.

    Generally you would create a class that defines your equality rules and use it for your comparisons, and if your comparison class implements the IEqualityComparer and/or IEqualityComparer<T> interfaces, then your class can be used in a bunch of inbuilt framework lists as the equality test implementation as well. Plus of course you can have as many as you need to measure equality differently as your requirements require.

    i.e

    IEnumerable<T>.Contains
    IEnumerable<T>.Equals
    The constructior of a Dictionary etc etc
    
    0 讨论(0)
  • 2020-12-20 13:23

    I wrote a small library with asserts for serialization, source.

    Sample:

    [Test]
    public void Foo()
    {
       ...
       XmlAssert.Equal(expected, actual, XmlAssertOptions.IgnoreDeclaration | XmlAssertOptions.IgnoreNamespaces);
    }
    

    0 讨论(0)
  • 2020-12-20 13:29

    You might find it's less fragile to parse the XML into an XmlDocument and base your Assert calls on XPath Query. Here are some helper assertion methods that I use frequently. Each one takes a XPathNavigator, which you can obtain by calling CreateNavigator() on the XmlDocument or on any node retrieved from the document. An example of usage would be:

         XmlDocument doc = new XmlDocument( "Testdoc.xml" );
         XPathNavigator nav = doc.CreateNavigator();
         AssertNodeValue( nav, "/root/foo", "foo_val" );
         AssertNodeCount( nav, "/root/bar", 6 )
    
        private static void AssertNodeValue(XPathNavigator nav,
                                             string xpath, string expected_val)
        {
            XPathNavigator node = nav.SelectSingleNode(xpath, nav);
            Assert.IsNotNull(node, "Node '{0}' not found", xpath);
            Assert.AreEqual( expected_val, node.Value );
        }
    
        private static void AssertNodeExists(XPathNavigator nav,
                                             string xpath)
        {
            XPathNavigator node = nav.SelectSingleNode(xpath, nav);
            Assert.IsNotNull(node, "Node '{0}' not found", xpath);
        }
    
        private static void AssertNodeDoesNotExist(XPathNavigator nav,
                                             string xpath)
        {
            XPathNavigator node = nav.SelectSingleNode(xpath, nav);
            Assert.IsNull(node, "Node '{0}' found when it should not exist", xpath);
        }
    
        private static void AssertNodeCount(XPathNavigator nav, string xpath, int count)
        {
            XPathNodeIterator nodes = nav.Select( xpath, nav );
            Assert.That( nodes.Count, Is.EqualTo( count ) );
        }
    
    0 讨论(0)
  • 2020-12-20 13:30

    I ended up getting the result I wanted with the following code:

    private static void ValidateResult(string validationXml, XPathNodeIterator iterator, params string[] excludedElements)
        {
            while (iterator.MoveNext())
            {
                if (!((IList<string>)excludedElements).Contains(iterator.Current.Name))
                {
                    Assert.IsTrue(validationXml.Contains(iterator.Current.Value), "{0} is not the right value for {1}.", iterator.Current.Value, iterator.Current.Name);
                }
            }
        }
    

    Before calling the method, I create a navigator on the instance of XmlDocument this way:

    XPathNavigator nav = xdoc.CreateNavigator();
    

    Next, I create an instance of XPathExpression, like so:

    XPathExpression expression = XPathExpression.Compile("/blah/*");
    

    I call the method after creating an iterator with the expression:

    XPathNodeIterator iterator = nav.Select(expression);
    

    I'm still figuring out how to optimize it further, but it does the trick for now.

    0 讨论(0)
提交回复
热议问题