X-Git-Url: http://git.indexdata.com/?p=simpleserver-moved-to-github.git;a=blobdiff_plain;f=ztest.pl;h=ea330b0b2e1449eb9bf82980f915fb9299a93bd4;hp=f3d30252e673b3f34b2b988e34131f2d979af7ff;hb=91eca62980c3a849143dbcce16d60c8316a52b01;hpb=952e59903828b53e6e8601c5d1480145f3b3dd5b;ds=sidebyside diff --git a/ztest.pl b/ztest.pl index f3d3025..ea330b0 100755 --- a/ztest.pl +++ b/ztest.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -## $Id: ztest.pl,v 1.13 2004-05-28 20:27:16 sondberg Exp $ +## $Id: ztest.pl,v 1.17 2007-03-08 14:51:32 mike Exp $ ## ------------------------------------------------------------------ ## ## Copyright (c) 2000-2004, Index Data. @@ -29,6 +29,7 @@ ## use ExtUtils::testlib; +use Data::Dumper; use Net::Z3950::SimpleServer; use Net::Z3950::OID; use strict; @@ -58,6 +59,14 @@ sub my_init_handler { } + +sub my_sort_handler { + my ($args) = @_; + + print "Sort handler called\n"; + print Dumper( $args ); +} + sub my_scan_handler { my $args = shift; my $term = $args->{TERM}; @@ -91,8 +100,12 @@ sub my_scan_handler { } +my $_fail_frequency = 0; +my $_counter = 0; + sub my_search_handler { my $args = shift; + my $data = [{ name => "Peter Dornan", title => "Spokesman", @@ -122,6 +135,10 @@ sub my_search_handler { $args->{HITS} = $hits; $session->{$set_id} = $data; $session->{__HITS} = $hits; + if ($_fail_frequency != 0 && ++$_counter % $_fail_frequency == 0) { + print "Exiting to be nasty to client\n"; + exit(1); + } } @@ -148,11 +165,18 @@ sub my_fetch_handler { } } +Net::Z3950::SimpleServer::yazlog("hello"); my $handler = new Net::Z3950::SimpleServer( INIT => "main::my_init_handler", SEARCH => "main::my_search_handler", SCAN => "main::my_scan_handler", + SORT => "main::my_sort_handler", FETCH => "main::my_fetch_handler" ); +if (@ARGV >= 2 && $ARGV[0] eq "-n") { + $_fail_frequency = $ARGV[1]; + shift; + shift; +} $handler->launch_server("ztest.pl", @ARGV);