Happy new year
[idzebra-moved-to-github.git] / test / xslt / xslt2.c
1 /* This file is part of the Zebra server.
2    Copyright (C) Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include <stdio.h>
24 #include "testlib.h"
25
26 static void tst(int argc, char **argv)
27 {
28     char path[256];
29     char profile_path[256];
30     char record_buf[20000];
31     const char *records_array[] = {
32         record_buf, 0
33     };
34     FILE *f;
35     size_t r;
36
37     ZebraService zs = tl_start_up(0, argc, argv);
38     ZebraHandle  zh = zebra_open(zs, 0);
39
40     tl_check_filter(zs, "alvis");
41
42     YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
43
44     zebra_init(zh);
45
46     sprintf(profile_path, "%s:%s/../../tab",
47             tl_get_srcdir(), tl_get_srcdir());
48     zebra_set_resource(zh, "profilePath", profile_path);
49
50     zebra_set_resource(zh, "recordType", "alvis.marcschema-col.xml");
51
52     sprintf(path, "%.200s/marc-col.xml", tl_get_srcdir());
53     f = fopen(path, "rb");
54     if (!f)
55     {
56         yaz_log(YLOG_FATAL|YLOG_ERRNO, "Cannot open %s", path);
57         exit(1);
58     }
59     r = fread(record_buf, 1, sizeof(record_buf)-1, f);
60     if (r < 2 || r == sizeof(record_buf)-1)
61     {
62         yaz_log(YLOG_FATAL, "Bad size of %s", path);
63         exit(1);
64     }
65     fclose(f);
66
67     record_buf[r] = '\0';
68
69     /* for now only the first of the records in the collection is
70        indexed. That can be seen as a bug */
71     YAZ_CHECK(tl_init_data(zh, records_array));
72
73     /* only get hits from first record .. */
74     YAZ_CHECK(tl_query(zh, "@attr 1=title computer", 3));
75     YAZ_CHECK(tl_query(zh, "@attr 1=control 11224466", 1));
76     YAZ_CHECK(tl_query_x(zh, "@attr 1=titl computer", 0, 114));
77
78     YAZ_CHECK(tl_close_down(zh, zs));
79 }
80
81 TL_MAIN
82 /*
83  * Local variables:
84  * c-basic-offset: 4
85  * c-file-style: "Stroustrup"
86  * indent-tabs-mode: nil
87  * End:
88  * vim: shiftwidth=4 tabstop=8 expandtab
89  */
90