1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2010 Index Data
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
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
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
22 const char *recs[] = {
24 " <title>The first title</title>\n"
26 " The first common word is the: the the the \n"
27 " The second common word is word \n"
28 " but all have the foo bar \n"
33 " <title>The second title</title>\n"
35 " The first common word is the: the \n"
36 " The second common word is foo: foo foo \n"
37 " but all have the foo bar \n"
42 " <title>The third title</title>\n"
44 " The first common word is the: the \n"
45 " The third common word is bar: bar \n"
46 " but all have the foo bar \n"
52 static void tst(int argc, char **argv)
54 ZebraService zs = tl_start_up(0, argc, argv);
55 ZebraHandle zh = zebra_open(zs, 0);
57 YAZ_CHECK(tl_init_data(zh, recs));
59 YAZ_CHECK(tl_ranking_query(zh, "@attr 1=4 @attr 2=102 the",
60 3, "first title", 936 ));
62 YAZ_CHECK(tl_ranking_query(zh, "@attr 1=62 @attr 2=102 foo",
63 3, "second title", 850 ));
65 YAZ_CHECK(tl_close_down(zh, zs));
72 * c-file-style: "Stroustrup"
73 * indent-tabs-mode: nil
75 * vim: shiftwidth=4 tabstop=8 expandtab