X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=t%2F2-ZOOM.t;h=d64406838c8f12f98d3c3deae569dcfeb8d4a276;hb=87c72eaf97a3dbf51a93dab782c2909539addc48;hp=d7982d5a40e3804b938a81f85ce2d9651e7125e1;hpb=c91a693f0b982e490e5184906c27430a6a3e71bf;p=ZOOM-Perl-moved-to-github.git diff --git a/t/2-ZOOM.t b/t/2-ZOOM.t index d7982d5..d644068 100644 --- a/t/2-ZOOM.t +++ b/t/2-ZOOM.t @@ -1,46 +1,86 @@ -# $Id: 2-ZOOM.t,v 1.1 2005-10-12 09:48:21 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 => 23; 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. +$msg = ZOOM::diag_srw_str(27); +ok($msg eq "Empty term unsupported", "SRW diagnostic string lookup works"); -my $host = "indexdata.com/gils"; -$host = "localhost:3950"; -my $port = 0; +my $host = "no.such.host"; +my $conn; +eval { $conn = new ZOOM::Connection($host, 0) }; +# For some reason, Red Hat signals this as a TIMEOUT rather than a CONNECT +ok($@ && $@->isa("ZOOM::Exception") && + (($@->code() == ZOOM::Error::CONNECT && $@->addinfo() eq $host) || + ($@->code() == ZOOM::Error::TIMEOUT && $@->addinfo() eq "")), + "connection to non-existent host '$host' fails: \$\@=$@"); -my $conn = new ZOOM::Connection($host, $port); +$host = "z3950.indexdata.com/gils"; +eval { $conn = new ZOOM::Connection($host, 0) }; +ok(!$@, "connection to '$host'"); + +$conn->destroy(); +ok(1, "destroyed connection"); + +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); -print STDERR "Result count: $n\n"; +ok($n == 1, "found 1 record as expected"); -for (my $i = 0; $i < $n; $i++) { - my $rec = $rs->record($i); - my $data = $rec->render(); - print STDERR "=== record ", $i+1, " of $n ===\n", $data; - my $raw = $rec->raw(); - print STDERR "--- raw version ---\n", $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");