X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=t%2F2-ZOOM.t;h=00039766eb4c4c9c613478e4fcbcd15ea34f4634;hb=bc1064f676d60c92f03cb0cf5d05fbca4f2fd7a6;hp=a8ce10c9fc0115056af33e588ca171f7589a7561;hpb=9f3877d67edcf78024841bbe8291d742c861a368;p=ZOOM-Perl-moved-to-github.git diff --git a/t/2-ZOOM.t b/t/2-ZOOM.t index a8ce10c..0003976 100644 --- a/t/2-ZOOM.t +++ b/t/2-ZOOM.t @@ -1,43 +1,83 @@ -# $Id: 2-ZOOM.t,v 1.2 2005-10-12 11:56:27 mike Exp $ +# $Id: 2-ZOOM.t,v 1.12 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 ZOOM.t' - -######################### - -# change 'tests => 1' to 'tests => last_test_to_print'; +# `make test'. After `make install' it should work as `perl 2-ZOOM.t' use strict; -use Test::More tests => 1; +use warnings; +use Test::More tests => 22; BEGIN { use_ok('ZOOM') }; -######################### +my $msg = ZOOM::diag_str(ZOOM::Error::INVALID_QUERY); +ok($msg eq "Invalid query", "diagnostic string lookup works"); -# Insert your test code below, the Test::More module is use()ed here so read -# its man page ( perldoc Test::More ) for help writing this test script. +my $host = "no.such.host"; +my $conn; +eval { $conn = new ZOOM::Connection($host, 0) }; +ok($@ && $@->isa("ZOOM::Exception") && + $@->code() == ZOOM::Error::CONNECT && $@->addinfo() eq $host, + "connection to non-existent host '$host' fails"); -my $host = "indexdata.com/gils"; -$host = "localhost:3950"; -my $port = 0; +$host = "z3950.indexdata.com/gils"; +eval { $conn = new ZOOM::Connection($host, 0) }; +ok(!$@, "connection to '$host'"); + +$conn->destroy(); +ok(1, "destroyed connection"); -my $conn = new ZOOM::Connection($host, $port); +eval { $conn = create ZOOM::Connection() }; +ok(!$@, "unconnected connection object created"); +eval { $conn->connect($host, 0) }; +ok(!$@, "delayed connection to '$host'"); + +my $val1 = "foo"; +my $val2 = "$val1\0bar"; +$conn->option(xyz => $val2); +my $val = $conn->option("xyz"); +ok($val eq $val1, "option() treats value as NUL-terminated"); +$conn->option_binary(xyz => $val2, length($val2)); +$val = $conn->option_binary("xyz"); +ok($val eq $val2, "option_setl() treats value as opaque chunk, val='$val'"); my $syntax = "usmarc"; $conn->option(preferredRecordSyntax => $syntax); -my $val = $conn->option("preferredRecordSyntax"); -die "set preferredRecordSyntax to '$syntax' but got '$val'" - if $val ne $syntax; +$val = $conn->option("preferredRecordSyntax"); +ok($val eq $syntax, "preferred record syntax set to '$val'"); + +my $query = '@attr @and 1=4 minerals'; +my $rs; +eval { $rs = $conn->search_pqf($query) }; +ok($@ && $@->isa("ZOOM::Exception") && + $@->code() == ZOOM::Error::INVALID_QUERY, + "search for invalid query '$query' fails"); + +my($xcode, $xmsg, $xinfo, $xset) = $conn->error_x(); +ok($xcode == $@->code() && $xmsg eq $@->message() && $xinfo eq $@->addinfo() && + $xset eq $@->diagset(), "error_x() consistent with exception"); +ok($conn->errcode() == $@->code(), + "errcode() consistent with exception"); +ok($conn->errmsg() eq $@->message(), + "errmsg() consistent with exception"); +ok($conn->addinfo() eq $@->addinfo(), + "addinfo() consistent with exception"); +ok($conn->diagset() eq $@->diagset(), + "diagset() consistent with exception"); -my $query = '@attr 1=4 minerals'; -my $rs = $conn->search_pqf($query); +$query = '@attr 1=4 minerals'; +eval { $rs = $conn->search_pqf($query) }; +ok(!$@, "search for '$query'"); my $n = $rs->size($rs); +ok($n == 1, "found 1 record as expected"); -for (my $i = 0; $i < $n; $i++) { - my $rec = $rs->record($i); - my $data = $rec->render(); - my $raw = $rec->raw(); -} +my $rec = $rs->record(0); +my $data = $rec->render(); +ok($data =~ /^245 +\$a ISOTOPIC DATES OF ROCKS AND MINERALS$/m, + "rendered record has expected title"); +my $raw = $rec->raw(); +ok($raw =~ /^00966n/, "raw record contains expected header"); $rs->destroy(); +ok(1, "destroyed result-set"); $conn->destroy(); +ok(1, "destroyed connection");