X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=bin%2Ftest-xml-update.pl;h=ad27a376296e8b3fb4d07c49540cbe16a0e76374;hp=f7d4a8ae435c1fc8cbeec677391bc97a5801d0f7;hb=beaf1764abb2c92c380eaf6d8924613b7deab6c6;hpb=f419d355e89c412c5e3ae764fdb6c93a7bd2380a diff --git a/bin/test-xml-update.pl b/bin/test-xml-update.pl index f7d4a8a..ad27a37 100755 --- a/bin/test-xml-update.pl +++ b/bin/test-xml-update.pl @@ -1,14 +1,16 @@ #!/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.6 2006-11-09 16:15:14 mike Exp $ # # Run like this: -# perl -I ../lib ./test-xml-update.pl bagel.indexdata.dk:210/gils +# perl -I ../lib ./test-xml-update.pl bagel.indexdata.dk:210/gils title "Test Database" author "Adam" description "This is a nice database" use strict; use warnings; +use Getopt::Std; use ZOOM; use ZOOM::IRSpy::Utils qw(irspy_xpath_context modify_xml_document); +use ZOOM::IRSpy; # For _really_rewrite_record() # This array copied from ../web/htdocs/details/edit.mc my @fields = @@ -42,8 +44,13 @@ my @fields = qw(e:title e:description) ], ); -if (@ARGV < 1 || @ARGV % 2 == 0) { - print STDERR "Usage: %0 [ ...]\n"; +my %opts; +if (!getopts('wnxd', \%opts) || @ARGV % 2 == 0) { + print STDERR "Usage: %0 [options] [ ...]\n"; + print STDERR " -w Write modified record back to DB\n"; + print STDERR " -n Show new values of fields using XPath\n"; + print STDERR " -x Show new XML document with changes made\n"; + print STDERR " -d Show differences between old and new XML\n"; exit 1; } my($id, %data) = @ARGV; @@ -64,7 +71,39 @@ 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); -#ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode()); -print "The record has been updated (nchanges=$nchanges).\n"; -print $xc->getContextNode()->toString(); +my $newText = $xc->getContextNode()->toString(); +print "Document modified with $nchanges change", $nchanges==1?"":"s", "\n"; + +if ($opts{w}) { + ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode()); + print "Rewrote record '$id'\n"; +} + +if ($opts{n}) { + foreach my $key (sort keys %data) { + my $ref = $fieldsByKey{$key}; + my($name, $nlines, $caption, $xpath, @addAfter) = @$ref; + print "New $caption ($xpath) = '", $xc->findvalue($xpath), "'\n"; + } +} + +if ($opts{x}) { + print $newText; +} + +if ($opts{d}) { + 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); +}