X-Git-Url: http://git.indexdata.com/?p=simpleserver-moved-to-github.git;a=blobdiff_plain;f=ztest.pl;h=c5bec85292ca6d6142f0c9f291725dbc4c3b5ff6;hp=137645373086884061341910aa528b762837d0fc;hb=944da8b68f4a7191ce8a989f43b28ff853ac9120;hpb=b88f2f7ab4c8c08d1a4552c05b52264b7b3e5ee4 diff --git a/ztest.pl b/ztest.pl index 1376453..c5bec85 100755 --- a/ztest.pl +++ b/ztest.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -## $Id: ztest.pl,v 1.14 2005-11-09 09:35:47 adam Exp $ +## $Id: ztest.pl,v 1.16 2007-03-07 11:25:29 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,16 @@ sub my_scan_handler { } +my $_fail_frequency = 0; +my $_counter = 0; + sub my_search_handler { my $args = shift; + + if ($_fail_frequency != 0 && ++$_counter % $_fail_frequency == 0) { + print "Exiting to be nasty to client\n"; + exit(1); + } my $data = [{ name => "Peter Dornan", title => "Spokesman", @@ -154,6 +171,12 @@ 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);