vote up 6 vote down star

As part of the base class for some extensive unit testing, I am writing a helper function which recursively compares the nodes of one XmlDocument object to another in C# (.NET). Some requirements of this:

  • The first document is the source, e.g. what I want the XML document to look like. Thus the second is the one I want to find differences in and it must not contain extra nodes not in the first document.
  • Must throw an exception when too many significant differences are found, and it should be easily understood by a human glancing at the description.
  • Child element order is important, attributes can be in any order.
  • Some attributes are ignorable; specifically xsi:schemaLocation and xmlns:xsi, though I would like to be able to pass in which ones are.
  • Prefixes for namespaces must match in both attributes and elements.
  • Whitespace between elements is irrelevant.
  • Elements will either have child elements or InnerText, but not both.

While I'm scrapping something together: has anyone written such code and would it be possible to share it here?

On an aside, what would you call the first and second documents? I've been referring to them as "source" and "target", but it feels wrong since the source is what I want the target to look like, else I throw an exception.

flag

Can the nodes be the same but be declared in a different order? – alexmac Oct 3 '08 at 17:25
No, the nodes have to be in the same order. Besides being a requirement of the documents themselves, it makes differencing a bit simpler (just enumerate children and check one-to-one). – Neil C. Obremski Oct 3 '08 at 17:31
> attributes can be in any order Good thing, because attributes are unordered by definition. – Robert Rossney Oct 3 '08 at 18:46
I call the documents, "baseline" and "test". – Phil Nash Nov 9 '08 at 12:10

4 Answers

vote up 11 vote down check

Microsoft has an XML diff API that you can use

link|flag
This is very cool! Unfortunately the ONE thing it doesn't do is allow me to ignore certain attributes. – Neil C. Obremski Oct 3 '08 at 17:49
I forgot to mention in my post, one of the other things I did in the XSLT was to filter out certain attributes. – runrig Oct 3 '08 at 20:32
vote up 0 vote down

Hello, I am using ExamXML for comparing XML files. You can try it.

link|flag
vote up 0 vote down

I know you were really asking for code, but I just had to add that the Compare application for Notepad++ has the best functionality for comparing xml documents on the market. An absolutely brilliant use of color makes it extremely easy to pinpoint changes.

link|flag
vote up 0 vote down

Comparing XML documents is complicated. Google for xmldiff (there's even a Microsoft solution) for some tools. I've solved this a couple of ways. I used XSLT to sort elements and attributes, and filter out attributes I didn't want to compare, and then either used the XML::Diff perl module, or pretty printed each document with every element and attribute on a separate line, and using Unix command line diff on the results.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.