X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fxslt%2Fxslt3.c;fp=test%2Fxslt%2Fxslt3.c;h=0fb67c809d1e4fb7751bfebfae1d84c4c49c7770;hb=aa9c7bcd6f5ec5a2523c40f929ebdc9d72c1b48a;hp=0000000000000000000000000000000000000000;hpb=aabb55c8b1c9e9c3076895f4eeb916019749d209;p=idzebra-moved-to-github.git diff --git a/test/xslt/xslt3.c b/test/xslt/xslt3.c new file mode 100644 index 0000000..0fb67c8 --- /dev/null +++ b/test/xslt/xslt3.c @@ -0,0 +1,74 @@ +/* $Id: xslt3.c,v 1.1 2005-05-01 07:17:47 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS + +This file is part of the Zebra server. + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Zebra; see the file LICENSE.zebra. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. +*/ + +#include +#include "testlib.h" + +int main(int argc, char **argv) +{ + char path[256]; + char record_buf[20000]; + const char *records_array[] = { + record_buf, 0 + }; + FILE *f; + size_t r; + + ZebraService zs = start_up(0, argc, argv); + ZebraHandle zh = zebra_open(zs); + + check_filter(zs, "xslt"); + + zebra_select_database(zh, "Default"); + + zebra_init(zh); + + zebra_set_resource(zh, "recordType", "xslt.marc1.xsl"); + + sprintf(path, "%.200s/marc-one.xml", get_srcdir()); + f = fopen(path, "rb"); + if (!f) + { + yaz_log(YLOG_FATAL|YLOG_ERRNO, "Cannot open %s", path); + exit(1); + } + r = fread(record_buf, 1, sizeof(record_buf)-1, f); + if (r < 2 || r == sizeof(record_buf)-1) + { + yaz_log(YLOG_FATAL, "Bad size of %s", path); + exit(1); + } + fclose(f); + + record_buf[r] = '\0'; + + /* for now only the first of the records in the collection is + indexed. That can be seen as a bug */ + init_data(zh, records_array); + + /* only get hits from first record .. */ + do_query(__LINE__, zh, "@attr 1=title computer", 1); + do_query(__LINE__, zh, "@attr 1=control 11224466", 1); + do_query_x(__LINE__, zh, "@attr 1=titl computer", 0, 121); + + return close_down(zh, zs, 0); +}