X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft10.c;h=6e5323767444c8ad9aeeb10e6f8874812a199d05;hb=74fdf8a15af7bb827a256d9df3ecc34a57d2120f;hp=56b68a2dfa1a161ca8fa6af0261b9fc6b1733712;hpb=2cb08a89ee65d8ae2646b91dcf27bc3883759691;p=idzebra-moved-to-github.git diff --git a/test/api/t10.c b/test/api/t10.c index 56b68a2..6e53237 100644 --- a/test/api/t10.c +++ b/test/api/t10.c @@ -1,4 +1,4 @@ -/* $Id: t10.c,v 1.8 2005-05-24 11:35:43 adam Exp $ +/* $Id: t10.c,v 1.10 2006-03-31 15:58:05 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -25,9 +25,6 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "testlib.h" #include "rankingrecords.h" -#define qry(zh,query,hits,string,score) \ - ranking_query(__LINE__,(zh),(query),(hits),(string),(score)) - struct tst { char *schema; char *hit1; @@ -38,8 +35,6 @@ struct tst { int score3; }; - - struct tst tests[] = { {"ntc-atn", "first title", 0, "first title", 1000, "first title",1000 }, {"ntc-ntn", "first title", 0, "first title", 1000, "first title",1000 }, @@ -70,31 +65,33 @@ struct tst tests[] = { {0,0,0,0,0,0,0}, }; -int main(int argc, char **argv) +static void tst(int argc, char **argv) { int i; - ZebraService zs = start_up("zebrazv.cfg", argc, argv); - ZebraHandle zh = zebra_open (zs); + ZebraService zs = tl_start_up("zebrazv.cfg", argc, argv); + ZebraHandle zh = zebra_open(zs, 0); - init_data(zh, recs); + YAZ_CHECK(tl_init_data(zh, recs)); zebra_close(zh); for (i = 0; tests[i].schema; i++) { - zh = zebra_open (zs); - zebra_select_database(zh, "Default"); + zh = zebra_open(zs, 0); + YAZ_CHECK(zh); + YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK); + zebra_set_resource(zh, "zvrank.weighting-scheme", tests[i].schema); yaz_log(YLOG_LOG,"============%d: %s ===========", i, tests[i].schema); - ranking_query( __LINE__, zh, "@attr 1=1016 @attr 2=102 the", - 3, tests[i].hit1, tests[i].score1); - ranking_query( __LINE__, zh, "@attr 1=1016 @attr 2=102 @or foo bar", - 3, tests[i].hit2, tests[i].score2); - ranking_query( __LINE__, zh, - "@attr 1=1016 @attr 2=102 @or @or the foo bar", - 3, tests[i].hit3, tests[i].score3); - + YAZ_CHECK(tl_ranking_query(zh, "@attr 1=1016 @attr 2=102 the", + 3, tests[i].hit1, tests[i].score1)); + YAZ_CHECK(tl_ranking_query(zh, "@attr 1=1016 @attr 2=102 @or foo bar", + 3, tests[i].hit2, tests[i].score2)); + YAZ_CHECK(tl_ranking_query(zh, + "@attr 1=1016 @attr 2=102 @or @or the foo bar", + 3, tests[i].hit3, tests[i].score3)); zebra_close(zh); } - - return close_down(0,zs,0); + YAZ_CHECK(tl_close_down(0, zs)); } + +TL_MAIN