X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=t%2F14-sorting.t;h=ea74c6c80415fe8cd41fa562490bcae6c2402dd9;hb=bc1064f676d60c92f03cb0cf5d05fbca4f2fd7a6;hp=3a8e3e1b27ba28e6ec7e48c16ab42a8c37827b1f;hpb=e82dfe2405281bd9c283fa2adf1bdcc5e4a7db5e;p=ZOOM-Perl-moved-to-github.git diff --git a/t/14-sorting.t b/t/14-sorting.t index 3a8e3e1..ea74c6c 100644 --- a/t/14-sorting.t +++ b/t/14-sorting.t @@ -1,18 +1,18 @@ -# $Id: 14-sorting.t,v 1.4 2005-11-07 16:30:41 mike Exp $ +# $Id: 14-sorting.t,v 1.8 2006-11-02 17:48:26 mike Exp $ # Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl 14-sorting.t' use strict; use warnings; -use Test::More tests => 27; +use Test::More tests => 29; use MARC::Record; BEGIN { use_ok('Net::Z3950::ZOOM') }; my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy"); -my $host = "indexdata.com/gils"; +my $host = "z3950.indexdata.com/gils"; my $conn = Net::Z3950::ZOOM::connection_new($host, 0); $errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo); ok($errcode == 0, "connection to '$host'"); @@ -41,9 +41,12 @@ foreach my $i (1 .. $n) { $previous = $title; } -# Now reverse the order of sorting -Net::Z3950::ZOOM::resultset_sort($rs, "dummy", "1=4 >i"); -### There's no way to check for success, as this is a void function +# Now reverse the order of sorting. We never use resultset_sort(), +# which is identical to sort1() except that it returns nothing. +my $status = Net::Z3950::ZOOM::resultset_sort1($rs, "yaz", "1=4>i"); +ok($status < 0, "malformed sort criterion rejected"); +$status = Net::Z3950::ZOOM::resultset_sort1($rs, "yaz", "1=4 >i"); +ok($status == 0, "sort criterion accepted"); $previous = "z"; # Sorts after all legitimate titles foreach my $i (1 .. $n) {