X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FTitle.pm;h=86f5aecab2ed7412bcdb4b0dbf31e63aab7355eb;hb=adf4375f42066dd4498c08b68b9a784dd4ea7eac;hp=48755983f60d0f78c435bcc51deb5e08d04cd804;hpb=880bb74a2cc77e58aa99cbaeb300435316417e76;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 4875598..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.5 2006-10-06 11:33:08 mike Exp $ +# $Id: Title.pm,v 1.10 2007-02-23 15:03:44 mike Exp $ # See the "Main" test package for documentation @@ -11,19 +11,21 @@ use warnings; use ZOOM::IRSpy::Test; our @ISA = qw(ZOOM::IRSpy::Test); +use ZOOM::IRSpy::Utils qw(isodate); + sub start { my $class = shift(); my($conn) = @_; - $conn->irspy_search_pqf('@attr 1=4 mineral', - ZOOM::Event::RECV_SEARCH, \&found, + $conn->irspy_search_pqf('@attr 1=4 mineral', undef, {}, + ZOOM::Event::ZEND, \&found, "exception", \&error); } sub found { - my($conn, $task, $event) = @_; + my($conn, $task, $__UNUSED_udata, $event) = @_; my $n = $task->{rs}->size(); $conn->log("irspy_test", @@ -37,9 +39,9 @@ sub found { sub error { - my($conn, $task, $exception) = @_; + my($conn, $task, $__UNUSED_udata, $exception) = @_; - $conn->log("irspy_test", "error: $exception"); + $conn->log("irspy_test", "title search had error: $exception"); my $rec = $conn->record(); $rec->append_entry("irspy:status", "" . isodate(time()) . "");