X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FBib1.pm;h=fc1bf2caa0cffd8618fac57c2dc2feb8308760d8;hb=4f35abdf2907b2bf567a5708fb6f032d1d2560ea;hp=f85a659490e0cf53941be6eff04155b169546760;hpb=94420a06c51dbfd871e8a843ba10a397fcafeb05;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 f85a659..fc1bf2c 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.3 2006-10-02 07:40:53 sondberg Exp $ +# $Id: Bib1.pm,v 1.12 2006-10-25 10:49:51 mike Exp $ # See the "Main" test package for documentation @@ -7,45 +7,54 @@ package ZOOM::IRSpy::Test::Search::Bib1; use 5.008; use strict; use warnings; -use Data::Dumper; use ZOOM::IRSpy::Test; our @ISA = qw(ZOOM::IRSpy::Test); -our @Bib1_Attr = qw(1 2 3 4 5 6 7 8 9); -sub run { - my $this = shift(); - my $irspy = $this->irspy(); - my $pod = $irspy->pod(); +sub start { + my $class = shift(); + my($conn) = @_; + my @attrs = ( 1..63, 1000..1036, # Bib-1 + 1037..1096, 1185..1209, # Extended Bib-1 + 1097..1111, # Dublin-Core + 1112..1184 # GILS + ); + + foreach my $attr (@attrs) { + $conn->irspy_search_pqf("\@attr 1=$attr mineral", + {'attr' => $attr}, {}, + ZOOM::Event::RECV_SEARCH, \&found, + exception => \&error); + } +} - $pod->callback(ZOOM::Event::RECV_SEARCH, \&found); - foreach my $attr (@Bib1_Attr) { - $pod->search_pqf('@attr 1=' . $attr . ' water' ); - $irspy->{'handle'}->{'attr'} = $attr; - my $err = $pod->wait({'irspy' => $irspy, 'attr' => $attr}); - } +sub found { + my($conn, $task, $test_args, $event) = @_; + my $attr = $test_args->{'attr'}; + my $n = $task->{rs}->size(); - return 0; + $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); + + return ZOOM::IRSpy::Status::TASK_DONE; } -sub found { - my($conn, $href, $rs, $event) = @_; - my $irspy = $href->{'irspy'}; - my $attr = $href->{'attr'}; - my $n = $rs->size(); - my $rec = $irspy->record($conn); - - $irspy->log("irspy_test", $conn->option("host"), - " Bib-1 attribute=$attr search found $n record", - $n==1 ? "" : "s"); - - $rec->append_entry("irspy:status", "" . $irspy->isodate(time()) . - ""); - return 0; +sub error { + 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()->store_result('search', 'set' => 'bib1', + 'ap' => $attr, + 'ok' => 0); + return ZOOM::IRSpy::Status::TASK_DONE; }