X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=t%2F1-Net-Z3950-ZOOM.t;h=bab5712402687d1a99d2d81527ec96d7d8602832;hb=1b20412a345bace276d8274e68d383bd35626706;hp=a860861a35d3e7f861d94993fd38d155377b4eea;hpb=6f215ad44c9f08c55c5953e280b3ccd9e5b0684e;p=ZOOM-Perl-moved-to-github.git diff --git a/t/1-Net-Z3950-ZOOM.t b/t/1-Net-Z3950-ZOOM.t index a860861..bab5712 100644 --- a/t/1-Net-Z3950-ZOOM.t +++ b/t/1-Net-Z3950-ZOOM.t @@ -1,16 +1,19 @@ -# $Id: 1-Net-Z3950-ZOOM.t,v 1.13 2005-11-16 16:24:42 mike Exp $ +# $Id: 1-Net-Z3950-ZOOM.t,v 1.16 2007-09-14 10:36:13 mike Exp $ # Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl 1-Net-Z3950-ZOOM.t' use strict; use warnings; -use Test::More tests => 22; +use Test::More tests => 23; BEGIN { use_ok('Net::Z3950::ZOOM') }; my $msg = Net::Z3950::ZOOM::diag_str(Net::Z3950::ZOOM::ERROR_INVALID_QUERY); ok($msg eq "Invalid query", "diagnostic string lookup works"); +$msg = Net::Z3950::ZOOM::diag_srw_str(27); +ok($msg eq "Empty term unsupported", "SRW diagnostic string lookup works"); + my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy"); my $host = "no.such.host"; @@ -19,7 +22,7 @@ $errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo); ok($errcode == Net::Z3950::ZOOM::ERROR_CONNECT && $addinfo eq $host, "connection to non-existent host '$host' fails"); -$host = "indexdata.com/gils"; +$host = "z3950.indexdata.com/gils"; $conn = Net::Z3950::ZOOM::connection_new($host, 0); $errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo); ok($errcode == 0, "connection to '$host'"); @@ -84,7 +87,7 @@ my $data = Net::Z3950::ZOOM::record_get($rec, "render", $len); ok($data =~ /^245 +\$a ISOTOPIC DATES OF ROCKS AND MINERALS$/m, "rendered record has expected title"); my $raw = Net::Z3950::ZOOM::record_get($rec, "raw", $len); -ok($raw =~ /^00981n/, "raw record contains expected header"); +ok($raw =~ /^00966n/, "raw record contains expected header"); Net::Z3950::ZOOM::resultset_destroy($rs); ok(1, "destroyed result-set");