1 /* $Id: t6.c,v 1.13 2006-05-10 08:13:35 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 /** t6.c Insert a number of randomly generated words */
27 static void tst(int argc, char **argv)
30 ZebraService zs = tl_start_up("zebra6.cfg", argc, argv);
31 ZebraHandle zh = zebra_open(zs, 0);
35 YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
39 for (i = 0; i<10; i++)
43 zh = zebra_open (zs, 0);
46 YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
48 YAZ_CHECK(zebra_begin_trans (zh, 1) == ZEBRA_OK);
50 for (l = 0; l<100; l++)
55 strcat(rec_buf, "<gils><title>");
58 sprintf(rec_buf + strlen(rec_buf), "aaa");
62 j = (rand() & 15) + 1;
65 int c = 65 + (rand() & 15);
66 sprintf(rec_buf + strlen(rec_buf), "%c", c);
69 strcat(rec_buf, "</title><Control-Identifier>");
71 sprintf(rec_buf + strlen(rec_buf), "%d", j);
72 strcat(rec_buf, "</Control-Identifier></gils>");
73 zebra_add_record (zh, rec_buf, strlen(rec_buf));
75 YAZ_CHECK(zebra_end_trans(zh) == ZEBRA_OK);
78 zh = zebra_open(zs, 0);
81 YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
83 zebra_set_resource(zh, "trunclimit", "2");
85 /* check massive truncation: bug #281 */
86 YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 2=1 z", -1));
88 YAZ_CHECK(tl_close_down(zh, zs));
95 * indent-tabs-mode: nil
97 * vim: shiftwidth=4 tabstop=8 expandtab