X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FBib1.pm;h=d01fb5bc77893e34867f7ba2c2a5e1cbaa29b7ec;hb=543054dc1b2da8b314b44f8914635090e684df61;hp=56a43fba523ef55bc538ce7e15028813cafd1405;hpb=dc9bbb8ae09d481d587f5d9d7241b7aa68ad0746;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Test/Search/Bib1.pm b/lib/ZOOM/IRSpy/Test/Search/Bib1.pm index 56a43fb..d01fb5b 100644 --- a/lib/ZOOM/IRSpy/Test/Search/Bib1.pm +++ b/lib/ZOOM/IRSpy/Test/Search/Bib1.pm @@ -1,4 +1,4 @@ -# $Id: Bib1.pm,v 1.6 2006-10-11 16:47:23 mike Exp $ +# $Id: Bib1.pm,v 1.8 2006-10-12 14:40:33 mike Exp $ # See the "Main" test package for documentation @@ -23,7 +23,7 @@ sub start { 1016, # any ); foreach my $attr (@attrs) { - $conn->irspy_search_pqf("\@attr 1=$attr mineral", + $conn->irspy_search_pqf("\@attr 1=$attr mineral", $attr, ZOOM::Event::RECV_SEARCH, \&found, exception => \&error); } @@ -31,13 +31,13 @@ sub start { sub found { - my($conn, $task, $event) = @_; + my($conn, $task, $attr, $event) = @_; my $n = $task->{rs}->size(); - $conn->log("irspy_test", "search found $n record", $n==1 ? "" : "s"); - ### Need to get the BIB-1 attribute into this callback + $conn->log("irspy_test", "search on access-point $attr found $n record", + $n==1 ? "" : "s"); $conn->record()->append_entry("irspy:status", - "" . + "" . isodate(time()) . ""); @@ -46,11 +46,12 @@ sub found { sub error { - my($conn, $task, $exception) = @_; + my($conn, $task, $attr, $exception) = @_; - $conn->log("irspy_test", "error: $exception"); + $conn->log("irspy_test", "search on access-point $attr had error: ", + $exception); $conn->record()->append_entry("irspy:status", - "" . + "" . isodate(time()) . ""); return ZOOM::IRSpy::Status::TASK_DONE;