在办公室,我们目前正在编写一个应用程序,它将根据给定的模式生成XML文件。我们在. xsd文件中拥有模式。
是否有工具或库可以用于自动测试,以检查生成的XML是否与模式匹配?
我们更喜欢适合商业用途的免费工具,尽管我们不会捆绑模式检查器,因此它只需要在开发过程中供开发人员使用。
我们的开发语言是c++,如果这有什么不同的话,尽管我不认为它应该,因为我们可以生成xml文件,然后通过在测试中调用一个单独的程序来进行验证。
在办公室,我们目前正在编写一个应用程序,它将根据给定的模式生成XML文件。我们在. xsd文件中拥有模式。
是否有工具或库可以用于自动测试,以检查生成的XML是否与模式匹配?
我们更喜欢适合商业用途的免费工具,尽管我们不会捆绑模式检查器,因此它只需要在开发过程中供开发人员使用。
我们的开发语言是c++,如果这有什么不同的话,尽管我不认为它应该,因为我们可以生成xml文件,然后通过在测试中调用一个单独的程序来进行验证。
当前回答
Xmlstarlet是一个命令行工具,可以完成以下工作:
$ 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/)
在你的情况下,用法应该是这样的:
xmlstarlet val --xsd your_schema.xsd your_file.xml
其他回答
我发现这个来自“corefile”的在线验证器非常有用 http://www.corefiling.com/opensource/schemaValidate.html
在尝试了一些工具来验证我的xsd之后,这个工具为我提供了详细的错误信息——所以我能够在模式中修复错误。
我使用Xerces:
http://xerces.apache.org/xerces-c/
来自DecisionSoft的在线XML模式验证器允许您根据给定的模式检查XML文件。
另一个在线XML模式(XSD)验证器:http://www.utilities-online.info/xsdvalidation/。
我倾向于使用Microsoft的xsd来帮助从. net文件生成xsd。我还使用xmlstarlet解析出xml的各个部分。最后一个对您有用的免费工具是altovaxml,可以通过以下URL获得:http://www.altova.com/download_components.html。
这允许我通过解析xml来扫描所有的xml文件,选择要使用的xsd。
# Function:
# verifyschemas - Will validate all xml files in a configuration directory against the schemas in the passed in directory
# Parameters:
# The directory where the schema *.xsd files are located. Must be using dos pathing like: VerifySchemas "c:\\XMLSchemas\\"
# Requirements:
# Must be in the directory where the configuration files are located
#
verifyschemas()
{
for FILENAME in $(find . -name '*.xml' -print0 | xargs -0)
do
local SchemaFile=$1$(getconfignamefromxml $FILENAME).xsd
altovaxml /validate $FILENAME /schema $SchemaFile > ~/temp.txt 2> /dev/null
if [ $? -ne 0 ]; then
printf "Failed to verify: "
cat ~/temp.txt | tail -1 | tr -d '\r'
printf " - $FILENAME with $SchemaFile\n"
fi
done
}
要生成我使用的xml: xsd DOTNET.dll /type:CFGCLASS & rename schema0. dllxsd CFGCLASS.xsd
要获得xsd名称,我使用: xmlstarlet sel -t -m /XXX/* -v local-name() $1 | sed 's/ $//'
这允许我使用xml文件中的元素标记拾取正确的XSD。
最终结果是,我可以调用一个bash函数来扫描所有XML文件并验证它们。即使它们在多个子目录中。