X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FTitle.pm;h=48755983f60d0f78c435bcc51deb5e08d04cd804;hp=2bf4f09dd420bf06fa3df0246cd4158209521622;hb=880bb74a2cc77e58aa99cbaeb300435316417e76;hpb=378c5b5e691e85900047ef38a913cc69b6537edc diff --git a/lib/ZOOM/IRSpy/Test/Search/Title.pm b/lib/ZOOM/IRSpy/Test/Search/Title.pm index 2bf4f09..4875598 100644 --- a/lib/ZOOM/IRSpy/Test/Search/Title.pm +++ b/lib/ZOOM/IRSpy/Test/Search/Title.pm @@ -1,4 +1,4 @@ -# $Id: Title.pm,v 1.4 2006-09-13 16:30:27 mike Exp $ +# $Id: Title.pm,v 1.5 2006-10-06 11:33:08 mike Exp $ # See the "Main" test package for documentation @@ -9,34 +9,41 @@ use strict; use warnings; use ZOOM::IRSpy::Test; -our @ISA; -@ISA = qw(ZOOM::IRSpy::Test); +our @ISA = qw(ZOOM::IRSpy::Test); -sub run { - my $this = shift(); - my $irspy = $this->irspy(); - my $pod = $irspy->pod(); +sub start { + my $class = shift(); + my($conn) = @_; - $pod->callback(ZOOM::Event::RECV_SEARCH, \&found); - $pod->search_pqf('@attr 1=4 computer'); - my $err = $pod->wait($irspy); - ### Should notice failure and log it. - - return 0; + $conn->irspy_search_pqf('@attr 1=4 mineral', + ZOOM::Event::RECV_SEARCH, \&found, + "exception", \&error); } sub found { - my($conn, $irspy, $rs, $event) = @_; + my($conn, $task, $event) = @_; - my $n = $rs->size(); - $irspy->log("irspy_test", $conn->option("host"), - " title search found $n record", $n==1 ? "" : "s"); - my $rec = $irspy->record($conn); + my $n = $task->{rs}->size(); + $conn->log("irspy_test", + "title search found $n record", $n==1 ? "" : "s"); + my $rec = $conn->record(); $rec->append_entry("irspy:status", "" . - $irspy->isodate(time()) . ""); - return 0; + isodate(time()) . ""); + + return ZOOM::IRSpy::Status::TASK_DONE; +} + + +sub error { + my($conn, $task, $exception) = @_; + + $conn->log("irspy_test", "error: $exception"); + my $rec = $conn->record(); + $rec->append_entry("irspy:status", "" . + isodate(time()) . ""); + return ZOOM::IRSpy::Status::TEST_BAD; }