Added snippet utilities and snippet window implementation.
[idzebra-moved-to-github.git] / test / api / t9.c
index 07d1f45..435991e 100644 (file)
@@ -1,6 +1,6 @@
-/* $Id: t9.c,v 1.2 2004-10-28 15:24:36 heikki Exp $
-   Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
-   Index Data Aps
+/* $Id: t9.c,v 1.6 2005-05-24 11:35:43 adam Exp $
+   Copyright (C) 1995-2005
+   Index Data ApS
 
 This file is part of the Zebra server.
 
@@ -22,35 +22,22 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 /** t9.c - test rank-1 */
 
-#include <yaz/log.h>
-#include <yaz/pquery.h>
-#include <idzebra/api.h>
-
 #include "testlib.h"
 
 #include "rankingrecords.h"
 
 #define qry(zh,query,hits,string,score) \
-    RankingQuery(__LINE__,(zh),(query),(hits),(string),(score))
+    ranking_query(__LINE__,(zh),(query),(hits),(string),(score))
 
 int main(int argc, char **argv)
 {
-    ZebraService zs;
-    ZebraHandle zh;
-
-    yaz_log_init_file("t9.log");
-    /* yaz_log_init_level(LOG_ALL); */
+    ZebraService zs = start_up(0, argc, argv);
+    ZebraHandle zh = zebra_open(zs);
 
-    nmem_init ();
-    
-    zs = start_service(""); /* default to zebra.cfg */
-    zh = zebra_open (zs);
     init_data(zh, recs);
 
-    zebra_select_database(zh, "Default");
-
     qry( zh, "@attr 1=1016 @attr 2=102 the",
-            3, "first title", 872 );
+            3, "first title", 997 );
 
     qry( zh, "@attr 1=1016 @attr 2=102 foo",
             3, "second title", 850 );
@@ -58,14 +45,7 @@ int main(int argc, char **argv)
     /* get the record with the most significant hit, that is the 'bar' */
     /* as that is the rarest of my search words */
     qry( zh, "@attr 1=1016 @attr 2=102 @or @or the foo bar",
-            3, "third title", 895 );
-
-    
-    zebra_close (zh);
-    zebra_stop (zs);
+            3, "third title", 940 );
 
-    nmem_exit ();
-    xmalloc_trav ("x");
-    logf(LOG_LOG,"============ ALL TESTS PASSED OK ============");
-    exit(0);
+    return close_down(zh, zs, 0);
 }