ztest.pl returns display_term for one of the entries
[simpleserver-moved-to-github.git] / ztest.pl
1 #!/usr/bin/perl -w
2
3 ## This file is part of simpleserver
4 ## Copyright (C) 2000-2013 Index Data.
5 ## All rights reserved.
6 ## Redistribution and use in source and binary forms, with or without
7 ## modification, are permitted provided that the following conditions are met:
8 ##
9 ##     * Redistributions of source code must retain the above copyright
10 ##       notice, this list of conditions and the following disclaimer.
11 ##     * Redistributions in binary form must reproduce the above copyright
12 ##       notice, this list of conditions and the following disclaimer in the
13 ##       documentation and/or other materials provided with the distribution.
14 ##     * Neither the name of Index Data nor the names of its contributors
15 ##       may be used to endorse or promote products derived from this
16 ##       software without specific prior written permission.
17 ##
18 ## THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
19 ## EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 ## WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 ## DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
22 ## DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 ## (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 ## LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 ## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 ## THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 use ExtUtils::testlib;
30 use Data::Dumper;
31 use Net::Z3950::SimpleServer;
32 use Net::Z3950::OID;
33 use strict;
34
35 sub dump_hash {
36         my $href = shift;
37         my $key;
38
39         foreach $key (keys %$href) {
40                 printf("%10s    =>      %s\n", $key, $href->{$key});
41         }
42 }
43
44
45 sub my_init_handler {
46         my $args = shift;
47         my $session = {};
48
49         $args->{IMP_NAME} = "DemoServer";
50         $args->{IMP_ID} = "81";
51         $args->{IMP_VER} = "3.14159";
52         $args->{ERR_CODE} = 0;
53         $args->{HANDLE} = $session;
54         if (defined($args->{PASS}) && defined($args->{USER})) {
55             printf("Received USER/PASS=%s/%s\n", $args->{USER},$args->{PASS});
56         }
57
58 }
59
60
61 sub my_sort_handler {
62     my ($args) = @_;
63
64     print "Sort handler called\n";
65     print Dumper( $args );
66 }
67
68 sub my_scan_handler {
69         my $args = shift;
70         my $term = $args->{TERM};
71         my $entries = [
72                                 {       TERM            =>      'Number 1',
73                                         DISPLAY_TERM    =>      'Number .1',
74                                         OCCURRENCE      =>      10 },
75                                 {       TERM            =>      'Number 2',
76                                         OCCURRENCE      =>      8 },
77                                 {       TERM            =>      'Number 3',
78                                         OCCURRENCE      =>      8 },
79                                 {       TERM            =>      'Number 4',
80                                         OCCURRENCE      =>      8 },
81                                 {       TERM            =>      'Number 5',
82                                         OCCURRENCE      =>      8 },
83                                 {       TERM            =>      'Number 6',
84                                         OCCURRENCE      =>      8 },
85                                 {       TERM            =>      'Number 7',
86                                         OCCURRENCE      =>      8 },
87                                 {       TERM            =>      'Number 8',
88                                         OCCURRENCE      =>      8 },
89                                 {       TERM            =>      'Number 9',
90                                         OCCURRENCE      =>      8 },
91                                 {       TERM            =>      'Number 10',
92                                         OCCURRENCE      =>      4 },
93                         ];
94         $args->{NUMBER} = 10;
95         $args->{ENTRIES} = $entries;
96         $args->{STATUS} = Net::Z3950::SimpleServer::ScanPartial;
97         print "Welcome to scan....\n";
98         print "You scanned for term '$term'\n";
99 }
100
101
102 my $_fail_frequency = 0;
103 my $_counter = 0;
104
105 sub my_search_handler {
106         my $args = shift;
107
108         my $data = [{
109                         name            =>      "Peter Dornan",
110                         title           =>      "Spokesman",
111                         collaboration   =>      "ATLAS"
112                     }, {
113                         name            =>      "Jorn Dines Hansen",
114                         title           =>      "Professor",
115                         collaboration   =>      "HERA-B"
116                     }, {
117                         name            =>      "Alain Blondel",
118                         title           =>      "Head of coll.",
119                         collaboration   =>      "ALEPH"
120                     }];
121
122         my $session = $args->{HANDLE};
123         my $set_id = $args->{SETNAME};
124         my $rpn = $args->{RPN};
125         my @database_list = @{ $args->{DATABASES} };
126         my $query = $args->{QUERY};
127         my $facets = $args->{INPUTFACETS};
128         my $hits = 3;
129
130         print "------------------------------------------------------------\n";
131         print "Processing query : $query\n";
132         printf("Database set     : %s\n", join(" ", @database_list));
133         print "Setname          : $set_id\n";
134         print " inputfacets:\n";
135         print Dumper($facets);
136         print "------------------------------------------------------------\n";
137
138         $args->{OUTPUTFACETS} = $facets;
139
140         $args->{HITS} = $hits;
141         $session->{$set_id} = $data;
142         $session->{__HITS} = $hits;
143         if ($_fail_frequency != 0 && ++$_counter % $_fail_frequency == 0) {
144             print "Exiting to be nasty to client\n";
145             exit(1);
146         }
147 }
148
149
150 sub my_fetch_handler {
151         my $args = shift;
152         my $session = $args->{HANDLE};
153         my $set_id = $args->{SETNAME};
154         my $data = $session->{$set_id};
155         my $offset = $args->{OFFSET};
156         my $record = "<xml>";
157         my $field;
158         my $hits = $session->{__HITS};
159         my $href = $data->[$offset - 1];
160
161         $args->{REP_FORM} = Net::Z3950::OID::xml;
162         foreach $field (keys %$href) {
163                 $record .= "<" . $field . ">" . $href->{$field} . "</" . $field . ">";
164         }
165
166         $record .= "</xml>";
167         $args->{RECORD} = $record;
168         if ($offset == $session->{__HITS}) {
169                 $args->{LAST} = 1;
170         }
171 }
172
173 sub my_start_handler {
174     my $args = shift;
175     my $config = $args->{CONFIG};
176 }
177
178 Net::Z3950::SimpleServer::yazlog("hello");
179
180 my $handler = new Net::Z3950::SimpleServer(
181                 START   =>      "main::my_start_handler",
182                 INIT    =>      "main::my_init_handler",
183                 SEARCH  =>      "main::my_search_handler",
184                 SCAN    =>      "main::my_scan_handler",
185                 SORT    =>      "main::my_sort_handler",
186                 FETCH   =>      "main::my_fetch_handler" );
187
188 if (@ARGV >= 2 && $ARGV[0] eq "-n") {
189     $_fail_frequency = $ARGV[1];
190     shift;
191     shift;
192 }
193 $handler->launch_server("ztest.pl", @ARGV);