X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FBib1.pm;h=4f6048157bbb972b16dc809157c262036d7495c7;hb=5af22e3f1c66914ffebd391b78505c7f3ca5daf7;hp=bbeaeb3eed2237ed73b64b8284bff1c61fff0641;hpb=a97dd21a5ab11f0bee50160a5354423d35841e1d;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 bbeaeb3..4f60481 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.7 2006-10-12 14:40:24 mike Exp $ +# $Id: Bib1.pm,v 1.9 2006-10-13 10:03:31 sondberg Exp $ # See the "Main" test package for documentation @@ -8,6 +8,7 @@ use 5.008; use strict; use warnings; +use Data::Dumper; use ZOOM::IRSpy::Test; our @ISA = qw(ZOOM::IRSpy::Test); @@ -23,7 +24,8 @@ sub start { 1016, # any ); foreach my $attr (@attrs) { - $conn->irspy_search_pqf("\@attr 1=$attr mineral", $attr, + $conn->irspy_search_pqf("\@attr 1=$attr mineral", + {'attr' => $attr}, ZOOM::Event::RECV_SEARCH, \&found, exception => \&error); } @@ -31,30 +33,31 @@ sub start { sub found { - my($conn, $task, $attr, $event) = @_; - + my($conn, $task, $test_args, $event) = @_; + my $attr = $test_args->{'attr'}; my $n = $task->{rs}->size(); + $conn->log("irspy_test", "search on access-point $attr found $n record", $n==1 ? "" : "s"); - ### Need to get the BIB-1 attribute into this callback $conn->record()->append_entry("irspy:status", - "" . + "". isodate(time()) . - ""); + ""); return ZOOM::IRSpy::Status::TASK_DONE; } sub error { - my($conn, $task, $attr, $exception) = @_; + my($conn, $task, $test_args, $exception) = @_; + my $attr = $test_args->{'attr'}; $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; }