New test
[idzebra-moved-to-github.git] / test / api / t5.c
1 /* $Id: t5.c,v 1.1 2004-06-14 21:43:44 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 static void expect(ZebraHandle zh, const char *pqf, int hits_expect,
28                    int *exit_code)
29 {
30     int hits;
31     if (zebra_search_PQF (zh, pqf, "set1", &hits) != 0)
32     {
33         yaz_log(LOG_FATAL, "Search %s: failed", pqf);
34         *exit_code = 1;
35     }
36     else if (hits != hits_expect)
37     {
38         yaz_log(LOG_FATAL, "Search %s: Expected %d, got %d", pqf,
39                 hits_expect, hits);
40         *exit_code = 2;
41     }
42 }
43
44 int main(int argc, char **argv)
45 {
46     int i, hits = -1;
47     int exit_code = 0;
48     ZebraService zs;
49     ZebraHandle zh;
50     const char *myrec[] = {
51         "<gils>\n<title>My title</title>\n</gils>\n",
52         "<gils>\n<title>My x title</title>\n</gils>\n",
53         "<gils>\n<title>My title x</title>\n</gils>\n" ,
54         0}
55     ;
56
57     yaz_log_init_file("t5.log");
58
59     nmem_init ();
60     
61     zs = zebra_start("zebra.cfg", 0, 0);
62     zh = zebra_open (zs);
63     zebra_select_database(zh, "Default");
64     zebra_init(zh);
65
66     zebra_begin_trans (zh, 1);
67     for (i = 0; myrec[i]; i++)
68         zebra_add_record (zh, myrec[i], strlen(myrec[i]));
69     zebra_end_trans (zh);
70
71     expect(zh, "@attr 1=4 my", 3, &exit_code);
72     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
73     expect(zh, "@attr 1=4 {my x}", 1, &exit_code);
74     expect(zh, "@attr 1=4 {x my}", 0, &exit_code);
75     expect(zh, "@attr 1=4 {my x title}", 1, &exit_code);
76     expect(zh, "@attr 1=4 {my title}", 2, &exit_code);
77     expect(zh, "@attr 1=4 @and x title", 2, &exit_code);
78
79     zebra_close (zh);
80     zebra_stop (zs);
81
82     nmem_exit ();
83     xmalloc_trav ("x");
84     exit (exit_code);
85 }