5ad4930b8696e5678281921f4e881f6816b02686
[idzebra-moved-to-github.git] / test / api / test_sort3.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1995-2008 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 /** \file 
21     \brief test sortindex
22  */
23
24 #include <yaz/test.h>
25 #include "testlib.h"
26
27 const char *myrec[] = {
28         "<gils>\n<title>My title</title>\n</gils>\n",
29         "<gils>\n<title>My x title</title>\n</gils>\n",
30         "<gils>\n<title>My title x</title>\n</gils>\n" ,
31         0} ;
32         
33 static void tst(int argc, char **argv)
34 {
35     zint ids[5];
36
37     ZebraService zs = tl_start_up("test_sort3.cfg", argc, argv);
38     ZebraHandle  zh = zebra_open(zs, 0);
39     
40     YAZ_CHECK(tl_init_data(zh, myrec));
41
42     ids[0] = 2;
43     ids[1] = 4;
44     ids[2] = 3;
45     YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 title @attr 7=1 @attr 1=4 0", 3, ids));
46
47     YAZ_CHECK(tl_close_down(zh, zs));
48 }
49
50 TL_MAIN
51
52 /*
53  * Local variables:
54  * c-basic-offset: 4
55  * indent-tabs-mode: nil
56  * End:
57  * vim: shiftwidth=4 tabstop=8 expandtab
58  */
59