X-Git-Url: http://git.indexdata.com/?p=simpleserver-moved-to-github.git;a=blobdiff_plain;f=ztest.pl;h=86ac5c00447415ed6bd323babab7d16d59c59ea2;hp=473e3806a63cb23e54ccad548748da242c4364ee;hb=f13938aaeb456dc63ceb50a4f41e32e02d62459f;hpb=aa7443b391681a7f67c05fe1ca86a5b214e92e0c diff --git a/ztest.pl b/ztest.pl index 473e380..86ac5c0 100755 --- a/ztest.pl +++ b/ztest.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w ## This file is part of simpleserver -## Copyright (C) 2000-2011 Index Data. +## Copyright (C) 2000-2014 Index Data. ## All rights reserved. ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions are met: @@ -54,7 +54,7 @@ sub my_init_handler { if (defined($args->{PASS}) && defined($args->{USER})) { printf("Received USER/PASS=%s/%s\n", $args->{USER},$args->{PASS}); } - + } @@ -70,6 +70,7 @@ sub my_scan_handler { my $term = $args->{TERM}; my $entries = [ { TERM => 'Number 1', + DISPLAY_TERM => 'Number .1', OCCURRENCE => 10 }, { TERM => 'Number 2', OCCURRENCE => 8 }, @@ -94,6 +95,7 @@ sub my_scan_handler { $args->{ENTRIES} = $entries; $args->{STATUS} = Net::Z3950::SimpleServer::ScanPartial; print "Welcome to scan....\n"; + $args->{EXTRA_RESPONSE_DATA} = 'b'; print "You scanned for term '$term'\n"; } @@ -101,7 +103,7 @@ sub my_scan_handler { my $_fail_frequency = 0; my $_counter = 0; -sub my_search_handler { +sub my_search_handler { my $args = shift; my $data = [{ @@ -132,10 +134,13 @@ sub my_search_handler { print "Setname : $set_id\n"; print " inputfacets:\n"; print Dumper($facets); + print " extra args:\n"; + print Dumper($args->{EXTRA_ARGS}); print "------------------------------------------------------------\n"; $args->{OUTPUTFACETS} = $facets; + $args->{EXTRA_RESPONSE_DATA} = 'b'; $args->{HITS} = $hits; $session->{$set_id} = $data; $session->{__HITS} = $hits; @@ -176,7 +181,7 @@ sub my_start_handler { Net::Z3950::SimpleServer::yazlog("hello"); -my $handler = new Net::Z3950::SimpleServer( +my $handler = new Net::Z3950::SimpleServer( START => "main::my_start_handler", INIT => "main::my_init_handler", SEARCH => "main::my_search_handler",