X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FDan1.pm;fp=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FDan1.pm;h=f435ba9c02212e7748e62595ca448a1ecfc9448a;hb=306497793bbb2d3b62816cb7e4ce65dcabadcea8;hp=0000000000000000000000000000000000000000;hpb=cb43bb86cc8a14ac7072b7503577aa493500dce0;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Test/Search/Dan1.pm b/lib/ZOOM/IRSpy/Test/Search/Dan1.pm new file mode 100644 index 0000000..f435ba9 --- /dev/null +++ b/lib/ZOOM/IRSpy/Test/Search/Dan1.pm @@ -0,0 +1,60 @@ +# $Id: Dan1.pm,v 1.1 2006-10-13 13:40:29 sondberg Exp $ + +# See the "Main" test package for documentation + +package ZOOM::IRSpy::Test::Search::Dan1; + +use 5.008; +use strict; +use warnings; + +use ZOOM::IRSpy::Test; +our @ISA = qw(ZOOM::IRSpy::Test); + + +sub start { + my $class = shift(); + my($conn) = @_; + my @attrs = ( 1..27 # Dan-1 + ); + + foreach my $attr (@attrs) { + $conn->irspy_search_pqf("\@attr dan1 1=$attr mineral", + {'attr' => $attr}, + ZOOM::Event::RECV_SEARCH, \&found, + exception => \&error); + } +} + + +sub found { + my($conn, $task, $test_args, $event) = @_; + my $attr = $test_args->{'attr'}; + my $n = $task->{rs}->size(); + + $conn->log("irspy_test", "search on access-point $attr found $n record", + $n==1 ? "" : "s"); + $conn->record()->append_entry("irspy:status", + "". + isodate(time()) . + ""); + + return ZOOM::IRSpy::Status::TASK_DONE; +} + + +sub error { + my($conn, $task, $test_args, $exception) = @_; + my $attr = $test_args->{'attr'}; + + $conn->log("irspy_test", "search on access-point $attr had error: ", + $exception); + $conn->record()->append_entry("irspy:status", + "". + isodate(time()) . + ""); + return ZOOM::IRSpy::Status::TASK_DONE; +} + + +1;