Version 1.3.50.
[idzebra-moved-to-github.git] / test / api / t5.c
1 /* $Id: t5.c,v 1.4.2.3 2006-12-05 21:14:46 adam 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 this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 #include <stdlib.h>
24 #include <yaz/log.h>
25 #include <yaz/pquery.h>
26 #include <zebraapi.h>
27
28 /* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
29 static ZebraService start_service()
30 {
31     char cfg[256];
32     char *srcdir = getenv("srcdir");
33     sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
34     return zebra_start(cfg);
35 }
36         
37 static void expect(ZebraHandle zh, const char *pqf, int hits_expect,
38                    int *exit_code)
39 {
40     int hits;
41     if (zebra_search_PQF (zh, pqf, "set1", &hits) != 0)
42     {
43         yaz_log(YLOG_FATAL, "Search %s: failed", pqf);
44         *exit_code = 1;
45     }
46     else if (hits != hits_expect)
47     {
48         yaz_log(YLOG_FATAL, "Search %s: Expected %d, got %d", pqf,
49                 hits_expect, hits);
50         *exit_code = 2;
51     }
52 }
53
54 int main(int argc, char **argv)
55 {
56     int i;
57     int exit_code = 0;
58     ZebraService zs;
59     ZebraHandle zh;
60     const char *myrec[] = {
61         "<gils>\n<title>My title</title>\n</gils>\n",
62         "<gils>\n<title>My x title</title>\n</gils>\n",
63         "<gils>\n<title>My title x</title>\n</gils>\n" ,
64         0}
65     ;
66
67     yaz_log_init_file("t5.log");
68
69     nmem_init ();
70     
71     zs = start_service();
72     zh = zebra_open (zs);
73     zebra_select_database(zh, "Default");
74     zebra_init(zh);
75
76     zebra_begin_trans (zh, 1);
77     for (i = 0; myrec[i]; i++)
78         zebra_add_record (zh, myrec[i], strlen(myrec[i]));
79     zebra_end_trans (zh);
80
81     expect(zh, "@attr 1=4 my", 3, &exit_code);
82     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
83     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
84     expect(zh, "@attr 1=4 {x my}", 0, &exit_code);
85     expect(zh, "@attr 1=4 {my x title}", 1, &exit_code);
86     expect(zh, "@attr 1=4 {my title}", 2, &exit_code);
87     expect(zh, "@attr 1=4 @and x title", 2, &exit_code);
88
89     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
90     expect(zh, "@prox 0 2 1 2 k 2 my x", 2, &exit_code);
91
92     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
93     expect(zh, "@prox 0 2 1 2 k 2 x my", 0, &exit_code);
94
95     /* exl=0 distance=2 order=0 relation=2 (<=), known, unit=word */
96     expect(zh, "@prox 0 2 0 2 k 2 x my", 2, &exit_code);
97
98     /* exl=0 distance=2 order=0 relation=3 (=), known, unit=word */
99     expect(zh, "@prox 0 2 1 3 k 2 my x", 1, &exit_code);
100
101     /* exl=1 distance=2 order=0 relation=3 (=), known, unit=word */
102     expect(zh, "@prox 1 2 1 3 k 2 my x", 1, &exit_code);
103
104     zebra_close (zh);
105     zebra_stop (zs);
106
107     nmem_exit ();
108     xmalloc_trav ("x");
109     exit (exit_code);
110 }