afa8ea6e458cd15850748c9e7024b17b63d9ea7c
[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 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
17 # I have no idea why this directory is not in Ubuntu's default Perl
18 # path, but we need it because just occasionally overload.pm:88
19 # requires Scalar::Util, which is in this directory.
20 #use lib '/usr/share/perl/5.8.7';
21
22 use Scalar::Util;
23 use Getopt::Std;
24 use ZOOM::IRSpy::Web;
25 use Carp;
26
27 use strict;
28 use warnings;
29
30 $SIG{__DIE__} = sub {
31     my($msg) = @_;
32     confess($msg);
33 };
34
35 my %opts;
36 if (!getopts('dwt:af:n:m:r:M:', \%opts) || @ARGV < 1) {
37     print STDERR "\
38 Usage $0: [options] <IRSpy-database> [<target> ...]
39         -d              debug
40         -w              Use ZOOM::IRSpy::Web subclass
41         -t <test>       Run the specified <test> [default: all tests]
42         -a              Test all targets (slow!)
43         -f <query>      Test targets found by the specified query
44         -n <number>     Number of connection to keep in active set
45         -m <n>,<i>      Only test targets whose hash mod <n> is <i>
46         -r <rulesFile>  Apply rules found in named file
47         -M max_depth    maximum number of nested template calls and variables/params
48 ";
49     exit 1;
50 }
51
52 my($dbname, @targets) = @ARGV;
53 my $class = "ZOOM::IRSpy";
54 $class .= "::Web" if $opts{w};
55
56 if ($opts{M} && $opts{M} > 0) {
57     no warnings;
58     $ZOOM::IRSpy::xslt_max_depth = $opts{M};
59 }
60 if ($opts{d}) { 
61     no warnings;
62     $ZOOM::IRSpy::debug = $opts{d};
63 }
64
65 my $spy = $class->new($dbname, "admin", "fruitbat", $opts{n});
66 if (@targets) {
67     $spy->targets(@targets);
68 } elsif ($opts{f}) {
69     $spy->find_targets($opts{f});
70 } elsif (!$opts{a}) {
71     print STDERR "$0: specify -a, -f <query> or list of targets\n";
72     exit 2;
73 }
74
75 if (defined $opts{m}) {
76     my($n, $i) = ($opts{m} =~ /^(\d+),(\d+)$/);
77     if (!defined $n) {
78         print STDERR "$0: argument to -m must be of the form <n>,<i>\n";
79         exit 3;
80     }
81     $spy->restrict_modulo($n, $i);
82 }
83
84 if (defined $opts{r}) {
85     $spy->apply_rules($opts{r})
86 }
87
88 $spy->initialise($opts{t});
89 my $res = $spy->check();
90 if ($res == 0) {
91     print "All tests were attempted\n";
92 } else {
93     print "$res tests were skipped\n";
94 }
95
96
97 # Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
98 package HTML::Mason::Commands;
99 BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
100 sub flush_buffer { print shift(), " flushing\n" if 0 }