Piggy-backed OPAC records are counted as valid only if
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Record / OPAC.pm
1 # See the "Main" test package for documentation
2
3 ### Too much common code with Fetch.pm: need to refactor
4
5 package ZOOM::IRSpy::Test::Record::OPAC;
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 my @queries = (
15                "\@attr 1=4 mineral",
16                "\@attr 1=4 computer",
17                "\@attr 1=44 mineral", # Smithsonian doesn't support AP 4!
18                "\@attr 1=1016 water", # Connector Framework only does 1016
19                ### We can add more queries here
20                );
21
22 # We'd like to use this temporary-options hash to set
23 # preferredRecordSyntax, as well  But that doesn't work because the
24 # same value needs to be in force later on when we make the
25 # record_immediate() call, otherwise it misses its cache.
26 my %options = (
27     piggyback => 1,
28     count => 3,
29 #    preferredRecordSyntax => "opac"
30     );
31
32 sub start {
33     my $class = shift();
34     my($conn) = @_;
35
36     #$conn->option(apdulog => 1);
37     $conn->option(preferredRecordSyntax => "opac");
38     $conn->irspy_search_pqf($queries[0], { queryindex => 0 }, \%options,
39                             ZOOM::Event::ZEND, \&completed_search,
40                             exception => \&completed_search);
41 }
42
43
44 sub completed_search {
45     my($conn, $task, $udata, $event) = @_;
46
47     my $n = $task->{rs}->size();
48     $conn->log("irspy_test", "OPAC test search (", $task->render_query(), ") ",
49                ref $event && $event->isa("ZOOM::Exception") ?
50                "failed: $event" : "found $n records (event=$event)");
51
52     # remember how often a target record hit a timeout
53     if (ref $event && $event->isa("ZOOM::Exception")) {
54         if ($event =~ /Timeout/i) {
55             $conn->record->zoom_error->{TIMEOUT}++;
56             $conn->log("irspy_test", "Increase timeout error counter to: " . 
57                 $conn->record->zoom_error->{TIMEOUT});
58         }
59     }
60
61     if ($n == 0) {
62         $task->{rs}->destroy();
63         my $qindex = $udata->{queryindex}+1;
64         my $q = $queries[$qindex];
65         return ZOOM::IRSpy::Status::TEST_SKIPPED
66             if !defined $q || $conn->record->zoom_error->{TIMEOUT} >= $ZOOM::IRSpy::max_timeout_errors;
67
68         $conn->log("irspy_test", "Trying another search ...");
69         $conn->irspy_search_pqf($queries[$qindex], { queryindex => $qindex }, \%options,
70                                 ZOOM::Event::ZEND, \&completed_search,
71                                 exception => \&completed_search);
72         return ZOOM::IRSpy::Status::TASK_DONE;
73     }
74
75     # We have a result-set of three of more records, and we requested
76     # that those records be included in the Search Response using
77     # piggybacking.  Was it done?
78     my $rec = $task->{rs}->record_immediate(2);
79     my $ok = defined $rec && $rec->error() == 0;
80
81     $task->{rs}->destroy();
82     $conn->record()->store_result('multiple_opac', 'ok' => $ok);
83     return $ok ? ZOOM::IRSpy::Status::TEST_GOOD : ZOOM::IRSpy::Status::TEST_BAD;
84 }
85
86
87 1;