X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fcheck.mc;h=500c85c9359f69693ea1a62122126b8e8675808a;hb=153a266bdedb6a33f28f84575b5c72d0f5d2faf9;hp=809354bb16934ae2de60115544d3de6e547de766;hpb=73d42e40d6ca0dcb11a4c513c340d5158268ed07;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/check.mc b/web/htdocs/details/check.mc index 809354b..500c85c 100644 --- a/web/htdocs/details/check.mc +++ b/web/htdocs/details/check.mc @@ -1,22 +1,21 @@ -%# $Id: check.mc,v 1.2 2006-09-20 13:19:53 mike Exp $ +%# $Id: check.mc,v 1.5 2006-09-26 09:30:20 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"; +print " \n" + if !$allTargets; + +my $spy = new ZOOM::IRSpy::Web("localhost:3313/IR-Explain---1", + admin => "fruitbat"); +$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"); - 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 = 0;#$spy->check(); - if ($res == 0) { - print "All tests were run\n"; - } else { - print "Some tests were skipped\n"; - } + print "Some tests were skipped\n"; }