complete error timeout handling for all tests
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / DBDate.pm
index 4ecdc91..b349f1b 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: DBDate.pm,v 1.2 2006-10-25 10:49:51 mike Exp $
 
 # This plugin tests searching on BIB-1 access-point 1011 (Date/time
 # added to db), the significance of which is that this search
@@ -17,13 +16,15 @@ use warnings;
 use ZOOM::IRSpy::Test;
 our @ISA = qw(ZOOM::IRSpy::Test);
 
+use ZOOM::IRSpy::Utils qw(isodate);
+
 
 sub start {
     my $class = shift();
     my($conn) = @_;
 
     $conn->irspy_search_pqf('@attr 1=1011 mineral', undef, {},
-                           ZOOM::Event::RECV_SEARCH, \&found,
+                           ZOOM::Event::ZEND, \&found,
                            "exception", \&error);
 }
 
@@ -49,6 +50,7 @@ sub error {
     my $rec = $conn->record();
     $rec->append_entry("irspy:status", "<irspy:search_dbdate ok='0'>" .
                       isodate(time()) . "</irspy:search_dbdate>");
+    zoom_error_timeout_update($conn, $exception);
     return ZOOM::IRSpy::Status::TEST_BAD;
 }