X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FTitle.pm;h=86f5aecab2ed7412bcdb4b0dbf31e63aab7355eb;hb=9eaa3591a69586b241f756582839c9976a46c461;hp=b531c8fe727bc26b1ddefb62644dccae5d63e76d;hpb=b1cbdcd504f01904c2b5500700fe73c98c931f63;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Test/Search/Title.pm b/lib/ZOOM/IRSpy/Test/Search/Title.pm index b531c8f..86f5aec 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.1 2006-06-21 16:27:01 mike Exp $ +# $Id: Title.pm,v 1.10 2007-02-23 15:03:44 mike Exp $ # See the "Main" test package for documentation @@ -9,32 +9,43 @@ use strict; use warnings; use ZOOM::IRSpy::Test; -our @ISA; -@ISA = qw(ZOOM::IRSpy::Test); +our @ISA = qw(ZOOM::IRSpy::Test); +use ZOOM::IRSpy::Utils qw(isodate); -sub run { - my $this = shift(); - my $irspy = $this->irspy(); - my $pod = $irspy->pod(); - $pod->callback(ZOOM::Event::RECV_SEARCH, \&found); - $pod->search_pqf('@attr 1=4 computer'); - my $err = $pod->wait($irspy); +sub start { + my $class = shift(); + my($conn) = @_; - return 0; + $conn->irspy_search_pqf('@attr 1=4 mineral', undef, {}, + ZOOM::Event::ZEND, \&found, + "exception", \&error); } sub found { - my($conn, $irspy, $rs, $event) = @_; - - my $rec = $irspy->record($conn); - my $n = $rs->size(); - $irspy->log("irspy_test", $conn->option("host"), - " title search found $n record", $n==1 ? "" : "s"); - ### Note the success or failure of the search in $rec - return 0; + my($conn, $task, $__UNUSED_udata, $event) = @_; + + 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", "" . + isodate(time()) . ""); + + return ZOOM::IRSpy::Status::TASK_DONE; +} + + +sub error { + my($conn, $task, $__UNUSED_udata, $exception) = @_; + + $conn->log("irspy_test", "title search had error: $exception"); + my $rec = $conn->record(); + $rec->append_entry("irspy:status", "" . + isodate(time()) . ""); + return ZOOM::IRSpy::Status::TEST_BAD; }