X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fcheck.mc;fp=web%2Fhtdocs%2Fdetails%2Fcheck.mc;h=bf550f95a918c7e298906befa3537b73f2b9724e;hp=a866a6fa56cbe145417d51b2dca5c8f113725cb3;hb=86caed4a8dd3d4212fc437ba30dd4490b2175458;hpb=8efe0565c09bfab66fe5feb67d34b5a38bd80eac 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"; }