zebrasrv: sortkeys args are optional
[idzebra-moved-to-github.git] / dict / scantest.c
index 7ca800a..5da634b 100644 (file)
@@ -1,8 +1,5 @@
-/* $Id: scantest.c,v 1.7 2006-08-29 12:31:12 adam Exp $
-   Copyright (C) 1995-2006
-   Index Data ApS
-
-This file is part of the Zebra server.
+/* This file is part of the Zebra server.
+   Copyright (C) 1994-2011 Index Data
 
 Zebra is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -20,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
@@ -31,6 +31,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 struct handle_info {
     int b;
     int a;
+    int start_cut;
+    int end_cut;
     char **ar;
 };
 
@@ -46,18 +48,30 @@ static int handler(char *name, const char *info, int pos, void *client)
     yaz_log(YLOG_DEBUG, "pos=%d idx=%d name=%s", pos, idx, name);
     if (idx < 0)
        return 0;
+    if (idx < hi->start_cut || idx >= hi->end_cut)
+    {
+        return 1;
+    }
 
     hi->ar[idx] = malloc(strlen(name)+1);
     strcpy(hi->ar[idx], name);
+
     return 0;
 }
 
-int do_scan(Dict dict, int before, int after, char *scan_term, char **cmp_strs,
-            int verbose)
+int do_scan(Dict dict, int before, int after, const char *sterm,
+            char **cmp_strs,
+            int verbose, int start_cut, int end_cut)
 {
     struct handle_info hi;
+    char scan_term[1024];
+
     int i;
     int errors = 0;
+
+    strcpy(scan_term, sterm);
+    hi.start_cut = start_cut;
+    hi.end_cut = end_cut;
     hi.a = after;
     hi.b = before;
     hi.ar = malloc(sizeof(char*) * (after+before+1));
@@ -66,25 +80,55 @@ int do_scan(Dict dict, int before, int after, char *scan_term, char **cmp_strs,
     yaz_log(YLOG_DEBUG, "dict_scan before=%d after=%d term=%s",
             before, after, scan_term);
     dict_scan (dict, scan_term, &before, &after, &hi, handler);
-    for (i = 0; i<hi.a+hi.b; i++)
+    for (i = 0; i < hi.a+hi.b; i++)
     {
-       if (cmp_strs)
+        if (!cmp_strs)
+        {
+            if (i >= start_cut &&  i < end_cut)
+            {
+                if (!hi.ar[i])
+                {
+                    printf ("--> FAIL i=%d hi.ar[i] == NULL\n", i);
+                    errors++;
+                }
+            }
+            else
+            {
+                if (hi.ar[i])
+                {
+                    printf ("--> FAIL i=%d hi.ar[i] = %s\n", i, hi.ar[i]);
+                    errors++;
+                }
+            }
+        }
+        else
        {
-           if (!cmp_strs[i])
-           {
-               printf ("--> FAIL cmp_strs == NULL\n");
-               errors++;
-           }
-           else if (!hi.ar[i])
-           {
-               printf ("--> FAIL strs == NULL\n");
-               errors++;
-           }
-           else if (strcmp(cmp_strs[i], hi.ar[i]))
-           {
-               printf ("--> FAIL expected %s\n", cmp_strs[i]);
-               errors++;
-           }
+            if (i >= start_cut && i < end_cut)
+            {
+                if (!hi.ar[i])
+                {
+                    printf ("--> FAIL i=%d strs == NULL\n", i);
+                    errors++;
+                }
+                else if (!cmp_strs[i])
+                {
+                    printf ("--> FAIL i=%d cmp_strs == NULL\n", i);
+                    errors++;
+                }
+                else if (strcmp(cmp_strs[i], hi.ar[i]))
+                {
+                    printf ("--> FAIL i=%d expected %s\n", i, cmp_strs[i]);
+                    errors++;
+                }
+            }
+            else
+            {
+                if (hi.ar[i])
+                {
+                    printf ("--> FAIL i=%d hi.ar[i] != NULL\n", i);
+                    errors++;
+                }
+            }
        }
        if (verbose || errors)
        {
@@ -105,17 +149,42 @@ int do_scan(Dict dict, int before, int after, char *scan_term, char **cmp_strs,
     return errors;
 }
 
-static void tst(Dict dict)
+static void tst(Dict dict, int start, int number)
 {
-    char scan_term[1024];
+    int i;
+
+    /* insert again with original value again */
+    for (i = start; i < number; i += 100)
+    {
+        int v = i;
+        char w[32];
+        sprintf(w, "%d", i);
+        YAZ_CHECK_EQ(dict_insert(dict, w, sizeof(v), &v), 2);
+    }
+    /* insert again with different value */
+    for (i = start; i < number; i += 100)
+    {
+        int v = i-1;
+        char w[32];
+        sprintf(w, "%d", i);
+        YAZ_CHECK_EQ(dict_insert(dict, w, sizeof(v), &v), 1);
+    }
+    /* insert again with original value again */
+    for (i = start; i < number; i += 100)
+    {
+        int v = i;
+        char w[32];
+        sprintf(w, "%d", i);
+        YAZ_CHECK_EQ(dict_insert(dict, w, sizeof(v), &v), 1);
+    }
+
     {
         char *cs[] = {
             "4497",
             "4498",
             "4499",
             "45"};
-        strcpy(scan_term, "4499");
-        YAZ_CHECK_EQ(do_scan(dict, 2, 2, scan_term, cs, 0), 0);
+        YAZ_CHECK_EQ(do_scan(dict, 2, 2, "4499", cs, 0, 0, 3), 0);
     }
     {
         char *cs[] = {
@@ -123,9 +192,11 @@ static void tst(Dict dict)
             "4499",
             "45",
             "450"};
-        strcpy(scan_term, "45");
-        YAZ_CHECK_EQ(do_scan(dict, 2, 2, scan_term, cs, 0), 0);
+        YAZ_CHECK_EQ(do_scan(dict, 2, 2, "45", cs, 0, 0, 3), 0);
     }
+
+    for (i = 0; i < 20; i++)
+        YAZ_CHECK_EQ(do_scan(dict, 20, 20, "45", 0, 0, 20-i, 20+i), 0);
 }
 
 int main(int argc, char **argv)
@@ -133,7 +204,6 @@ int main(int argc, char **argv)
     BFiles bfs = 0;
     Dict dict = 0;
     int i;
-    int errors = 0;
     int ret;
     int before = 0, after = 0, number = 10000;
     char scan_term[1024];
@@ -180,18 +250,19 @@ int main(int argc, char **argv)
     }
     if (dict)
     {
+        int start = 10;
         /* Insert "10", "11", "12", .. "99", "100", ... number */
-        for (i = 10; i<number; i++)
+        for (i = start; i<number; i++)
         {
             char w[32];
             sprintf(w, "%d", i);
-            YAZ_CHECK_EQ(dict_insert (dict, w, sizeof(int), &i), 0);
+            YAZ_CHECK_EQ(dict_insert(dict, w, sizeof(int), &i), 0);
         }
-        
+
         if (after > 0 || before > 0)
-            do_scan(dict, before, after, scan_term, 0, 1);
+            do_scan(dict, before, after, scan_term, 0, 1, 0, after+1);
         else
-            tst(dict);
+            tst(dict, start, number);
 
         dict_close(dict);
     }
@@ -202,6 +273,7 @@ int main(int argc, char **argv)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab