e5bcb005ff6c363694bc92b2d9b141a0a0701805
[idzebra-moved-to-github.git] / test / xpath / xpath5.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 "../api/testlib.h"
21
22 /** xpath5.c - Ranking in xpath */
23
24 const char *recs[] = {
25         "<record>\n"
26         "  <title>The first title</title>\n"
27         "  <abstract> \n"
28         "    The first common word is the: the the the \n"
29         "    The second common word is word \n"
30         "    but all have the foo bar \n"
31         "  </abstract>\n"
32         "</record>\n",
33
34         "<record>\n"
35         "  <title>The second title</title>\n"
36         "  <abstract> \n"
37         "    The first common word is the: the \n"
38         "    The second common word is foo: foo foo \n"
39         "    but all have the foo bar \n"
40         "  </abstract>\n"
41         "</record>\n",
42
43         "<record>\n"
44         "  <title>The third title</title>\n"
45         "  <abstract> \n"
46         "    The first common word is the: the \n"
47         "    The third common word is bar: bar \n"
48         "    but all have the foo bar \n"
49         "  </abstract>\n"
50         "</record>\n",
51     
52         0 };
53
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=/record/title @attr 2=102 the",
63             3,"first title", 952));
64     YAZ_CHECK(tl_ranking_query(zh, "@attr 1=/ @attr 2=102 @or third foo",
65             3,"third title", 802));
66
67     YAZ_CHECK(tl_ranking_query(zh, "@attr 1=/ @attr 2=102 foo",
68             3,"second title", 850));
69
70     YAZ_CHECK(tl_ranking_query(zh, "@attr 1=/record/ @attr 2=102 foo",
71             3,"second title", 927));
72
73     YAZ_CHECK(tl_close_down(zh, zs));
74 }
75
76 TL_MAIN
77 /*
78  * Local variables:
79  * c-basic-offset: 4
80  * indent-tabs-mode: nil
81  * End:
82  * vim: shiftwidth=4 tabstop=8 expandtab
83  */
84