X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=bin%2Firspy.pl;h=11245ff27c2edfd1247badad0e7dfe3b89746bb3;hp=1888a4a9977822a2a9fd917bd566183bb1c4c8a9;hb=df9edbc287f11442af7ec46a73303bf4a5a6e4ed;hpb=c3634de4050ccfbc6310ee32c43dcb3ee6df290f diff --git a/bin/irspy.pl b/bin/irspy.pl index 1888a4a..11245ff 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,9 +1,9 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.6 2006-09-22 15:23:51 mike Exp $ +# $Id: irspy.pl,v 1.11 2006-10-09 07:29:43 mike Exp $ # # Run like this: -# YAZ_LOG=irspy,irspy_test,irspy_debug perl -I ../lib irspy.pl -t "bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager" localhost:3313/IR-Explain---1 +# YAZ_LOG=irspy,irspy_test,irspy_debug,irspy_event perl -I ../lib irspy.pl -t Main localhost:3313/IR-Explain---1 bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager bagel.indexdata.dk:210/marc use strict; use warnings; @@ -11,26 +11,20 @@ use Getopt::Std; use ZOOM::IRSpy; my %opts; -if (!getopts('t:a', \%opts) || @ARGV != 1) { - print STDERR qq[Usage: $0 [options] - -t Space-separated list of targets to check - -a Check all targets registered in database -]; +if (!getopts('t:', \%opts) || @ARGV < 1) { + print STDERR "\ +Usage $0: [options] [ ...] +If no targets are specified, all targets in DB are tested. + -t Run the specified [default: all tests] +"; exit 1; } -my $dbname = $ARGV[0]; -my $targetList = $opts{t}; -if (!defined $targetList && !$opts{a}) { - print STDERR "$0: neither -t nor -a specified\n"; - exit 2; -} - +my($dbname, @targets) = @ARGV; my $spy = new ZOOM::IRSpy($dbname, "admin", "fruitbat"); -$spy->targets(grep { $_ ne "" } split /\s+/, $targetList) - if defined $targetList; +$spy->targets(@targets) if @targets; $spy->initialise(); -my $res = $spy->check(); +my $res = $spy->check($opts{t}); if ($res == 0) { print "All tests were run\n"; } else {