The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

# See the "Main" test package for documentation

package ZOOM::IRSpy::Test::Search::Explain;

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 @explain = qw(CategoryList TargetInfo DatabaseInfo SchemaInfo TagSetInfo
                     RecordSyntaxInfo AttributeSetInfo TermListInfo
                     ExtendedServicesInfo AttributeDetails TermListDetails
                     ElementSetDetails RetrivalRecordDetails SortDetails
                     Processing VariantSetInfo UnitSet);

    foreach my $category (@explain) {
	$conn->irspy_search_pqf('@attr exp-1 1=1 ' . $category,
                                {'category' => $category},
				{ databaseName => 'IR-Explain-1' },
				ZOOM::Event::ZEND, \&found,
				exception => \&error);
    }
}


sub found {
    my($conn, $task, $test_args, $event) = @_;
    my $category = $test_args->{'category'};

    my $n = $task->{rs}->size();
    $task->{rs}->destroy();
    my $ok = ($n > 0);
    $conn->log("irspy_test", "Explain category ", $category, " gave ", $n,
               " hit(s).");

    update($conn, $category, $ok);

    return ZOOM::IRSpy::Status::TASK_DONE;
}


sub error {
    my($conn, $task, $test_args, $exception) = @_;
    my $category = $test_args->{'category'};

    $task->{rs}->destroy();
    $conn->log("irspy_test", "Explain category lookup failed: ", $exception);
    update($conn, $category, 0);
    zoom_error_timeout_update($conn, $exception);

    return ZOOM::IRSpy::Status::TEST_BAD
	if ($exception->code() == 109 || # Database unavailable
	    $exception->code() == 235); # Database does not exist

    return ZOOM::IRSpy::Status::TASK_DONE;
}


sub update {
    my ($conn, $category, $ok) = @_;
    $conn->record()->store_result('explain', 'category'  => $category,
                                             'ok'        => $ok);
}

1;