3 # $Id: irspy.pl,v 1.21 2007-02-22 11:49:13 mike Exp $
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 # Available log-levels are as follows:
8 # irspy -- high-level application logging
9 # irspy_debug -- low-level debugging (not very interesting)
10 # irspy_event -- invocations of ZOOM_event() and individual events
11 # irspy_unhandled -- unhandled events (not very interesting)
12 # irspy_test -- adding, queueing and running tests
13 # irspy_task -- adding, queueing and running tasks
21 if (!getopts('wt:', \%opts) || @ARGV < 1) {
23 Usage $0: [options] <IRSpy-database> [<target> ...]
24 If no targets are specified, all targets in DB are tested.
25 -w Use ZOOM::IRSpy::Web subclass
26 -t <test> Run the specified <test> [default: all tests]
31 my($dbname, @targets) = @ARGV;
32 my $class = "ZOOM::IRSpy";
33 $class .= "::Web" if $opts{w};
35 my $spy = $class->new($dbname, "admin", "fruitbat");
36 $spy->targets(@targets) if @targets;
38 my $res = $spy->check($opts{t});
40 print "All tests were attempted\n";
42 print "$res tests were skipped\n";
46 # Fake the HTML::Mason class that ZOOM::IRSpy::Web uses
47 package HTML::Mason::Commands;
48 BEGIN { our $m = bless {}, "HTML::Mason::Commands" }
49 sub flush_buffer { print shift(), " flushing\n" if 0 }