New cmd-line.
[irspy-moved-to-github.git] / bin / irspy.pl
1 #!/usr/bin/perl -w
2
3 # $Id: irspy.pl,v 1.24 2007-02-27 15:01:40 mike Exp $
4 #
5 # Run like this:
6 #       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
7 #       YAZ_LOG=irspy,irspy_test sudo ./setrlimit -n 3000 -u mike -- perl -I../lib irspy.pl -t Main -a localhost:8018/IR-Explain---1
8 # Available log-levels are as follows:
9 #       irspy -- high-level application logging
10 #       irspy_debug -- low-level debugging (not very interesting)
11 #       irspy_event -- invocations of ZOOM_event() and individual events
12 #       irspy_unhandled -- unhandled events (not very interesting)
13 #       irspy_test -- adding, queueing and running tests
14 #       irspy_task -- adding, queueing and running tasks
15
16 # I have no idea why this directory is not in Ubuntu's default Perl
17 # path, but we need it because just occasionally overload.pm:88
18 # requires Scalar::Util, which is in this directory.
19
20 use lib '/usr/share/perl/5.8.7';
21 use Scalar::Util;
22
23 use strict;
24 use warnings;
25 use Getopt::Std;
26 use ZOOM::IRSpy::Web;
27 use Carp;
28
29 local $SIG{__DIE__} = sub {
30     my($msg) = @_;
31     confess($msg);
32 };
33
34 my %opts;
35 if (!getopts('wt:af:', \%opts) || @ARGV < 1) {
36     print STDERR "\
37 Usage $0: [options] <IRSpy-database> [<target> ...]
38         -w              Use ZOOM::IRSpy::Web subclass
39         -t <test>       Run the specified <test> [default: all tests]
40         -a              Test all targets (slow!)
41         -f <query>      Test targets found by the specified query
42 ";
43     exit 1;
44 }
45
46 my($dbname, @targets) = @ARGV;
47 my $class = "ZOOM::IRSpy";
48 $class .= "::Web" if $opts{w};
49
50 my $spy = $class->new($dbname, "admin", "fruitbat");
51 if (@targets) {
52     $spy->targets(@targets);
53 } elsif ($opts{f}) {
54     $spy->find_targets($opts{f});
55 } elsif (!$opts{a}) {
56     print STDERR "$0: specify -a, -f <query> or list of targets\n";
57     exit 1;
58 }
59
60 $spy->initialise();
61 my $res = $spy->check($opts{t});
62 if ($res == 0) {
63     print "All tests were attempted\n";
64 } else {
65     print "$res tests were skipped\n";
66 }
67
68
69 # Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
70 package HTML::Mason::Commands;
71 BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
72 sub flush_buffer { print shift(), " flushing\n" if 0 }