25bc038e18716de90dcb4be2b33a36b49b378362
[idzebra-moved-to-github.git] / test / api / test_rank.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 *recs[] = {
26         "<gils>\n"
27         "  <title>The first title</title>\n"
28         "  <abstract> \n"
29         "    The first common word is the: the the the \n"
30         "    The second common word is word \n"
31         "    but all have the foo bar \n"
32         "  </abstract>\n"
33         "</gils>\n",
34
35         "<gils>\n"
36         "  <title>The second title</title>\n"
37         "  <abstract> \n"
38         "    The first common word is the: the \n"
39         "    The second common word is foo: foo foo \n"
40         "    but all have the foo bar \n"
41         "  </abstract>\n"
42         "</gils>\n",
43
44         "<gils>\n"
45         "  <title>The third title</title>\n"
46         "  <abstract> \n"
47         "    The first common word is the: the \n"
48         "    The third common word is bar: bar \n"
49         "    but all have the foo bar \n"
50         "  </abstract>\n"
51         "</gils>\n",
52
53         0 };
54
55 static void tst(int argc, char **argv)
56 {
57     ZebraService zs = tl_start_up(0, argc, argv);
58     ZebraHandle zh = zebra_open(zs, 0);
59
60     YAZ_CHECK(tl_init_data(zh, recs));
61
62     YAZ_CHECK(tl_ranking_query(zh, "@attr 1=4 @attr 2=102 the",
63                                3, "first title", 936 ));
64
65     YAZ_CHECK(tl_ranking_query(zh, "@attr 1=62 @attr 2=102 foo",
66                                3, "second title", 850 ));
67
68     YAZ_CHECK(tl_close_down(zh, zs));
69 }
70
71 TL_MAIN
72 /*
73  * Local variables:
74  * c-basic-offset: 4
75  * c-file-style: "Stroustrup"
76  * indent-tabs-mode: nil
77  * End:
78  * vim: shiftwidth=4 tabstop=8 expandtab
79  */
80