Cleaned the test programs a bit, used routines in testlib
[idzebra-moved-to-github.git] / test / api / t5.c
1 /* $Id: t5.c,v 1.8 2004-10-28 15:24:36 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23 #include <yaz/log.h>
24 #include <yaz/pquery.h>
25 #include <idzebra/api.h>
26
27 #include "testlib.h"
28
29         
30
31 int main(int argc, char **argv)
32 {
33     ZebraService zs;
34     ZebraHandle zh;
35     const char *myrec[] = {
36         "<gils>\n<title>My title</title>\n</gils>\n",
37         "<gils>\n<title>My x title</title>\n</gils>\n",
38         "<gils>\n<title>My title x</title>\n</gils>\n" ,
39         0}
40     ;
41
42     yaz_log_init_file("t5.log");
43     yaz_log_init_level(LOG_ALL);
44
45     nmem_init ();
46     
47     zs = start_service(0);
48     zh = zebra_open (zs);
49     init_data(zh,myrec);
50
51     Query(__LINE__,zh, "@attr 1=4 my", 3);
52     Query(__LINE__,zh, "@attr 1=4 {my x}", 1);
53     Query(__LINE__,zh, "@attr 1=4 {my x}", 1);
54     Query(__LINE__,zh, "@attr 1=4 {x my}", 0);
55     Query(__LINE__,zh, "@attr 1=4 {my x title}", 1);
56     Query(__LINE__,zh, "@attr 1=4 {my title}", 2);
57     Query(__LINE__,zh, "@attr 1=4 @and x title", 2);
58
59     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
60     Query(__LINE__,zh, "@prox 0 2 1 2 k 2 my x", 2);
61
62     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
63     Query(__LINE__,zh, "@prox 0 2 1 2 k 2 x my", 0);
64
65     /* exl=0 distance=2 order=0 relation=2 (<=), known, unit=word */
66     Query(__LINE__,zh, "@prox 0 2 0 2 k 2 x my", 2);
67
68     /* exl=0 distance=2 order=0 relation=3 (=), known, unit=word */
69     Query(__LINE__,zh, "@prox 0 2 1 3 k 2 my x", 1);
70
71     /* exl=1 distance=2 order=0 relation=3 (=), known, unit=word */
72     Query(__LINE__,zh, "@prox 1 2 1 3 k 2 my x", 1);
73
74     zebra_close (zh);
75     zebra_stop (zs);
76
77     nmem_exit ();
78     xmalloc_trav ("x");
79     logf(LOG_LOG,"======== All tests OK");
80     exit (0);
81 }