vote up 5 vote down star
7

At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file.

Are there tool or libraries that we can use for automated testing to check that the generated XML matches the schema?

We would prefer free tools that are appropriate for commercial use although we won't be bundling the schema checker so it only needs to be usable by devs during development.

Our development language is C++ if that makes any difference, although I don't think it should as we could generate the xml file and then do validation by calling a separate program in the test.

Thanks!

flag

55% accept rate

9 Answers

vote up 8 vote down check

After some research, I think the best answer is Xerces, as it implements all of XSD, is cross-platform and widely used. The stdinparse utility can be used to call Xerces from the command line.

I assume the Java and C versions of Xerces agree on validation.

Alternatively, if you are on Windows, you can use msxml, but you will need some sort of wrapper to call it, such as the GUI one described in this DDJ article. If someone has a simple script that can be called from a DOS prompt, perhaps they'd like to post it.

You could also use xmllint, which is part of libxml. You may well already have it installed. It can be used like:

xmllint --noout --schema XSD_FILE XML_FILE

One problem is that libxml doesn't implement all of the specification, so you may run into issues :(

Finally, you'll find different programs will, unfortunately, give different results. This is largely due to the complexity of the XSD spec. You may want to test your schema with several tools.

link|flag
+1 for the xmllint program. – Cristian Ciupitu Nov 25 at 16:34
I found the following helpful: jmvanel.free.fr/xsd/README.html – Matthew Hegarty Dec 2 at 11:10
vote up 2 vote down

I use Xerces:

http://xerces.apache.org/xerces-c/

link|flag
vote up 2 vote down

xmlstarlet is a command-line tool which will do this and more:

$ xmlstarlet val --help
XMLStarlet Toolkit: Validate XML document(s)
Usage: xmlstarlet val <options> [ <xml-file-or-uri> ... ]
where <options>
  -w or --well-formed        - validate well-formedness only (default)
  -d or --dtd <dtd-file>     - validate against DTD
  -s or --xsd <xsd-file>     - validate against XSD schema
  -E or --embed              - validate using embedded DTD
  -r or --relaxng <rng-file> - validate against Relax-NG schema
  -e or --err                - print verbose error messages on stderr
  -b or --list-bad           - list only files which do not validate
  -g or --list-good          - list only files which validate
  -q or --quiet              - do not list files (return result code only)

NOTE: XML Schemas are not fully supported yet due to its incomplete
      support in libxml2 (see http://xmlsoft.org)

XMLStarlet is a command line toolkit to query/edit/check/transform
XML documents (for more information see http://xmlstar.sourceforge.net/)

Usage in your case would be along the lines of:

xmlstartlet val --xsd your_schema.xsd your_file.xml
link|flag
Do you know how serious the warning is about not fully supporting xml schemas? – Jason Dagit Sep 24 '08 at 2:43
Judging by other answers xmlstarlet is a bit weak on its xsd implementation. – Jason Dagit Sep 24 '08 at 22:54
vote up 1 vote down

http://www.xmlvalidation.com/

(Be sure to check the " Validate against external XML schema" Box)

link|flag
vote up 0 vote down

W3.org provides an online validator. I've used that in the past with great results, but only interactively, but you may be able to automate tests against it with a URL library.

link|flag
vote up 0 vote down

I found this blog post by googling: http://marknelson.us/2002/01/01/xml-schema-validation/

It's a bit dated, but looks like an alternative with code samples to using libxml.

link|flag
vote up 0 vote down

I don't believe the online validator response is correct. That validator seems to validate only a schema, it doesn't check that a particular document is well formed wrt a schema.

link|flag
vote up 0 vote down

The online XML Schema Validator from DecisionSoft allows you to check an XML file against a given schema.

link|flag
vote up 0 vote down

There's a plugin for Notepad++ that offers XML verification & validation against an XSD.

link|flag

Your Answer

Get an OpenID
or

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