11d9e881d2f2dab6982e9a18d96b4b6250adbb97
[idzebra-moved-to-github.git] / test / api / test_trunc.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2009 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 /* Insert a number of randomly generated words and truncate */
21
22 #include "testlib.h"
23
24 static void tst(int argc, char **argv)
25 {
26     int i;
27     ZebraService zs = tl_start_up("test_trunc.cfg", argc, argv);
28     ZebraHandle zh = zebra_open(zs, 0);
29
30     srand(17);
31     
32     YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
33     zebra_init(zh);
34     zebra_close(zh);
35
36     for (i = 0; i<10; i++)
37     {
38         int l;
39
40         zh = zebra_open (zs, 0);
41         YAZ_CHECK(zh);
42
43         YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
44         
45         YAZ_CHECK(zebra_begin_trans (zh, 1) == ZEBRA_OK);
46
47         for (l = 0; l<100; l++)
48         {
49             char rec_buf[5120];
50             int j;
51             *rec_buf = '\0';
52             strcat(rec_buf, "<gils><title>");
53             if (i == 0)
54             {
55                 sprintf(rec_buf + strlen(rec_buf), "aaa");
56             }
57             else
58             {
59                 j = (rand() & 15) + 1;
60                 while (--j >= 0)
61                 {
62                     int c = 65 + (rand() & 15);
63                     sprintf(rec_buf + strlen(rec_buf), "%c", c);
64                 }
65             }
66             strcat(rec_buf, "</title><Control-Identifier>");
67             j = rand() & 31;
68             sprintf(rec_buf + strlen(rec_buf), "%d", j);
69             strcat(rec_buf, "</Control-Identifier></gils>");
70             zebra_add_record (zh, rec_buf, strlen(rec_buf));
71         }
72         YAZ_CHECK(zebra_end_trans(zh) == ZEBRA_OK);
73         zebra_close(zh);
74     }
75     zh = zebra_open(zs, 0);
76     YAZ_CHECK(zh);
77
78     YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
79
80     zebra_set_resource(zh, "trunclimit", "2");
81
82     /* check massive truncation: bug #281 */
83     YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 2=1 z", -1));
84
85     YAZ_CHECK(tl_close_down(zh, zs));
86 }
87
88 TL_MAIN
89 /*
90  * Local variables:
91  * c-basic-offset: 4
92  * indent-tabs-mode: nil
93  * End:
94  * vim: shiftwidth=4 tabstop=8 expandtab
95  */
96