X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FBib1.pm;h=fd4d1d62010b0539e3872e8c8245d4b71694451d;hb=dbf1fadda290f6fa6d6e6539954667aad75639c9;hp=e5ecfdc296807f07fec513a906afb7060422e1b7;hpb=7c734b45d30daa8dfff8ec1c4b1e22e0eb7bf243;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 e5ecfdc..fd4d1d6 100644 --- a/lib/ZOOM/IRSpy/Test/Search/Bib1.pm +++ b/lib/ZOOM/IRSpy/Test/Search/Bib1.pm @@ -1,4 +1,3 @@ -# $Id: Bib1.pm,v 1.11 2006-10-23 12:23:29 sondberg Exp $ # See the "Main" test package for documentation @@ -23,8 +22,8 @@ sub start { foreach my $attr (@attrs) { $conn->irspy_search_pqf("\@attr 1=$attr mineral", - {'attr' => $attr}, - ZOOM::Event::RECV_SEARCH, \&found, + {'attr' => $attr}, {}, + ZOOM::Event::ZEND, \&found, exception => \&error); } } @@ -33,13 +32,12 @@ sub start { sub found { my($conn, $task, $test_args, $event) = @_; my $attr = $test_args->{'attr'}; - my $n = $task->{rs}->size(); + my $n = $task->{rs}->size(); + $task->{rs}->destroy(); $conn->log("irspy_test", "search on access-point $attr found $n record", $n==1 ? "" : "s"); - $conn->record()->store_result('search', 'set' => 'bib1', - 'ap' => $attr, - 'ok' => 1); + update($conn, $attr, 1); return ZOOM::IRSpy::Status::TASK_DONE; } @@ -49,13 +47,26 @@ sub error { my($conn, $task, $test_args, $exception) = @_; my $attr = $test_args->{'attr'}; + $task->{rs}->destroy(); $conn->log("irspy_test", "search on access-point $attr had error: ", $exception); - $conn->record()->store_result('search', 'set' => 'bib1', - 'ap' => $attr, - 'ok' => 0); + update($conn, $attr, 0); + zoom_error_timeout_update($conn, $exception); + + return ZOOM::IRSpy::Status::TEST_BAD + if ($exception->code() == 1 || # permanent system error + $exception->code() == 235 || # Database does not exist + $exception->code() == 109); # Database unavailable + return ZOOM::IRSpy::Status::TASK_DONE; } +sub update { + my ($conn, $attr, $ok) = @_; + $conn->record()->store_result('search', 'set' => 'bib-1', + 'ap' => $attr, + 'ok' => $ok); +} + 1;