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