Get backtrace if program dies.
[irspy-moved-to-github.git] / bin / irspy.pl
index 2d7c276..fef62d1 100755 (executable)
@@ -1,9 +1,9 @@
 #!/usr/bin/perl -w
 
-# $Id: irspy.pl,v 1.13 2006-10-12 16:53:04 mike Exp $
+# $Id: irspy.pl,v 1.23 2007-02-24 01:26:32 mike Exp $
 #
 # Run like this:
-#      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
+#      YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick localhost:8018/IR-Explain---1 z3950.loc.gov:7090/Voyager bagel.indexdata.dk/gils bagel.indexdata.dk:210/marc
 # Available log-levels are as follows:
 #      irspy -- high-level application logging
 #      irspy_debug -- low-level debugging (not very interesting)
 use strict;
 use warnings;
 use Getopt::Std;
-use ZOOM::IRSpy;
+use ZOOM::IRSpy::Web;
+use Carp;
+
+local $SIG{__DIE__} = sub {
+    my($msg) = @_;
+    confess($msg);
+};
 
 my %opts;
-if (!getopts('t:', \%opts) || @ARGV < 1) {
+if (!getopts('wt:af:', \%opts) || @ARGV < 1) {
     print STDERR "\
 Usage $0: [options] <IRSpy-database> [<target> ...]
-If no targets are specified, all targets in DB are tested.
+       -w              Use ZOOM::IRSpy::Web subclass
        -t <test>       Run the specified <test> [default: all tests]
+       -a              Test all targets (slow!)
+       -f <query>      Test targets found by the specified query
 ";
     exit 1;
 }
 
 my($dbname, @targets) = @ARGV;
-my $spy = new ZOOM::IRSpy($dbname, "admin", "fruitbat");
-$spy->targets(@targets) if @targets;
+my $class = "ZOOM::IRSpy";
+$class .= "::Web" if $opts{w};
+
+my $spy = $class->new($dbname, "admin", "fruitbat");
+if (@targets) {
+    $spy->targets(@targets);
+} elsif ($opts{f}) {
+    $spy->find_targets($opts{f});
+} elsif (!$opts{a}) {
+    print STDERR "$0: specify -a, -f <query> or list of targets\n";
+    exit 1;
+}
+
 $spy->initialise();
 my $res = $spy->check($opts{t});
 if ($res == 0) {
-    print "All tests were run\n";
+    print "All tests were attempted\n";
 } else {
     print "$res tests were skipped\n";
 }
+
+
+# Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
+package HTML::Mason::Commands;
+BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
+sub flush_buffer { print shift(), " flushing\n" if 0 }