Bump year. Change Aps->ApS
[idzebra-moved-to-github.git] / test / api / t8.c
1 /* $Id: t8.c,v 1.7 2005-01-15 19:38: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
59
60 int main(int argc, char **argv)
61 {
62     ZebraService zs = start_up("zebra8.cfg", argc, argv);
63     ZebraHandle zh = zebra_open (zs);
64
65     init_data(zh, recs);
66
67 #define Q(q,n) do_query(__LINE__,zh,q,n)
68     /* couple of simple queries just to see that we have indexed the stuff */
69     Q( "@attr 1=4 title",2 );
70     Q( "title",2 );
71     
72     /* 1=2038: West-Bounding-Coordinate 2039: East: 2040: North: 2041 South*/
73     /* 4=109: numeric string */
74     /* 2=3: equal  2=1: less, 2=4: greater or equal 2=5 greater */
75
76     /* N>25, search attributes work */
77     Q( "@attr 2=4 @attr gils 1=2040 @attr 4=109 25",2);
78
79     /* N=41, get rec1 only */
80     Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 41",1);
81
82     /* N=49, get both records */
83     Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 49",2);
84
85     /* W=-120 get both records */
86     Q( "@attr 2=3 @attr gils 1=2038 @attr 4=109 -120",2);
87
88     /* W<-122 get only rec1 */
89     Q( "@attr 2=1 @attr gils 1=2038 @attr 4=109 '-120' ",1);
90
91     /* N=41 and N=49 get only rec2 */
92     Q( "@attr 2=3 @attr gils 1=2040 @attr 4=109 \"41 49\" ",1);
93
94     return close_down(zh, zs, 0);
95 }