vote up 4 vote down star

What unit testing strategies do people recommend for testing xml is being generated correctly.

The my current tests seem abit primitive, something along the lines of:

[Test]
public void pseudo_test()
{
   XmlDocument myDOC = new XmlDocument();
   mydoc = _task.MyMethodToMakeXMLDoc();

   Assert.AreEqual(myDoc.OuterXML(),"big string of XML")
}
flag

54% accept rate

8 Answers

vote up -1 vote down

why not assume that some commercial xml parser is correct and validate your xml code against it? something like.

Assert.IsTrue(myDoc.Xml.ParseOK)

other than that and if you want to be thorough I'd say you would have to build a parser yourself and validate each rule the xml specification requires.

link|flag
vote up 1 vote down

Another possibility might be to use XmlReader and check for an error count > 0. Something like this:

    void CheckXml()
    {
        string _xmlFile = "this.xml";
        string _xsdFile = "schema.xsd"; 
        StringCollection _xmlErrors = new StringCollection();

        XmlReader reader = null;
        XmlReaderSettings settings = new XmlReaderSettings();
        settings.ValidationEventHandler += new ValidationEventHandler(this.ValidationEventHandler);
        settings.ValidationType = ValidationType.Schema;
        settings.IgnoreComments = chkIgnoreComments.Checked;
        settings.IgnoreProcessingInstructions = chkIgnoreProcessingInstructions.Checked;
        settings.IgnoreWhitespace = chkIgnoreWhiteSpace.Checked;
        settings.Schemas.Add(null, XmlReader.Create(_xsdFile));
        reader = XmlReader.Create(_xmlFile, settings);
        while (reader.Read())
        {
        }
        reader.Close();
        Assert.AreEqual(_xmlErrors.Count,0);
    }    

    void ValidationEventHandler(object sender, ValidationEventArgs args)
    {
        _xmlErrors.Add("<" + args.Severity + "> " + args.Message);
    }
link|flag
XMLUnit already will compare xml files and count the number of differences if you want... – djangofan Nov 18 at 23:49
vote up 2 vote down

If you have a standard format that you expect the output to be, why not create an XML schema or DTD and validate against that. This won't depend on the data, so will be flexible. Also defining how the XML can be formed can be helpful when designing you system.

link|flag
vote up 3 vote down

Validate against XML schema or DTD, also check key that nodes have the values you expect.

link|flag
+1, and C#'s XmlSerialization could help with this. – sixlettervariables Feb 2 at 18:39
vote up 4 vote down

XMLUnit may help you.

link|flag
vote up 0 vote down

Validate it against an XSD schema using XmlSchema class. Its found under System.XML i think. Another option would be to write a serialization class (XMLSerializer) to deserialize your XML into an object. The gain will be that it will implicitly validate your structure and after that the values can be easily accessed for testing using the resulting object.

link|flag
there is a better validation method using XMLUnit ... – djangofan Nov 18 at 23:48
vote up 3 vote down

First, as pretty much everyone is saying, validate the XML if there's a schema defined for it. (If there's not, define one.)

But you can build tests that are a lot more granular than that by executing XPath queries against the document, e.g.:

path = "/doc/element1[@id='key1']/element2[. = 'value2']";
Assert.IsTrue(doc.SelectSingleNode(path) != null);

This lets you test not only whether or not your document is semantically valid, but whether or not the method producing it is populating it with the values that you expect.

link|flag
vote up 0 vote down

Another reason to use a Schema to validate against is that while XML nodes are explicitly ordered, XML attributes are not.

So your string comparison of:

Assert.AreEqual(myDoc.OuterXML(),"big string of XML")

would fail if the attributes are in a different order, as could easily happen if one bit of XML was manually created and the other programatically.

link|flag

Your Answer

Get an OpenID
or

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