93bcd7af0ecdf2fbaf562ececbe4eec6a4170b1d
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / Bib1.pm
1 # $Id: Bib1.pm,v 1.5 2006-10-06 11:33:08 mike Exp $
2
3 # See the "Main" test package for documentation
4
5 package ZOOM::IRSpy::Test::Search::Bib1;
6
7 use 5.008;
8 use strict;
9 use warnings;
10
11 use ZOOM::IRSpy::Test;
12 our @ISA = qw(ZOOM::IRSpy::Test);
13
14
15 sub start {
16     my $class = shift();
17     my($conn) = @_;
18
19     my @attrs = (1,             # personal name
20                  4,             # title
21                  52,            # subject
22                  1003,          # author
23                  1016,          # any
24                  );
25     foreach my $attr (@attrs) {
26         $conn->irspy_search_pqf("\@attr 1=$attr mineral",
27                                 ZOOM::Event::RECV_SEARCH, \&found,
28                                 exception => \&error);
29     }
30 }
31
32
33 sub found {
34     my($conn, $task, $event) = @_;
35
36     my $n = $task->{rs}->size();
37     $conn->log("irspy_test", "search found $n record", $n==1 ? "" : "s");
38     my $rec = $conn->record();
39     $rec->append_entry("irspy:status", "<irspy:search_title ok='1'>" .
40                        isodate(time()) . "</irspy:search_title>");
41
42     return ZOOM::IRSpy::Status::TASK_DONE;
43 }
44
45
46 1;