Using zint for testlib hits. Extended sort test to test for bug #316.
[idzebra-moved-to-github.git] / test / sort / sort1.c
1 /* $Id: sort1.c,v 1.4 2005-05-04 10:50:09 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 #include <assert.h>
24 #include "../api/testlib.h"
25
26 static void sort(ZebraHandle zh, const char *query, zint hits, zint *exp)
27 {
28     ZebraMetaRecord *recs;
29     zint i;
30     int errs = 0;
31
32     assert(query);
33     do_query(__LINE__, zh, query, hits);
34
35     recs = zebra_meta_records_create_range (zh, "rsetname", 1, 4);
36     if (!recs)
37     {
38         fprintf(stderr, "recs==0\n");
39         exit(1);
40     }
41     for (i = 0; i<hits; i++)
42         if (recs[i].sysno != exp[i])
43             errs++;
44     if (errs)
45     {
46         printf("Sequence not in right order for query\n%s\ngot exp\n",
47                query);
48         for (i = 0; i<hits; i++)
49             printf(" " ZINT_FORMAT "   " ZINT_FORMAT "\n",
50                    recs[i].sysno, exp[i]);
51     }
52     zebra_meta_records_destroy (zh, recs, 4);
53
54     if (errs)
55         exit(1);
56 }
57
58 int main(int argc, char **argv)
59 {
60     ZebraService zs = start_up(0, argc, argv);
61     ZebraHandle  zh = zebra_open(zs);
62     zint ids[5];
63     char path[256];
64     int i;
65
66     zebra_select_database(zh, "Default");
67
68     zebra_init(zh);
69
70     zebra_begin_trans(zh, 1);
71     for (i = 1; i <= 4; i++)
72     {
73         sprintf(path, "%.200s/rec%d.xml", get_srcdir(), i);
74         zebra_repository_update(zh, path);
75     }
76     zebra_end_trans(zh);
77     zebra_commit(zh);
78
79     ids[0] = 3;
80     ids[1] = 2;
81     ids[2] = 4;
82     ids[3] = 5;
83     sort(zh, "@or computer @attr 7=1 @attr 1=30 0", 4, ids);
84
85     ids[0] = 5;
86     ids[1] = 4;
87     ids[2] = 2;
88     ids[3] = 3;
89     sort(zh, "@or computer @attr 7=1 @attr 1=1021 0", 4, ids);
90
91     ids[0] = 2;
92     ids[1] = 5;
93     ids[2] = 4;
94     ids[3] = 3;
95     sort(zh, "@or computer @attr 7=1 @attr 1=1021 @attr 4=109 0", 4, ids);
96
97     return close_down(zh, zs, 0);
98 }