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