X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft5.c;h=e5f43344340466b81aff5ed44053c88c3218b6d4;hb=1dfb2eabceebab1841f13a07314171c00873409d;hp=a19de000fae902d264d2e2d2f079a35e297bd2fc;hpb=91cd9a822677f6ccaac0a5445d1781d10180460f;p=idzebra-moved-to-github.git diff --git a/test/api/t5.c b/test/api/t5.c index a19de00..e5f4334 100644 --- a/test/api/t5.c +++ b/test/api/t5.c @@ -1,4 +1,4 @@ -/* $Id: t5.c,v 1.1 2004-06-14 21:43:44 adam Exp $ +/* $Id: t5.c,v 1.7 2004-10-20 14:32:29 heikki Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -22,8 +22,17 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include +#include +/* 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%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : ""); + return zebra_start(cfg); +} + static void expect(ZebraHandle zh, const char *pqf, int hits_expect, int *exit_code) { @@ -43,7 +52,7 @@ static void expect(ZebraHandle zh, const char *pqf, int hits_expect, int main(int argc, char **argv) { - int i, hits = -1; + int i; int exit_code = 0; ZebraService zs; ZebraHandle zh; @@ -55,10 +64,11 @@ int main(int argc, char **argv) ; yaz_log_init_file("t5.log"); + yaz_log_init_level(LOG_ALL); nmem_init (); - zs = zebra_start("zebra.cfg", 0, 0); + zs = start_service(); zh = zebra_open (zs); zebra_select_database(zh, "Default"); zebra_init(zh); @@ -76,6 +86,21 @@ int main(int argc, char **argv) expect(zh, "@attr 1=4 {my title}", 2, &exit_code); expect(zh, "@attr 1=4 @and x title", 2, &exit_code); + /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */ + expect(zh, "@prox 0 2 1 2 k 2 my x", 2, &exit_code); + + /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */ + expect(zh, "@prox 0 2 1 2 k 2 x my", 0, &exit_code); + + /* exl=0 distance=2 order=0 relation=2 (<=), known, unit=word */ + expect(zh, "@prox 0 2 0 2 k 2 x my", 2, &exit_code); + + /* exl=0 distance=2 order=0 relation=3 (=), known, unit=word */ + expect(zh, "@prox 0 2 1 3 k 2 my x", 1, &exit_code); + + /* exl=1 distance=2 order=0 relation=3 (=), known, unit=word */ + expect(zh, "@prox 1 2 1 3 k 2 my x", 1, &exit_code); + zebra_close (zh); zebra_stop (zs);