Add comments on logging levels.
[irspy-moved-to-github.git] / bin / irspy.pl
index 76dc72f..2d7c276 100755 (executable)
@@ -1,9 +1,16 @@
 #!/usr/bin/perl -w
 
-# $Id: irspy.pl,v 1.3 2006-09-20 13:19:53 mike Exp $
+# $Id: irspy.pl,v 1.13 2006-10-12 16:53:04 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
+# Available log-levels are as follows:
+#      irspy -- high-level application logging
+#      irspy_debug -- low-level debugging (not very interesting)
+#      irspy_event -- invocations of ZOOM_event() and individual events
+#      irspy_unhandled -- unhandled events (not very interesting)
+#      irspy_test -- adding, queueing and running tests
+#      irspy_task -- adding, queueing and running tasks
 
 use strict;
 use warnings;
@@ -11,28 +18,22 @@ use Getopt::Std;
 use ZOOM::IRSpy;
 
 my %opts;
-if (!getopts('t:au', \%opts) || @ARGV != 1) {
-    print STDERR qq[Usage: $0 [options] <IRSpy-database>
-       -t <t1 t2 ...>  Space-separated list of targets to check
-       -a              Check all targets registered in database
-       -u              Update information in database
-];
+if (!getopts('t:', \%opts) || @ARGV < 1) {
+    print STDERR "\
+Usage $0: [options] <IRSpy-database> [<target> ...]
+If no targets are specified, all targets in DB are tested.
+       -t <test>       Run the specified <test> [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 $spy = new ZOOM::IRSpy($dbname);
-$spy->targets($targetList) if defined $targetList;
+my($dbname, @targets) = @ARGV;
+my $spy = new ZOOM::IRSpy($dbname, "admin", "fruitbat");
+$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 {
-    print "Some tests were skipped\n";
+    print "$res tests were skipped\n";
 }