X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=test%2Fapi%2Ft8.c;h=d1edd0e8b617e12168119a53480fc82ca675ed61;hp=67e996b1b7c718bb76a03dd5bbd8ebdc399837e2;hb=4478d785b7769691261005c98063b98a5a5971b3;hpb=b6dee8028d45d1c6db5a23d853fd67135bc1a0b9 diff --git a/test/api/t8.c b/test/api/t8.c index 67e996b..d1edd0e 100644 --- a/test/api/t8.c +++ b/test/api/t8.c @@ -1,6 +1,6 @@ -/* $Id: t8.c,v 1.3 2004-10-24 13:34:45 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: t8.c,v 1.12 2006-08-14 10:40:22 adam Exp $ + Copyright (C) 1995-2006 + Index Data ApS This file is part of the Zebra server. @@ -15,34 +15,16 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. -*/ +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -/* t8: test numeric attributes */ +*/ -#include -#include -#include -#include +/** t8: test numeric attributes */ -#define LOGLEVEL LOG_ALL -static int testno=1; +#include "testlib.h" -/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */ -static ZebraService start_service() -{ - char cfg[256]; - char *srcdir = getenv("srcdir"); - sprintf(cfg, "%.200s%szebra8.cfg", - srcdir ? srcdir : "", srcdir ? "/" : ""); - return zebra_start(cfg); -} - -static void insertdata(ZebraHandle zh) -{ - const char *rec1 = +const char *recs[] = { "\n" " My title\n" " test record with single coordset, negatives\n" @@ -52,8 +34,8 @@ static void insertdata(ZebraHandle zh) " 49 \n" " 31 \n" " " - "\n"; - const char *rec2 = + "\n", + "\n" " Another title\n" " second test with two coord sets\n" @@ -69,108 +51,51 @@ static void insertdata(ZebraHandle zh) " 41 \n" " 25 \n" " " - "\n"; - - zebra_select_database(zh, "Default"); - zebra_init(zh); - zebra_begin_trans (zh, 1); - zebra_add_record (zh, rec1, strlen(rec1)); - zebra_add_record (zh, rec2, strlen(rec2)); - zebra_end_trans (zh); - -} - -static void query( ZebraHandle zh, int lineno, char *qry, int expectedhits) -{ - ODR odr_input = odr_createmem (ODR_DECODE); - YAZ_PQF_Parser parser = yaz_pqf_create(); - Z_RPNQuery *query; - - int hits; - int thistest=testno++; - int rc; - - logf(LOG_LOG,"Test %d (line %d): expecting %d", - thistest, lineno,expectedhits); - logf(LOG_LOG,"%s", qry); - - query = yaz_pqf_parse(parser, odr_input, qry); - assert(query); - zebra_begin_trans (zh, 0); + "\n", + 0}; - logf(LOG_DEBUG,"calling search"); - rc=zebra_search_RPN (zh, odr_input, query, "nameless", &hits); - logf(LOG_DEBUG,"search returned %d",rc); - if (rc) - printf("search returned %d",rc); - if (hits != expectedhits) - { - printf( "FAIL: Test %d (line %d):\n" - "got %d hits, expected %d\n" - "in '%s'\n", - thistest, lineno,hits, expectedhits, qry); - logf( LOG_FATAL, "FAIL: Test %d (line %d): got %d hits, expected %d\n", - thistest, lineno, hits,expectedhits); - exit(1); - } - - zebra_end_trans (zh); - yaz_pqf_destroy(parser); - odr_destroy (odr_input); - logf(LOG_LOG,"Test %d ok",thistest); -} - - -int main(int argc, char **argv) +static void tst(int argc, char **argv) { - ZebraService zs; - ZebraHandle zh; - yaz_log_init_file("t8.log"); -#ifdef LOGLEVEL - yaz_log_init_level(LOGLEVEL); -#endif - - nmem_init (); - - zs = start_service(); - zh = zebra_open (zs); + ZebraService zs = tl_start_up("zebra8.cfg", argc, argv); + ZebraHandle zh = zebra_open (zs, 0); - insertdata(zh); + YAZ_CHECK(tl_init_data(zh, recs)); -#define Q(q,n) query(zh,__LINE__,q,n) /* couple of simple queries just to see that we have indexed the stuff */ - Q( "@attr 1=4 title",2 ); - Q( "title",2 ); + YAZ_CHECK(tl_query(zh, "@attr 1=4 title", 2)); /* 1=2038: West-Bounding-Coordinate 2039: East: 2040: North: 2041 South*/ /* 4=109: numeric string */ /* 2=3: equal 2=1: less, 2=4: greater or equal 2=5 greater */ /* N>25, search attributes work */ - Q( "@attr 2=4 @attr gils 1=2040 @attr 4=109 25",2); + YAZ_CHECK(tl_query(zh, "@attr 2=4 @attr gils 1=2040 @attr 4=109 25", 2)); /* N=41, get rec1 only */ - Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 41",1); + YAZ_CHECK(tl_query(zh, "@attr 2=3 @attr gils 1=2040 @attr 4=109 41", 1)); /* N=49, get both records */ - Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 49",2); + YAZ_CHECK(tl_query(zh, "@attr 2=3 @attr gils 1=2040 @attr 4=109 49", 2)); /* W=-120 get both records */ - Q( "@attr 2=3 @attr gils 1=2038 @attr 4=109 -120",2); + YAZ_CHECK(tl_query(zh, "@attr 2=3 @attr gils 1=2038 @attr 4=109 -120", 2)); /* W<-122 get only rec1 */ - Q( "@attr 2=1 @attr gils 1=2038 @attr 4=109 '-120' ",1); + YAZ_CHECK(tl_query(zh, "@attr 2=1 @attr gils 1=2038 @attr 4=109 '-120' ", 1)); /* N=41 and N=49 get only rec2 */ - Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 \"41 49\" ",1); - - zebra_commit (zh); - zebra_close (zh); - zebra_stop (zs); + YAZ_CHECK(tl_query(zh, "@attr 2=3 @attr gils 1=2040 @attr 4=109 \"41 49\" ", 1)); - nmem_exit (); - xmalloc_trav ("x"); - logf(LOG_LOG,"All tests OK"); - exit (0); + YAZ_CHECK(tl_close_down(zh, zs)); } + +TL_MAIN +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +