From ea809b72467ab402aeaa048b94c773e5d0818e5d Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Sat, 23 Sep 2006 07:13:43 +0000 Subject: [PATCH] Major rewrite to support all-targets search. --- web/htdocs/details/check.mc | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) 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"; } -- 1.7.10.4