X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FBib1.pm;h=56a43fba523ef55bc538ce7e15028813cafd1405;hb=86374b0502e33990e2ef9fd929395b435d084b6e;hp=5645213775017c9dddf8138184e24b8495845040;hpb=3aa58eced3366820503469dd58fc2e2a30b0b6b2;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 5645213..56a43fb 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.2 2006-09-26 13:34:38 sondberg Exp $ +# $Id: Bib1.pm,v 1.6 2006-10-11 16:47:23 mike Exp $ # See the "Main" test package for documentation @@ -7,44 +7,53 @@ package ZOOM::IRSpy::Test::Search::Bib1; use 5.008; use strict; use warnings; -use Data::Dumper; use ZOOM::IRSpy::Test; -our @ISA = @ISA = qw(ZOOM::IRSpy::Test); -our @Bib1_Attr = qw(1 2 3 4 5 6 7 8 9); +our @ISA = qw(ZOOM::IRSpy::Test); + + +sub start { + my $class = shift(); + my($conn) = @_; + + my @attrs = (1, # personal name + 4, # title + 52, # subject + 1003, # author + 1016, # any + ); + foreach my $attr (@attrs) { + $conn->irspy_search_pqf("\@attr 1=$attr mineral", + ZOOM::Event::RECV_SEARCH, \&found, + exception => \&error); + } +} -sub run { - my $this = shift(); - my $irspy = $this->irspy(); - my $pod = $irspy->pod(); +sub found { + my($conn, $task, $event) = @_; - $pod->callback(ZOOM::Event::RECV_SEARCH, \&found); + 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->record()->append_entry("irspy:status", + "" . + isodate(time()) . + ""); - foreach my $attr (@Bib1_Attr) { - $pod->search_pqf('@attr 1=' . $attr . ' water' ); - $irspy->{'handle'}->{'attr'} = $attr; - my $err = $pod->wait($irspy); - } - - return 0; + return ZOOM::IRSpy::Status::TASK_DONE; } -sub found { - my($conn, $irspy, $rs, $event) = @_; - my $attr = $irspy->{'handle'}->{'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, $exception) = @_; + + $conn->log("irspy_test", "error: $exception"); + $conn->record()->append_entry("irspy:status", + "" . + isodate(time()) . + ""); + return ZOOM::IRSpy::Status::TASK_DONE; }