Code to send username/password. I am pretty sure this correct, but it
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Ping.pm
1 # $Id: Ping.pm,v 1.25 2007-05-04 12:09:58 mike Exp $
2
3 # See the "Main" test package for documentation
4
5 package ZOOM::IRSpy::Test::Ping;
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 use ZOOM::IRSpy::Utils qw(isodate);
15
16 use Text::Iconv;
17 my $conv = new Text::Iconv("LATIN1", "UTF8");
18
19
20 sub start {
21     my $class = shift();
22     my($conn) = @_;
23
24     my %options = ();
25     my $xc = $conn->record()->xpath_context();
26     my $user = $xc->find("e:serverInfo/e:authentication/e:user");
27     my $password = $xc->find("e:serverInfo/e:authentication/e:password");
28     warn "user='$user', password='$password'\n";
29     $options{user} = $user if $user;
30     $options{password} = $password if $password;
31
32     $conn->irspy_connect(undef, \%options,
33                          ZOOM::Event::ZEND, \&connected,
34                          exception => \&not_connected);
35 }
36
37
38 sub connected {
39     my($conn, $__UNUSED_task, $__UNUSED_udata, $__UNUSED_event) = @_;
40
41     $conn->log("irspy_test", "connected");
42     $conn->record()->store_result("probe", ok => 1);
43
44     foreach my $opt (qw(search present delSet resourceReport
45                         triggerResourceCtrl resourceCtrl
46                         accessCtrl scan sort extendedServices
47                         level_1Segmentation level_2Segmentation
48                         concurrentOperations namedResultSets
49                         encapsulation resultCount negotiationModel
50                         duplicationDetection queryType104
51                         pQESCorrection stringSchema)) {
52         #print STDERR "\$conn->option('init_opt_$opt') = '", $conn->option("init_opt_$opt"), "'\n";
53         $conn->record()->store_result('init_opt', option => $opt)
54             if $conn->option("init_opt_$opt");
55     }
56
57     foreach my $opt (qw(serverImplementationId
58                         serverImplementationName
59                         serverImplementationVersion)) {
60         my $val = $conn->option($opt);
61         next if !defined $val; # not defined for SRU, for example
62
63         # There doesn't seem to be a reliable way to tell what
64         # character set the server uses for these.  At least one
65         # server (z3950.bcl.jcyl.es:210/AbsysCCFL) returns an ISO
66         # 8859-1 string containing an o-acute, which breaks the XML
67         # parser if we just insert it naively.  It seems reasonable,
68         # though, to guess that the great majority of servers will use
69         # ASCII, Latin-1 or Unicode.  The first of these is a subset
70         # of the second, so that brings it to down to two.  The
71         # strategy is simply this: assume it's ASCII-Latin-1, and try
72         # to convert to UTF-8.  If that conversion works, fine; if
73         # not, assume it's because the string was already UTF-8, so
74         # use it as is.
75         Text::Iconv->raise_error(1);
76         my $maybe;
77         eval {
78             $maybe = $conv->convert($val);
79         }; if (!$@ && $maybe ne $val) {
80             $conn->log("irspy", "converted '$val' from Latin-1 to UTF-8");
81             $val = $maybe;
82         }
83         $conn->record()->store_result($opt, value => $val);
84     }
85
86     return ZOOM::IRSpy::Status::TEST_GOOD;
87 }
88
89
90 sub not_connected {
91     my($conn, $__UNUSED_task, $__UNUSED_udata, $exception) = @_;
92
93     $conn->log("irspy_test", "not connected: $exception");
94     $conn->record()->store_result("probe",
95                                   ok => 0,
96                                   errcode => $exception->code(),
97                                   errmsg => $exception->message(),
98                                   addinfo => $exception->addinfo(),
99                                   diagset => $exception->diagset());
100
101     return ZOOM::IRSpy::Status::TEST_BAD;
102 }
103
104
105 1;