Add update-client to distribution.
[ZOOM-Perl-moved-to-github.git] / t / 26-packages.t
index 600c991..a0670e6 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: 26-packages.t,v 1.5 2005-12-13 17:36:11 mike Exp $
+# $Id: 26-packages.t,v 1.7 2006-04-12 12:29:49 mike Exp $
 
 # Before `make install' is performed this script should be runnable with
 # `make test'. After `make install' it should work as `perl 26-packages.t'
@@ -11,7 +11,7 @@ BEGIN { use_ok('ZOOM') };
 
 
 # We will create, and destroy, a new database with a random name
-my $host = "test.indexdata.com:8017";
+my $host = "test.indexdata.com:2118";
 my $dbname = join("", map { chr(ord("a") + int(rand(26))) } 1..10);
 
 # Connect anonymously, and expect this to fail
@@ -57,8 +57,7 @@ count_hits($conn, "the", 0, 2);
 dropdb($conn, $dbname, 0);
 
 # A second dropping should fail, as the database is no longer there.
-### But at present, it's "always successful" (though not really)
-dropdb($conn, $dbname, 0);
+dropdb($conn, $dbname, 10004);
 
 
 sub makeconn {
@@ -119,8 +118,7 @@ sub dropdb {
     my $p = $conn->package();
     # No need to keep ok()ing this, or checking the option-setting
     $p->option(databaseName => $dbname);
-    ### Don't send the package at the moment -- it corrupts Zebra
-    #$p->send("drop");
+    eval { $p->send("drop") };
     my($errcode, $errmsg, $addinfo) = maybe_error($@);
     ok($errcode == $expected_error,
        "database drop '$dbname'"  . ($errcode ? " refused $errcode" : ""));