0c811a626f1bd38550a66cb8c6cbef401b6fcfc3
[idzebra-moved-to-github.git] / test / api / t8.c
1 /* $Id: t8.c,v 1.10 2006-05-10 08:13:35 adam Exp $
2    Copyright (C) 1995-2005
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 /** t8: test numeric attributes */
24
25 #include "testlib.h"
26
27 const char *recs[] = {
28         "<gils>\n"
29         "  <title>My title</title>\n"
30         "  <abstract>test record with single coordset, negatives</abstract>\n"
31         "  <Spatial-Domain><Bounding-Coordinates>\n"
32         "    <West-Bounding-Coordinate> -120 </West-Bounding-Coordinate>\n"
33         "    <East-Bounding-Coordinate> -102 </East-Bounding-Coordinate>\n"
34         "    <North-Bounding-Coordinate>  49 </North-Bounding-Coordinate>\n"
35         "    <South-Bounding-Coordinate>  31 </South-Bounding-Coordinate>\n"
36         "  </Bounding-Coordinates></Spatial-Domain>"
37         "</gils>\n",
38
39         "<gils>\n"
40         "  <title>Another title</title>\n"
41         "  <abstract>second test with two coord sets</abstract>\n"
42         "  <Spatial-Domain><Bounding-Coordinates>\n"
43         "    <West-Bounding-Coordinate> -120 </West-Bounding-Coordinate>\n"
44         "    <East-Bounding-Coordinate> -102 </East-Bounding-Coordinate>\n"
45         "    <North-Bounding-Coordinate>  49 </North-Bounding-Coordinate>\n"
46         "    <South-Bounding-Coordinate>  31 </South-Bounding-Coordinate>\n"
47         "  </Bounding-Coordinates>"
48         "  <Bounding-Coordinates>\n"
49         "    <West-Bounding-Coordinate> -125 </West-Bounding-Coordinate>\n"
50         "    <East-Bounding-Coordinate> -108 </East-Bounding-Coordinate>\n"
51         "    <North-Bounding-Coordinate>  41 </North-Bounding-Coordinate>\n"
52         "    <South-Bounding-Coordinate>  25 </South-Bounding-Coordinate>\n"
53         "  </Bounding-Coordinates></Spatial-Domain>"
54         "</gils>\n",
55         0};
56         
57
58 static void tst(int argc, char **argv)
59 {
60     ZebraService zs = tl_start_up("zebra8.cfg", argc, argv);
61     ZebraHandle zh = zebra_open (zs, 0);
62
63     YAZ_CHECK(tl_init_data(zh, recs));
64
65     /* couple of simple queries just to see that we have indexed the stuff */
66     YAZ_CHECK(tl_query(zh,  "@attr 1=4 title", 2));
67     YAZ_CHECK(tl_query(zh,  "title", 2));
68     
69     /* 1=2038: West-Bounding-Coordinate 2039: East: 2040: North: 2041 South*/
70     /* 4=109: numeric string */
71     /* 2=3: equal  2=1: less, 2=4: greater or equal 2=5 greater */
72
73     /* N>25, search attributes work */
74     YAZ_CHECK(tl_query(zh,  "@attr 2=4 @attr gils 1=2040 @attr 4=109 25", 2));
75
76     /* N=41, get rec1 only */
77     YAZ_CHECK(tl_query(zh,  "@attr 2=3 @attr gils 1=2040 @attr 4=109 41", 1));
78
79     /* N=49, get both records */
80     YAZ_CHECK(tl_query(zh,  "@attr 2=3 @attr gils 1=2040 @attr 4=109 49", 2));
81
82     /* W=-120 get both records */
83     YAZ_CHECK(tl_query(zh,  "@attr 2=3 @attr gils 1=2038 @attr 4=109 -120", 2));
84
85     /* W<-122 get only rec1 */
86     YAZ_CHECK(tl_query(zh,  "@attr 2=1 @attr gils 1=2038 @attr 4=109 '-120' ", 1));
87
88     /* N=41 and N=49 get only rec2 */
89     YAZ_CHECK(tl_query(zh, "@attr 2=3 @attr gils 1=2040 @attr 4=109 \"41 49\" ", 1));
90
91     YAZ_CHECK(tl_close_down(zh, zs));
92 }
93
94 TL_MAIN
95 /*
96  * Local variables:
97  * c-basic-offset: 4
98  * indent-tabs-mode: nil
99  * End:
100  * vim: shiftwidth=4 tabstop=8 expandtab
101  */
102