Allow same document to be modified multiple times within one transaction.
[idzebra-moved-to-github.git] / test / api / safari1.c
index 47c3a72..c1b0a81 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: safari1.c,v 1.3 2005-01-15 19:38:35 adam Exp $
+/* $Id: safari1.c,v 1.7 2005-09-16 09:58:39 adam Exp $
    Copyright (C) 1995-2005
    Index Data ApS
 
@@ -24,39 +24,85 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 #include "testlib.h"
 
-const char *myrec[] = {
+const char *myrec[] = 
+{
     "1234\n"  /* first record */
     "00024338 125060 1 any the\n"
     "00024338 125060 2 any art\n"
-    "00024338 125060 3 any of\n",
+    "00024338 125060 3 any mand\n",
 
-    "5678\n"  /* other record */
+    "5678\n"  /* other record - same owner id */
     "00024339 125060 1 any den\n"
     "00024339 125060 2 any gamle\n"
     "00024339 125060 3 any mand\n",
 
-    "5678\n"  /* same record identifier as before .. */
+    "5678\n"  /* same record chunk id as before .. */
     "00024339 125060 1 any the\n"
     "00024339 125060 2 any gamle\n"
     "00024339 125060 3 any mand\n",
 
-        0};
-       
+    "1000\n"  /* separate record */
+    "00024339 125061 1 any the\n"
+    "00024339 125061 2 any gamle\n"
+    "00024339 125061 3 any mand\n",
+    
+    "1001\n"  /* separate record */
+    "00024340 125062 1 any the\n"
+    "00024340 125062 2 any old\n"
+    "00024340 125062 3 any mand\n",
+    
+    0
+};
+
 int main(int argc, char **argv)
 {
-    zint ids[2];
+    zint ids[3];
+    zint limits[3];
     ZebraService zs = start_up("safari.cfg", argc, argv);
     
-    ZebraHandle zh = zebra_open(zs);
+    ZebraHandle zh = zebra_open(zs, 0);
 
     init_data(zh, myrec);
-    do_query(__LINE__, zh, "@attr 1=1016 the", 1);
-    do_query(__LINE__, zh, "@attr 1=1016 {the art}", 1);
-    do_query(__LINE__, zh, "@attr 1=1016 {den gamle}", 1);
-    do_query(__LINE__, zh, "@attr 1=1016 {the of}", 0);
+    do_query(__LINE__, zh, "@attr 1=any the", 3);
+    do_query(__LINE__, zh, "@attr 1=any {the art}", 1);
+    do_query(__LINE__, zh, "@attr 1=any {den gamle}", 0);
+    do_query(__LINE__, zh, "@attr 1=any {the gamle}", 1);
+    do_query(__LINE__, zh, "@attr 1=any {the of}", 0);
+
+    /* verify that we get these records exactly */
+    ids[0] = 24338;
+    ids[1] = 24339;
+    ids[2] = 24340;
+    meta_query(__LINE__, zh, "@attr 1=any mand", 3, ids);
+
+    /* limit to 125061 */
+    limits[0] = 125061;
+    limits[1] = 0;
+    zebra_set_limit(zh, 0, limits);
+    ids[0] = 24339;
+    meta_query(__LINE__, zh, "@attr 1=any mand", 1, ids);
+
+    /* limit to 125060, 125061 */
+    limits[0] = 125061;
+    limits[1] = 125060;
+    limits[2] = 0;
+    zebra_set_limit(zh, 0, limits);
+    ids[0] = 24338;
+    ids[1] = 24339;
+    meta_query(__LINE__, zh, "@attr 1=any mand", 2, ids);
+
+    /* all except 125062 */
+    limits[0] = 125062;
+    limits[1] = 0;
+    zebra_set_limit(zh, 1, limits);
 
     ids[0] = 24338;
-    meta_query(__LINE__, zh, "@attr 1=1016 the", 1, ids);
-       
+    ids[1] = 24339;
+    meta_query(__LINE__, zh, "@attr 1=any mand", 2, ids);
+
+    /* no limit */
+    zebra_set_limit(zh, 1, 0);
+    do_query(__LINE__, zh, "@attr 1=any mand", 3);
+
     return close_down(zh, zs, 0);
 }