Add comment
[irspy-moved-to-github.git] / bin / irspy.pl
1 #!/usr/bin/perl
2
3 # Run like this:
4 #       YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick localhost:8018/IR-Explain---1 Z39.50:amicus.oszk.hu:1616/ANY
5 #       YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick -r ../etc/dallas.rules localhost:8018/IR-Explain---1 Z39.50:catalog.dallaslibrary.org:210/PAC
6 #       YAZ_LOG=irspy,irspy_test sudo ./setrlimit -n 3000 -u mike -- perl -I../lib irspy.pl -t Main -a localhost:8018/IR-Explain---1
7 #       YAZ_LOG=irspy,irspy_test perl -I../lib irspy.pl -t Main -a -n 100 localhost:8018/IR-Explain---1
8 #
9 # Available log-levels are as follows:
10 #       irspy -- high-level application logging
11 #       irspy_debug -- low-level debugging (not very interesting)
12 #       irspy_event -- invocations of ZOOM_event() and individual events
13 #       irspy_unhandled -- unhandled events (not very interesting)
14 #       irspy_test -- adding, queueing and running tests
15 #       irspy_task -- adding, queueing and running tasks
16 #       irspy_data -- XML data written to registry
17
18 # I have no idea why this directory is not in Ubuntu's default Perl
19 # path, but we need it because just occasionally overload.pm:88
20 # requires Scalar::Util, which is in this directory.
21 #use lib '/usr/share/perl/5.8.7';
22
23 use Scalar::Util;
24 use Getopt::Std;
25 use ZOOM::IRSpy::Web;
26 use Carp;
27
28 use strict;
29 use warnings;
30
31 $SIG{__DIE__} = sub {
32     my($msg) = @_;
33     confess($msg);
34 };
35
36 my %opts;
37 if (!getopts('dwt:af:n:m:r:M:', \%opts) || @ARGV < 1) {
38     print STDERR "\
39 Usage $0: [options] <IRSpy-database> [<target> ...]
40         -d              debug
41         -w              Use ZOOM::IRSpy::Web subclass
42         -t <test>       Run the specified <test> [default: all tests]
43         -a              Test all targets (slow!)
44         -f <query>      Test targets found by the specified query
45         -n <number>     Number of connection to keep in active set
46         -m <n>,<i>      Only test targets whose hash mod <n> is <i>
47         -r <rulesFile>  Apply rules found in named file
48         -M max_depth    maximum number of nested template calls and variables/params
49 ";
50     exit 1;
51 }
52
53 my($dbname, @targets) = @ARGV;
54 my $class = "ZOOM::IRSpy";
55 $class .= "::Web" if $opts{w};
56
57 if ($opts{M} && $opts{M} > 0) {
58     no warnings;
59     $ZOOM::IRSpy::xslt_max_depth = $opts{M};
60 }
61 if ($opts{d}) { 
62     no warnings;
63     $ZOOM::IRSpy::debug = $opts{d};
64 }
65
66 my $spy = $class->new($dbname, "admin", "fruitbat", $opts{n});
67 if (@targets) {
68     $spy->targets(@targets);
69 } elsif ($opts{f}) {
70     $spy->find_targets($opts{f});
71 } elsif (!$opts{a}) {
72     print STDERR "$0: specify -a, -f <query> or list of targets\n";
73     exit 2;
74 }
75
76 if (defined $opts{m}) {
77     my($n, $i) = ($opts{m} =~ /^(\d+),(\d+)$/);
78     if (!defined $n) {
79         print STDERR "$0: argument to -m must be of the form <n>,<i>\n";
80         exit 3;
81     }
82     $spy->restrict_modulo($n, $i);
83 }
84
85 if (defined $opts{r}) {
86     $spy->apply_rules($opts{r})
87 }
88
89 $spy->initialise($opts{t});
90 my $res = $spy->check();
91 if ($res == 0) {
92     print "All tests were attempted\n";
93 } else {
94     print "$res tests were skipped\n";
95 }
96
97
98 # Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
99 package HTML::Mason::Commands;
100 BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
101 sub flush_buffer { print shift(), " flushing\n" if 0 }