Cleaned the test programs a bit, used routines in testlib
[idzebra-moved-to-github.git] / test / api / t7.c
1 /* $Id: t7.c,v 1.3 2004-10-28 15:24:36 heikki Exp $
2    Copyright (C) 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 <yaz/sortspec.h>
26 #include <idzebra/api.h>
27
28 #include "testlib.h"
29
30         
31 int main(int argc, char **argv)
32 {
33     ZebraService zs;
34     ZebraHandle zh;
35     const char *recs[] = {
36         "<gils>\n"
37         "  <title>My title</title>\n"
38         "</gils>\n",
39         0};
40     const char *setname1="set1";
41     const char *setname2="set2";
42     const char *setname3="set3";
43     int status;
44     int rc;
45     ODR odr_input = odr_createmem (ODR_DECODE);    
46     ODR odr_output = odr_createmem (ODR_ENCODE);    
47     YAZ_PQF_Parser parser = yaz_pqf_create();
48     Z_RPNQuery *query = yaz_pqf_parse(parser, odr_input, 
49                                       "@attr 1=4 my");
50     Z_SortKeySpecList *spec = 
51           yaz_sort_spec (odr_output, "@attr 1=4 id");
52     int hits;
53
54     yaz_log_init_file("t7.log");
55
56     nmem_init ();
57     
58     zs = start_service(""); /* default to zebra.cfg */
59     zh = zebra_open (zs);
60
61     init_data(zh,recs);
62
63
64     zebra_begin_trans (zh, 0);
65         
66     zebra_search_RPN (zh, odr_input, query, setname1, &hits);
67
68     rc=zebra_sort(zh, odr_output, 1, &setname1, setname2, spec, &status);
69     if (rc) 
70     { 
71         printf("sort A returned %d %d \n",rc,status); 
72         exit(1);
73     }
74     
75     rc=zebra_sort(zh, odr_output, 1, &setname2, setname3, spec, &status);
76     if (rc) 
77     { 
78         printf("sort B returned %d %d \n",rc,status); 
79         exit(1);
80     }
81
82     zebra_end_trans (zh);
83     yaz_pqf_destroy(parser);
84
85     /*
86      zebra_deleleResultSet(zh, Z_DeleteRequest_list,
87                           1, &setnamep, &status);
88     */  
89     odr_destroy (odr_input);
90     odr_destroy (odr_output);
91
92     zebra_commit (zh);
93     zebra_close (zh);
94     zebra_stop (zs);
95
96     nmem_exit ();
97     xmalloc_trav ("x");
98     logf(LOG_LOG,"========= all tests OK");
99     exit (0);
100 }