Many public functions returns ZEBRA_RES rather than int to avoid
[idzebra-moved-to-github.git] / test / api / t5.c
index e5f4334..fb515e6 100644 (file)
@@ -1,6 +1,6 @@
-/* $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
+/* $Id: t5.c,v 1.12 2005-04-15 10:47:49 adam Exp $
+   Copyright (C) 1995-2005
+   Index Data ApS
 
 This file is part of the Zebra server.
 
@@ -20,91 +20,81 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
 */
 
-#include <yaz/log.h>
-#include <yaz/pquery.h>
-#include <idzebra/api.h>
+/** t5.c: proximity searches */
+#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%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
-    return zebra_start(cfg);
-}
+const char *myrec[] = {
+        "<gils>\n<title>My title</title>\n</gils>\n",
+        "<gils>\n<title>My x title</title>\n</gils>\n",
+        "<gils>\n<title>My title x</title>\n</gils>\n" ,
+       0} ;
        
-static void expect(ZebraHandle zh, const char *pqf, int hits_expect,
-                  int *exit_code)
-{
-    int hits;
-    if (zebra_search_PQF (zh, pqf, "set1", &hits) != 0)
-    {
-        yaz_log(LOG_FATAL, "Search %s: failed", pqf);
-        *exit_code = 1;
-    }
-    else if (hits != hits_expect)
-    {
-        yaz_log(LOG_FATAL, "Search %s: Expected %d, got %d", pqf,
-               hits_expect, hits);
-        *exit_code = 2;
-    }
-}
 
 int main(int argc, char **argv)
 {
-    int i;
-    int exit_code = 0;
-    ZebraService zs;
-    ZebraHandle zh;
-    const char *myrec[] = {
-        "<gils>\n<title>My title</title>\n</gils>\n",
-        "<gils>\n<title>My x title</title>\n</gils>\n",
-        "<gils>\n<title>My title x</title>\n</gils>\n" ,
-       0}
-    ;
-
-    yaz_log_init_file("t5.log");
-    yaz_log_init_level(LOG_ALL);
-
-    nmem_init ();
-    
-    zs = start_service();
-    zh = zebra_open (zs);
-    zebra_select_database(zh, "Default");
-    zebra_init(zh);
-
-    zebra_begin_trans (zh, 1);
-    for (i = 0; myrec[i]; i++)
-       zebra_add_record (zh, myrec[i], strlen(myrec[i]));
-    zebra_end_trans (zh);
-
-    expect(zh, "@attr 1=4 my", 3, &exit_code);
-    expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
-    expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
-    expect(zh, "@attr 1=4 {x my}", 0, &exit_code);
-    expect(zh, "@attr 1=4 {my x title}", 1, &exit_code);
-    expect(zh, "@attr 1=4 {my title}", 2, &exit_code);
-    expect(zh, "@attr 1=4 @and x title", 2, &exit_code);
+    ZebraService zs = start_up(0, argc, argv);
+    ZebraHandle zh = zebra_open(zs);
+
+    init_data(zh, myrec);
+
+    /* phrase searches */
+    do_query(__LINE__, zh, "@attr 1=4 my", 3);
+    do_query(__LINE__, zh, "@attr 1=4 {my x}", 1);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=1 {my x}", 1);
+    do_query(__LINE__, zh, "@attr 1=4 {my x}", 1);
+    do_query(__LINE__, zh, "@attr 1=4 {x my}", 0);
+    do_query(__LINE__, zh, "@attr 1=4 {my x title}", 1);
+    do_query(__LINE__, zh, "@attr 1=4 {my title}", 2);
+
+    /* and-list searches */
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=6 {x my}", 2);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=6 {my x}", 2);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=6 {my my}", 3);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=6 {e x}", 0);
+
+    /* or-list searches */
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=105 {x my}", 3);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=105 {my x}", 3);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=105 {my my}", 3);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=105 {e x}", 2);
+    do_query(__LINE__, zh, "@attr 1=4 @attr 4=106 {e x}", 2);
+
+    do_query(__LINE__, zh, "@attr 1=4 @and x title", 2);
 
     /* 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);
+    do_query(__LINE__, zh, "@prox 0 2 1 2 k 2 my x", 2);
 
     /* 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);
+    do_query(__LINE__, zh, "@prox 0 2 1 2 k 2 x my", 0);
 
     /* 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);
+    do_query(__LINE__, zh, "@prox 0 2 0 2 k 2 x my", 2);
 
     /* 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);
+    do_query(__LINE__, zh, "@prox 0 2 1 3 k 2 my x", 1);
 
     /* 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);
-
-    nmem_exit ();
-    xmalloc_trav ("x");
-    exit (exit_code);
+    do_query(__LINE__, zh, "@prox 1 2 1 3 k 2 my x", 1);
+
+    /* provoke unsupported use attribute */
+    do_query_x(__LINE__, zh, "@attr 1=999 @attr 4=1 x", 0, 114);
+    do_query_x(__LINE__, zh, "@attr 1=999 @attr 4=6 x", 0, 114);
+    do_query_x(__LINE__, zh, "@attr 1=999 @attr 4=105 x", 0, 114);
+    do_query_x(__LINE__, zh, "@attr 1=999 @attr 4=109 123", 0, 114);
+    do_query_x(__LINE__, zh, "@attrset 1.2.840.10003.3.1 @attr 1=999 x",
+              0, 114);
+    /* provoke unsupported attribute set */
+    do_query_x(__LINE__, zh, "@attrset 1.2.8 @attr 1=999 @attr 4=1 x", 0, 121);
+    do_query_x(__LINE__, zh, "@attrset 1.2.8 @attr 1=999 @attr 4=6 x", 0,
+              121);
+    do_query_x(__LINE__, zh, "@attrset 1.2.8 @attr 1=999 @attr 4=105 x", 0,
+              121);
+    do_query_x(__LINE__, zh, "@attrset 1.2.8 @attr 1=999 @attr 4=109 123",
+              0, 121);
+
+    /* provoke unsupported relation */
+    do_query_x(__LINE__, zh, "@attr 1=1016 @attr 2=6 x", 0, 117);
+    do_query_x(__LINE__, zh, "@attr 1=1016 @attr 2=6 @attr 4=109 x", 0, 117);
+    return close_down(zh, zs, 0);
 }