3 # $Id: irspy.pl,v 1.29 2007-09-18 16:58:18 mike Exp $
6 # 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
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 # YAZ_LOG=irspy,irspy_test perl -I../lib irspy.pl -t Main -a -n 100 localhost:8018/IR-Explain---1
10 # Available log-levels are as follows:
11 # irspy -- high-level application logging
12 # irspy_debug -- low-level debugging (not very interesting)
13 # irspy_event -- invocations of ZOOM_event() and individual events
14 # irspy_unhandled -- unhandled events (not very interesting)
15 # irspy_test -- adding, queueing and running tests
16 # irspy_task -- adding, queueing and running tasks
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.
22 use lib '/usr/share/perl/5.8.7';
37 if (!getopts('wt:af:n:m:', \%opts) || @ARGV < 1) {
39 Usage $0: [options] <IRSpy-database> [<target> ...]
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>
50 my($dbname, @targets) = @ARGV;
51 my $class = "ZOOM::IRSpy";
52 $class .= "::Web" if $opts{w};
54 my $spy = $class->new($dbname, "admin", "fruitbat", $opts{n});
56 $spy->targets(@targets);
58 $spy->find_targets($opts{f});
60 print STDERR "$0: specify -a, -f <query> or list of targets\n";
64 if (defined $opts{m}) {
65 my($n, $i) = ($opts{m} =~ /^(\d+),(\d+)$/);
67 print STDERR "$0: argument to -m must be of the form <n>,<i>\n";
70 $spy->restrict_modulo($n, $i);
73 $spy->initialise($opts{t});
74 my $res = $spy->check();
76 print "All tests were attempted\n";
78 print "$res tests were skipped\n";
82 # Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
83 package HTML::Mason::Commands;
84 BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
85 sub flush_buffer { print shift(), " flushing\n" if 0 }