Added parameter for zebra_open.
[idzebra-moved-to-github.git] / test / api / t12.c
1 /* $Id: t12.c,v 1.2 2005-09-13 11:51:07 adam Exp $
2    Copyright (C) 1995-2005
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
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
10 version.
11
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
15 for more details.
16
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
20 02111-1307, USA.
21 */
22
23 /** Create many databases */
24
25 #include "testlib.h"
26
27 int main(int argc, char **argv)
28 {
29     int i;
30     int no_db = 140;
31     ZebraService zs = start_up(0, argc, argv);
32     ZebraHandle zh = zebra_open(zs, 0);
33
34     zebra_select_database(zh, "Default");
35     zebra_init(zh);
36     zebra_close(zh);
37
38     zh = zebra_open(zs, 0);
39     
40     zebra_begin_trans (zh, 1);
41     for (i = 0; i<no_db; i++)
42     {
43         char dbstr[20];
44         char rec_buf[100];
45
46         sprintf(dbstr, "%d", i);
47         zebra_select_database(zh, dbstr);
48     
49         sprintf(rec_buf, "<gils><title>title %d</title></gils>\n", i);
50         zebra_add_record (zh, rec_buf, strlen(rec_buf));
51
52     }
53     zebra_end_trans(zh);
54     zebra_close(zh);
55     zh = zebra_open(zs, 0);
56     for (i = 0; i<=no_db; i++)
57     {
58         char dbstr[20];
59         char querystr[50];
60         sprintf(dbstr, "%d", i);
61         zebra_select_database(zh, dbstr);
62
63         sprintf(querystr, "@attr 1=4 %d", i);
64         if (i == no_db)
65             do_query_x(__LINE__, zh, querystr, 0, 109);
66         else
67             do_query(__LINE__, zh, querystr, 1);
68     }
69
70     return close_down(zh, zs, 0);
71 }