Creating search terms, and passing them around in searches. Not yet actually
[idzebra-moved-to-github.git] / test / api / t5.c
1 /* $Id: t5.c,v 1.7 2004-10-20 14:32:29 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 /* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
28 static ZebraService start_service()
29 {
30     char cfg[256];
31     char *srcdir = getenv("srcdir");
32     sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
33     return zebra_start(cfg);
34 }
35         
36 static void expect(ZebraHandle zh, const char *pqf, int hits_expect,
37                    int *exit_code)
38 {
39     int hits;
40     if (zebra_search_PQF (zh, pqf, "set1", &hits) != 0)
41     {
42         yaz_log(LOG_FATAL, "Search %s: failed", pqf);
43         *exit_code = 1;
44     }
45     else if (hits != hits_expect)
46     {
47         yaz_log(LOG_FATAL, "Search %s: Expected %d, got %d", pqf,
48                 hits_expect, hits);
49         *exit_code = 2;
50     }
51 }
52
53 int main(int argc, char **argv)
54 {
55     int i;
56     int exit_code = 0;
57     ZebraService zs;
58     ZebraHandle zh;
59     const char *myrec[] = {
60         "<gils>\n<title>My title</title>\n</gils>\n",
61         "<gils>\n<title>My x title</title>\n</gils>\n",
62         "<gils>\n<title>My title x</title>\n</gils>\n" ,
63         0}
64     ;
65
66     yaz_log_init_file("t5.log");
67     yaz_log_init_level(LOG_ALL);
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 }