From ed5c0d231dd272736fea24a9dcf8dd92d20c5baa Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 1 Nov 2006 10:31:57 +0000 Subject: [PATCH] Display diffs between the original and modified records --- bin/test-xml-update.pl | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/bin/test-xml-update.pl b/bin/test-xml-update.pl index f7d4a8a..7efb641 100755 --- a/bin/test-xml-update.pl +++ b/bin/test-xml-update.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: test-xml-update.pl,v 1.1 2006-11-01 09:59:28 mike Exp $ +# $Id: test-xml-update.pl,v 1.2 2006-11-01 10:31:57 mike Exp $ # # Run like this: # perl -I ../lib ./test-xml-update.pl bagel.indexdata.dk:210/gils @@ -64,7 +64,21 @@ if ($n == 0) { my $rec = $rs->record(0); my $xc = irspy_xpath_context($rec); my %fieldsByKey = map { ( $_->[0], $_) } @fields; +my $oldText = $xc->getContextNode()->toString(); my $nchanges = modify_xml_document($xc, \%fieldsByKey, \%data); +my $newText = $xc->getContextNode()->toString(); #ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode()); print "The record has been updated (nchanges=$nchanges).\n"; -print $xc->getContextNode()->toString(); + +# Now display diffs between the original and modified records +my $oldFile = "/tmp/old.txu.$$"; +my $newFile = "/tmp/new.txu.$$"; +open OLD, ">$oldFile"; +print OLD $oldText; +close OLD; +open NEW, ">/tmp/new.txu.$$"; +print NEW $newText; +close NEW; +system("diff $oldFile $newFile"); +unlink($oldFile); +unlink($newFile); -- 1.7.10.4