From 4f608872f119e6954779c4e96e356d8baa1c6017 Mon Sep 17 00:00:00 2001 From: Narayan Desai Date: Mon, 12 Feb 2007 20:48:21 +0000 Subject: Merge crosscheck script into bcfg2-admin git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2801 ce84e21b-d406-0410-9b95-82705330c041 --- tools/crosscheck.py | 58 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 22 deletions(-) (limited to 'tools') diff --git a/tools/crosscheck.py b/tools/crosscheck.py index 109a3a950..c1447acd4 100644 --- a/tools/crosscheck.py +++ b/tools/crosscheck.py @@ -12,34 +12,48 @@ important = {'Package':['name', 'version'], 'PostInstall':['name']} def compare(new, old): - for i in range(2): #this is hardcoded.. may be a better looping method - for child in new.getchildren(): - equiv = old.xpath('%s[@name="%s"]' % (child.tag, child.get('name'))) - if not important.has_key(child.tag): - print "tag type %s not handled" % (child.tag) - continue - if len(equiv) == 0: - print "didn't find matching %s %s" % (child.tag, child.get('name')) - continue - elif len(equiv) >= 1: - if child.tag == 'ConfigFile': - if child.text != equiv[0].text: - continue - if [child.get(field) for field in important[child.tag]] == \ - [equiv[0].get(field) for field in important[child.tag]]: - new.remove(child) - old.remove(equiv[0]) - else: - print "+", lxml.etree.tostring(child), - print "-", lxml.etree.tostring(equiv[0]), + for child in new.getchildren(): + equiv = old.xpath('%s[@name="%s"]' % (child.tag, child.get('name'))) + if not important.has_key(child.tag): + print "tag type %s not handled" % (child.tag) + continue + if len(equiv) == 0: + print "didn't find matching %s %s" % (child.tag, child.get('name')) + continue + elif len(equiv) >= 1: + if child.tag == 'ConfigFile': + if child.text != equiv[0].text: + print "%s %s contents differ" \ + % (child.tag, child.get('name')) + continue + noattrmatch = [field for field in important[child.tag] if \ + child.get(field) != equiv[0].get(field)] + if not noattrmatch: + new.remove(child) + old.remove(equiv[0]) + else: + print "%s %s attributes %s do not match" % \ + (child.tag, child.get('name'), noattrmatch) if len(old.getchildren()) == 0 and len(new.getchildren()) == 0: return True if new.tag == 'Independant': name = 'Indep' else: name = new.get('name') - print name, ["%s.%s" % (child.tag, child.get('name')) for child in old.getchildren()], - print ["%s.%s" % (child.tag, child.get('name')) for child in new.getchildren()] + both = [] + oldl = ["%s %s" % (entry.tag, entry.get('name')) for entry in old] + newl = ["%s %s" % (entry.tag, entry.get('name')) for entry in new] + for entry in newl: + if entry in oldl: + both.append(entry) + newl.remove(entry) + oldl.remove(entry) + for entry in both: + print "%s differs (in bundle %s)" % (entry, name) + for entry in oldl: + print "%s only in old configuration (in bundle %s)" % (entry, name) + for entry in newl: + print "%s only in new configuration (in bundle %s)" % (entry, name) return False -- cgit v1.2.3-1-g7c22