eb08adf0e5d52bca6e2b2bab369537ec2598076a
[idzebra-moved-to-github.git] / test / api / test_sort2.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 2004-2013 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 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include "testlib.h"
24
25 const char *myrec[] = {
26     "<sort2>\n"
27     "  <title>first computer</title>\n"
28     "</sort2>\n"
29     ,
30     "<sort2>\n"
31     "  <title>second computer</title>\n"
32     "</sort2>\n"
33     ,
34     "<sort2>\n"
35     "  <title>A third computer</title>\n"
36     "</sort2>\n"
37     ,
38     "<sort2>\n"
39     "  <title>the fourth computer</title>\n"
40     "</sort2>\n"
41     ,
42     0 };
43
44 static void tst(int argc, char **argv)
45 {
46     ZebraService zs = tl_start_up("test_sort2.cfg", argc, argv);
47     ZebraHandle  zh = zebra_open(zs, 0);
48     zint ids[5];
49
50     YAZ_CHECK(tl_init_data(zh, myrec));
51
52     ids[0] = 2;
53     ids[1] = 5;
54     ids[2] = 3;
55     ids[3] = 4;
56     YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=4 0", 4, ids));
57
58     YAZ_CHECK(tl_close_down(zh, zs));
59 }
60
61 TL_MAIN
62 /*
63  * Local variables:
64  * c-basic-offset: 4
65  * c-file-style: "Stroustrup"
66  * indent-tabs-mode: nil
67  * End:
68  * vim: shiftwidth=4 tabstop=8 expandtab
69  */
70