1 /* $Id: testlib.c,v 1.35 2006-08-14 10:40:22 adam Exp $
2 Copyright (C) 1995-2006
5 This file is part of the Zebra server.
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
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
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
23 /** testlib - utilities for the api tests */
28 #if HAVE_SYS_RESOURCE_H
29 #include <sys/resource.h>
37 #include <yaz/pquery.h>
38 #include <idzebra/api.h>
41 /** start_log: open a log file */
42 /* FIXME - parse command line arguments to set log levels etc */
43 int log_level=0; /* not static, t*.c may use it */
45 void tl_start_log(int argc, char **argv)
53 sprintf(logname, "%s.log", argv[0]);
57 yaz_log_init_file(logname);
59 log_level = yaz_log_mask_str_x(argv[1], 0);
61 yaz_log_time_format(argv[2]);
62 yaz_log_init_level(YLOG_DEFAULT_LEVEL | log_level | cmd_level);
63 yaz_log(log_level, "starting %s", argv[0]);
67 * tl_start_up : do common start things, and a zebra_start
69 * - build the name of logfile from argv[0], and open it
70 * if no argv passed, do not open a log
71 * - read zebra.cfg from env var srcdir if it exists; otherwise current dir
72 * default to zebra.cfg, if no name is given
74 ZebraService tl_start_up(char *cfgname, int argc, char **argv)
76 #if HAVE_SYS_RESOURCE_H
81 setrlimit(RLIMIT_CPU, &rlim);
85 tl_start_log(argc, argv);
86 return tl_zebra_start(cfgname);
90 * get_srcdir: return env srcdir or . (if does does not exist)
92 const char *tl_get_srcdir()
94 const char *srcdir = getenv("srcdir");
95 if (!srcdir || ! *srcdir)
100 /** tl_zebra_start - do a zebra_start with a decent config name */
101 ZebraService tl_zebra_start(const char *cfgname)
104 const char *srcdir = tl_get_srcdir();
105 if (!cfgname || ! *cfgname )
108 sprintf(cfg, "%.200s/%.50s", srcdir, cfgname);
109 return zebra_start(cfg);
112 /** tl_close_down closes down the zebra, logfile, nmem, xmalloc etc. logs an OK */
113 int tl_close_down(ZebraHandle zh, ZebraService zs)
125 /** inits the database and inserts test data */
127 int tl_init_data(ZebraHandle zh, const char **recs)
134 if (zebra_select_database(zh, "Default") != ZEBRA_OK)
137 yaz_log(log_level, "going to call init");
138 res = zebra_init(zh);
139 if (res == ZEBRA_FAIL)
141 yaz_log(log_level, "init_data: zebra_init failed with %d", res);
142 printf("init_data failed with %d\n", res);
148 if (zebra_begin_trans (zh, 1) != ZEBRA_OK)
150 for (i = 0; recs[i]; i++)
151 zebra_add_record(zh, recs[i], strlen(recs[i]));
152 if (zebra_end_trans(zh) != ZEBRA_OK)
159 int tl_query_x(ZebraHandle zh, const char *query, zint exphits, int experror)
162 YAZ_PQF_Parser parser;
164 const char *setname="rsetname";
168 yaz_log(log_level, "======================================");
169 yaz_log(log_level, "query: %s", query);
170 odr = odr_createmem (ODR_DECODE);
174 parser = yaz_pqf_create();
175 rpn = yaz_pqf_parse(parser, odr, query);
176 yaz_pqf_destroy(parser);
179 yaz_log(log_level, "could not parse pqf query %s\n", query);
180 printf("could not parse pqf query %s\n", query);
185 rc = zebra_search_RPN(zh, odr, rpn, setname, &hits);
189 if (rc != ZEBRA_FAIL)
191 yaz_log(log_level, "search returned %d (OK), but error was "
193 printf("Error: search returned %d (OK), but error was expected\n"
197 code = zebra_errCode(zh);
198 if (code != experror)
200 yaz_log(log_level, "search returned error code %d, but error %d "
201 "was expected", code, experror);
202 printf("Error: search returned error code %d, but error %d was "
204 code, experror, query);
210 if (rc == ZEBRA_FAIL) {
211 int code = zebra_errCode(zh);
212 yaz_log(log_level, "search returned %d. Code %d", rc, code);
214 printf("Error: search returned %d. Code %d\n%s\n", rc,
218 if (exphits != -1 && hits != exphits)
220 yaz_log(log_level, "search returned " ZINT_FORMAT
221 " hits instead of " ZINT_FORMAT, hits, exphits);
222 printf("Error: search returned " ZINT_FORMAT
223 " hits instead of " ZINT_FORMAT "\n%s\n",
224 hits, exphits, query);
233 int tl_query(ZebraHandle zh, const char *query, zint exphits)
235 return tl_query_x(zh, query, exphits, 0);
238 int tl_scan(ZebraHandle zh, const char *query,
240 int exp_pos, int exp_num, int exp_partial,
241 const char **exp_entries)
243 ODR odr = odr_createmem(ODR_ENCODE);
244 ZebraScanEntry *entries = 0;
248 yaz_log(log_level, "======================================");
249 yaz_log(log_level, "scan: pos=%d num=%d %s", pos, num, query);
251 res = zebra_scan_PQF(zh, odr, query, &pos, &num, &entries, &partial,
255 printf("Error: scan returned %d (FAIL), but no error was expected\n"
264 printf("Error: scan returned OK, but partial was not set\n"
268 if (partial != exp_partial)
270 printf("Error: scan returned OK, with partial/expected %d/%d\n"
271 "%s\n", partial, exp_partial, query);
276 printf("Error: scan returned OK, with num/expected %d/%d\n"
277 "%s\n", num, exp_num, query);
282 printf("Error: scan returned OK, with pos/expected %d/%d\n"
283 "%s\n", pos, exp_pos, query);
292 for (i = 0; i<num; i++)
294 if (strcmp(exp_entries[i], entries[i].term))
296 printf("Error: scan OK, but entry %d term/exp %s/%s\n"
298 i, entries[i].term, exp_entries[i], query);
311 * makes a query, checks number of hits, and for the first hit, that
312 * it contains the given string, and that it gets the right score
314 int tl_ranking_query(ZebraHandle zh, char *query,
315 int exphits, char *firstrec, int firstscore)
317 ZebraRetrievalRecord retrievalRecord[10];
318 ODR odr_output = odr_createmem (ODR_ENCODE);
319 const char *setname="rsetname";
323 if (!tl_query(zh, query, exphits))
326 for (i = 0; i<10; i++)
327 retrievalRecord[i].position = i+1;
329 rc = zebra_records_retrieve (zh, odr_output, setname, 0,
330 VAL_TEXT_XML, exphits, retrievalRecord);
334 if (!strstr(retrievalRecord[0].buf, firstrec))
336 printf("Error: Got the wrong record first\n");
337 printf("Expected '%s' but got\n", firstrec);
338 printf("%.*s\n", retrievalRecord[0].len, retrievalRecord[0].buf);
342 if (retrievalRecord[0].score != firstscore)
344 printf("Error: first rec got score %d instead of %d\n",
345 retrievalRecord[0].score, firstscore);
348 odr_destroy (odr_output);
352 int tl_meta_query(ZebraHandle zh, char *query, int exphits,
355 ZebraMetaRecord *meta;
356 ODR odr_output = odr_createmem (ODR_ENCODE);
357 const char *setname="rsetname";
358 zint *positions = (zint *) malloc(1 + (exphits * sizeof(zint)));
361 if (!tl_query(zh, query, exphits))
364 for (i = 0; i<exphits; i++)
367 meta = zebra_meta_records_create (zh, setname, exphits, positions);
371 printf("Error: retrieve returned error\n%s\n", query);
375 for (i = 0; i<exphits; i++)
377 if (meta[i].sysno != ids[i])
379 printf("Expected id=" ZINT_FORMAT " but got id=" ZINT_FORMAT "\n",
380 ids[i], meta[i].sysno);
384 zebra_meta_records_destroy(zh, meta, exphits);
385 odr_destroy (odr_output);
390 int tl_sort(ZebraHandle zh, const char *query, zint hits, zint *exp)
392 ZebraMetaRecord *recs;
395 zint min_val_recs = 0;
396 zint min_val_exp = 0;
399 if (!tl_query(zh, query, hits))
402 recs = zebra_meta_records_create_range (zh, "rsetname", 1, 4);
406 /* find min for each sequence to get proper base offset */
407 for (i = 0; i<hits; i++)
409 if (min_val_recs == 0 || recs[i].sysno < min_val_recs)
410 min_val_recs = recs[i].sysno;
411 if (min_val_exp == 0 || exp[i] < min_val_exp)
412 min_val_exp = exp[i];
415 /* compare sequences using base offset */
416 for (i = 0; i<hits; i++)
417 if ((recs[i].sysno-min_val_recs) != (exp[i]-min_val_exp))
421 printf("Sequence not in right order for query\n%s\ngot exp\n",
423 for (i = 0; i<hits; i++)
424 printf(" " ZINT_FORMAT " " ZINT_FORMAT "\n",
425 recs[i].sysno, exp[i]);
427 zebra_meta_records_destroy (zh, recs, 4);
440 static void filter_cb(void *cd, const char *name)
442 struct finfo *f = (struct finfo*) cd;
443 if (!strcmp(f->name, name))
447 void tl_check_filter(ZebraService zs, const char *name)
453 zebra_filter_info(zs, &f, filter_cb);
456 yaz_log(YLOG_WARN, "Filter %s does not exist.", name);
467 * indent-tabs-mode: nil
469 * vim: shiftwidth=4 tabstop=8 expandtab