Clarify reporting
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Record / Fetch.pm
1 # $Id: Fetch.pm,v 1.15 2006-11-14 16:18:51 mike Exp $
2
3 # See the "Main" test package for documentation
4
5 package ZOOM::IRSpy::Test::Record::Fetch;
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     # Here I want to get a use attribute from the session, which we've
20     # managed to search for in the Search/Bib1 or Search/Dan1 tests.
21     # But how?  So far we search for title: 1=4
22     $conn->irspy_search_pqf("\@attr 1=4 mineral", {}, {},       
23                             ZOOM::Event::RECV_SEARCH, \&completed_search,
24                             exception => \&error);
25 }
26
27
28 sub completed_search {
29     my($conn, $task, $udata, $event) = @_;
30
31     my $n = $task->{rs}->size();
32     $conn->log("irspy_test", "Fetch test search found $n records");
33     return ZOOM::IRSpy::Status::TEST_SKIPPED if $n == 0;
34
35     my @syntax = (
36                    'canmarc',
37                    'danmarc',
38                    'grs-1',
39                    'ibermarc',
40                    'intermarc',
41                    'jpmarc',
42                    'librismarc',
43                    'mab',
44                    'normarc',
45                    'opac',
46                    'picamarc',
47                    'rusmarc',
48                    'summary',
49                    'sutrs',
50                    'swemarc',
51                    'ukmarc',
52                    'unimarc',
53                    'usmarc',
54                    'xml'
55                 );
56     #@syntax = qw(grs-1 sutrs usmarc xml); # simplify for debugging
57     foreach my $syntax (@syntax) {
58         $conn->irspy_rs_record($task->{rs}, 0,
59                                { syntax => $syntax },
60                                { start => 0, count => 1,
61                                  preferredRecordSyntax => $syntax },
62                                 ZOOM::Event::RECV_RECORD, \&record,
63                                 exception => \&error);
64     }
65
66     return ZOOM::IRSpy::Status::TASK_DONE;
67 }
68
69
70 sub record {
71     my($conn, $task, $test_args, $event) = @_;
72     my $syn = $test_args->{'syntax'};
73     my $rs = $task->{rs};
74
75     # Due to a bug in ZOOM-C (as of YAZ 2.1.38 of 31st October 2006),
76     # diagnostics in Present responses are not reported, so that we
77     # always end up in this callback rather than in error() where we
78     # should be.  Luckily, we can test whether the retrieval really
79     # did work by rendering the record, which will yield an undefined
80     # result if the fetch failed.
81     my $record = _fetch_record($rs, 0, $syn);
82     my $text = $record->render();
83     if (defined $text) {
84         $conn->log("irspy_test", "Successfully retrieved a $syn record");
85         if (0) {
86             print STDERR "Hits: ", $rs->size(), "\n";
87             print STDERR "Syntax: ", $syn, "\n";
88             print STDERR $text;
89         }
90     } else {
91         $conn->log("irspy_test", "Retrieval of $syn record failed: ",
92                    "(exception unavailable)");
93     }
94
95     $conn->record()->store_result('record_fetch',
96                                   'syntax'   => $syn,
97                                   'ok'       => defined $text ? 1 : 0);
98
99     return ZOOM::IRSpy::Status::TASK_DONE;
100 }
101
102
103 sub _fetch_record {
104     my($rs, $index0, $syntax) = @_;
105
106     my $oldSyntax = $rs->option(preferredRecordSyntax => $syntax);
107     my $record = $rs->record(0);
108     $oldSyntax = "" if !defined $oldSyntax;
109     $rs->option(preferredRecordSyntax => $oldSyntax);
110
111     return $record;
112 }
113
114
115 sub error {
116     my($conn, $task, $test_args, $exception) = @_;
117     my $syn = $test_args->{'syntax'};
118
119     $conn->log("irspy_test", "Retrieval of $syn record failed: ", $exception);
120     $conn->record()->store_result('record_fetch',
121                                   'syntax'       => $syn,
122                                   'ok'        => 0);
123     return ZOOM::IRSpy::Status::TASK_DONE;
124 }
125
126
127 1;