2007.
[idzebra-moved-to-github.git] / test / api / t11.c
1 /* $Id: t11.c,v 1.9 2007-01-15 15:10:20 adam Exp $
2    Copyright (C) 1995-2007
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 this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 /** testing of scan */
24 #include "testlib.h"
25
26 const char *myrec[] = {
27         "<gils>\n<title>a b</title>\n</gils>\n",
28         "<gils>\n<title>c d</title>\n</gils>\n",
29         "<gils>\n<title>e f</title>\n</gils>\n" ,
30         0} ;
31         
32 static void tst(int argc, char **argv)
33 {
34     ZebraService zs = tl_start_up(0, argc, argv);
35     ZebraHandle zh = zebra_open(zs, 0);
36
37     YAZ_CHECK(zh);
38
39     YAZ_CHECK(tl_init_data(zh, myrec));
40
41     /*
42       int tl_scan
43       (
44       ZebraHandle zh, const char *query,
45       int pos, int num,
46       int exp_pos, int exp_num, int exp_partial,
47       const char **exp_entries
48       )
49     */
50
51     if (1)
52     {
53         /* bad string use attrite, bug #647 */
54         YAZ_CHECK(tl_scan(zh, "@attr 1=bad 0", 1, 1, 1, 1, 0, 0));
55     }
56     if (1)
57     {
58         /* bad numeric use attributes, bug #647 */
59         YAZ_CHECK(tl_scan(zh, "@attr 1=1234 0", 1, 1, 1, 1, 0, 0));
60     }
61     if (1)
62     {
63         /* scan before. nothing must be returned */
64         const char *ent[] = { "a", 0 };
65         YAZ_CHECK(tl_scan(zh, "@attr 1=4 0", 1, 1, 1, 1, 0, ent));
66     }
67     if (1)
68     {
69         /* scan after. nothing must be returned */
70         const char *ent[] = { 0 };
71         YAZ_CHECK(tl_scan(zh, "@attr 1=4 m", 1, 1, 1, 0, 1, ent));
72     }
73     if (1)
74     {
75         const char *ent[] = { "a", 0 };
76         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", 1, 1, 1, 1, 0, ent));
77     }
78     if (1)
79     {
80         const char *ent[] = { "b", "c", 0 };
81         YAZ_CHECK(tl_scan(zh, "@attr 1=4 aa", 1, 2, 1, 2, 0, ent));
82     }
83     if (1)
84     {
85         const char *ent[] = { "b", "c", 0 };
86         YAZ_CHECK(tl_scan(zh, "@attr 1=4 aa", 1, 2, 1, 2, 0, ent));
87     }
88     if (1)
89     {
90         const char *ent[] = { "e", "f", 0 };
91         YAZ_CHECK(tl_scan(zh, "@attr 1=4 e", 1, 3, 1, 2, 1, ent));
92     }
93     if (1)
94     {
95         const char *ent[] = { "c", "d", 0 };
96         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -1, 2, -1, 2, 0, ent));
97     }
98     if (1)
99     {
100         const char *ent[] = { "d", 0 };
101         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -2, 1, -2, 1, 0, ent));
102     }
103     if (1)
104     {
105         const char *ent[] = { "f", 0 };
106         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -4, 1, -4, 1, 0, ent));
107     }
108     if (1)
109     {
110         const char *ent[] = { "f", 0 };
111         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -5, 1, -5, 0, 1, ent));
112     }
113     if (1)
114     {
115         const char *ent[] = { "d", "e", "f", 0 };
116         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -2, 3, -2, 3, 0, ent));
117     }
118     if (1)
119     {
120         const char *ent[] = { "d", "e", "f", 0 };
121         YAZ_CHECK(tl_scan(zh, "@attr 1=4 a", -2, 4, -2, 3, 1, ent));
122     }
123     if (1)
124     {
125         const char *ent[] = { "a", "b", "c", "d", "e", "f", 0 };
126         YAZ_CHECK(tl_scan(zh, "@attr 1=4 0", 2, 100, 1, 6, 1, ent));
127     }
128     if (1)
129     {
130         const char *ent[] = { "b", "c", "d", "e", "f", 0 };
131         YAZ_CHECK(tl_scan(zh, "@attr 1=4 0", 0, 100, 0, 5, 1, ent));
132     }
133     if (1)
134     {
135         const char *ent[] = { "a", "b", "c", "d", "e", "f", 0 };
136         YAZ_CHECK(tl_scan(zh, "@attr 1=4 0", 10, 100, 1, 6, 1, ent));
137     }
138     if (1)
139     {
140         const char *ent[] = { "a", "b", "c", "d", "e", "f", 0 };
141         YAZ_CHECK(tl_scan(zh, "@attr 1=4 0", 22, 10, 1, 0, 1, ent));
142     }
143     if (1)
144     {
145         const char *ent[] = { 0 };
146         YAZ_CHECK(tl_scan(zh, "@attr 1=4 z", -22, 10, -22, 0, 1, ent));
147     }
148     YAZ_CHECK(tl_close_down(zh, zs));
149 }
150
151 TL_MAIN
152
153 /*
154  * Local variables:
155  * c-basic-offset: 4
156  * indent-tabs-mode: nil
157  * End:
158  * vim: shiftwidth=4 tabstop=8 expandtab
159  */
160