X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft3.c;h=588761254346d87bf957202df70e9091292552c9;hb=ccabffc112ba33841d636522046c9ce4f02152c2;hp=adf8be1553e55b41432eac685dbd49a7abcd0bf6;hpb=4989a5fc444f3bca0f094f1ac2bfe4f04af5e666;p=idzebra-moved-to-github.git diff --git a/test/api/t3.c b/test/api/t3.c index adf8be1..5887612 100644 --- a/test/api/t3.c +++ b/test/api/t3.c @@ -1,6 +1,6 @@ -/* $Id: t3.c,v 1.11 2004-10-28 15:24:36 heikki Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: t3.c,v 1.15 2005-01-22 12:20:35 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -20,35 +20,24 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#include -#include +/* Creates a few result sets */ + #include "testlib.h" +const char *myrec[] ={ + "\n" + " My title\n" + "\n", + 0}; + int main(int argc, char **argv) { int i; - ZebraService zs; - ZebraHandle zh; - const char *myrec = - "\n" - " My title\n" - "\n"; - - yaz_log_init_file("t3.log"); - yaz_log_init_level(LOG_ALL); - - nmem_init (); - - zs = start_service(0); - zh = zebra_open (zs); - zebra_select_database(zh, "Default"); - zebra_init(zh); + ZebraService zs = start_up(0, argc, argv); + ZebraHandle zh = zebra_open(zs); - zebra_begin_trans (zh, 1); - zebra_add_record (zh, myrec, strlen(myrec)); - zebra_end_trans (zh); + init_data(zh, myrec); for (i = 0; i<4; i++) { @@ -75,22 +64,17 @@ int main(int argc, char **argv) yaz_pqf_destroy(parser); #if 0 /*FIXME Why is this disabled ??? */ - zebra_records_retrieve (zh, odr_output, setname, 0, - VAL_TEXT_XML, 1, &retrievalRecord); + zebra_records_retrieve(zh, odr_output, setname, 0, + VAL_TEXT_XML, 1, &retrievalRecord); #endif #if 1 - zebra_deleleResultSet(zh, Z_DeleteRequest_list, + zebra_deleteResultSet(zh, Z_DeleteRequest_list, 1, &setnamep, &status); #endif - odr_destroy (odr_input); - odr_destroy (odr_output); + odr_destroy(odr_input); + odr_destroy(odr_output); } - zebra_commit (zh); - zebra_close (zh); - zebra_stop (zs); + zebra_commit(zh); - nmem_exit (); - xmalloc_trav ("x"); - logf(LOG_LOG,"================ All tests OK "); - exit (0); + return close_down(zh, zs, 0); }