cd9e0e65b145136f9b605af5aea82e43928187b0
[idzebra-moved-to-github.git] / test / api / t5.c
1 /* $Id: t5.c,v 1.4 2004-07-28 08:15:47 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 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 <zebraapi.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, hits = -1;
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
68     nmem_init ();
69     
70     zs = start_service();
71     zh = zebra_open (zs);
72     zebra_select_database(zh, "Default");
73     zebra_init(zh);
74
75     zebra_begin_trans (zh, 1);
76     for (i = 0; myrec[i]; i++)
77         zebra_add_record (zh, myrec[i], strlen(myrec[i]));
78     zebra_end_trans (zh);
79
80     expect(zh, "@attr 1=4 my", 3, &exit_code);
81     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
82     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
83     expect(zh, "@attr 1=4 {x my}", 0, &exit_code);
84     expect(zh, "@attr 1=4 {my x title}", 1, &exit_code);
85     expect(zh, "@attr 1=4 {my title}", 2, &exit_code);
86     expect(zh, "@attr 1=4 @and x title", 2, &exit_code);
87
88     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
89     expect(zh, "@prox 0 2 1 2 k 2 my x", 2, &exit_code);
90
91     /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */
92     expect(zh, "@prox 0 2 1 2 k 2 x my", 0, &exit_code);
93
94     /* exl=0 distance=2 order=0 relation=2 (<=), known, unit=word */
95     expect(zh, "@prox 0 2 0 2 k 2 x my", 2, &exit_code);
96
97     /* exl=0 distance=2 order=0 relation=3 (=), known, unit=word */
98     expect(zh, "@prox 0 2 1 3 k 2 my x", 1, &exit_code);
99
100     /* exl=1 distance=2 order=0 relation=3 (=), known, unit=word */
101     expect(zh, "@prox 1 2 1 3 k 2 my x", 1, &exit_code);
102
103     zebra_close (zh);
104     zebra_stop (zs);
105
106     nmem_exit ();
107     xmalloc_trav ("x");
108     exit (exit_code);
109 }