From: Mike Taylor Date: Sat, 23 Sep 2006 07:13:43 +0000 (+0000) Subject: Major rewrite to support all-targets search. X-Git-Tag: CPAN-v1.02~54^2~996 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=ea809b72467ab402aeaa048b94c773e5d0818e5d Major rewrite to support all-targets search. --- diff --git a/web/htdocs/details/check.mc b/web/htdocs/details/check.mc index a866a6f..bf550f9 100644 --- a/web/htdocs/details/check.mc +++ b/web/htdocs/details/check.mc @@ -1,22 +1,26 @@ -%# $Id: check.mc,v 1.3 2006-09-20 16:36:07 mike Exp $ +%# $Id: check.mc,v 1.4 2006-09-23 07:13:43 mike Exp $ +<%args> +@id + <%perl> -my $id = $r->param("id"); -if (!$id) { - print "No 'id' specified!\n"; +my $allTargets = (@id == 1 && $id[0] eq ""); +print "

Testing ...

\n"; +my $spy = new ZOOM::IRSpy("localhost:3313/IR-Explain---1", + admin => "fruitbat"); +print " \n" + if !$allTargets; + +ZOOM::Log::mask_str("irspy,irspy_test"); # Do we need this? +ZOOM::Log::init_level(ZOOM::Log::module_level("irspy,irspy_test")); +ZOOM::Log::time_format("%F %T"); # ISO-8601 format +### Arrange to capture logging output ... somehow. + +$spy->targets(@id) if !$allTargets; +$spy->initialise(); +my $res = $spy->check(); +if ($res == 0) { + print "All tests were run\n"; } else { - print "

$id

\n"; - my $spy = new ZOOM::IRSpy("localhost:3313/IR-Explain---1", admin => "fruitbat"); - ZOOM::Log::mask_str("irspy,irspy_test"); # Do we need this? - ZOOM::Log::init_level(ZOOM::Log::module_level("irspy,irspy_test")); - ZOOM::Log::time_format("%F %T"); # ISO-8601 format - ### capture logging output ... somehow. - $spy->targets($id); - $spy->initialise(); - my $res = $spy->check(); - if ($res == 0) { - print "All tests were run\n"; - } else { - print "Some tests were skipped\n"; - } + print "Some tests were skipped\n"; }