summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-repo-validate
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
commitedca0b698637c3fd0a70af7e4752a46afca938d3 (patch)
tree658fad717833200ccb4e3725c811ccce7c10fc8d /src/sbin/bcfg2-repo-validate
parent8ca8a153dfc6bd81ede9f5cff1ee3f111ae053ee (diff)
downloadbcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.gz
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.bz2
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.zip
last step of repo switches
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1716 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/sbin/bcfg2-repo-validate')
-rw-r--r--src/sbin/bcfg2-repo-validate56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/sbin/bcfg2-repo-validate b/src/sbin/bcfg2-repo-validate
new file mode 100644
index 000000000..a87b31cc6
--- /dev/null
+++ b/src/sbin/bcfg2-repo-validate
@@ -0,0 +1,56 @@
+#!/usr/bin/env python
+
+'''bcfg2-repo-validate checks all xml files in Bcfg2 repos against their respective XML schemas'''
+__revision__ = '$Revision$'
+
+from glob import glob
+from lxml.etree import parse, XMLSchema
+from os import system
+from sys import argv
+from ConfigParser import ConfigParser, NoSectionError, NoOptionError
+
+if __name__ == '__main__':
+ cf = ConfigParser()
+ schemadir = '/usr/share/bcfg2/schemas'
+ if len(argv) > 1:
+ repo = argv[1]
+ else:
+ cf.read(['/etc/bcfg2.conf'])
+ try:
+ repo = cf.get('server', 'repository')
+ except (NoSectionError, NoOptionError):
+ print "Repository location not specified in config file or on command line"
+ print "Usage: bcfg2-repo-validate <repo directory>"
+ raise SystemExit, 1
+
+ # add more validation as more schemas get written
+ filesets = {'metadata':("%s/Metadata/groups.xml", "%s/metadata.xsd"),
+ 'clients':("%s/Metadata/clients.xml", "%s/clients.xsd"),
+ 'bundle':("%s/Bundler/*.xml", "%s/bundle.xsd"),
+ 'pkglist':("%s/Pkgmgr/*.xml", "%s/pkglist.xsd"),
+ 'base':("%s/Base/*.xml", "%s/base.xsd"),
+ 'imageinfo':("%s/etc/reports.xml", "%s/report-configuration.xsd"),
+ 'services':("%s/Svcmgr/*.xml", "%s/services.xsd")}
+
+ for k, (spec, schemaname) in filesets.iteritems():
+ try:
+ schema = XMLSchema(parse(open(schemaname%(schemadir))))
+ except:
+ print "Failed to process schema %s" % (schemaname%(schemadir))
+ continue
+ for filename in glob(spec%(repo)):
+ try:
+ datafile = parse(open(filename))
+ except SyntaxError:
+ print "%s ***FAILS*** to parse \t\t<----" % (filename)
+ system("xmllint %s" % filename)
+ continue
+ except IOError:
+ print "Failed to open file %s \t\t<---" % (filename)
+ continue
+ if schema.validate(datafile):
+ if '-v' in argv:
+ print "%s checks out" % (filename)
+ else:
+ print "%s ***FAILS*** to verify \t\t<----" % (filename)
+ system("xmllint --schema %s %s" % (schemaname % schemadir, filename))