1 /* $Id: xpath6.c,v 1.9 2006-05-10 08:13:41 adam Exp $
2 Copyright (C) 1995-2005
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 Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 #include "../api/testlib.h"
25 static void tst(int argc, char **argv)
28 ZebraService zs = tl_start_up(0, argc, argv);
29 ZebraHandle zh = zebra_open(zs, 0);
32 YAZ_CHECK(zebra_select_database(zh, "Default") == ZEBRA_OK);
36 tl_check_filter(zs, "grs.xml");
38 zebra_set_resource(zh, "recordType", "grs.xml");
40 YAZ_CHECK(zebra_begin_trans(zh, 1) == ZEBRA_OK);
41 for (i = 1; i <= 2; i++)
43 sprintf(path, "%.200s/rec%d.xml", tl_get_srcdir(), i);
44 zebra_repository_update(zh, path);
46 YAZ_CHECK(zebra_end_trans(zh) == ZEBRA_OK);
49 YAZ_CHECK(tl_query(zh, "@attr 5=1 @attr 6=3 @attr 4=1 @attr 1=/assembled/basic/names/CASno \"367-93-1\"", 2));
51 YAZ_CHECK(tl_query(zh, "@attr 5=1 @attr 6=3 @attr 4=1 @attr 1=18 \"367-93-1\"", 2));
53 YAZ_CHECK(tl_query(zh, "@attr 1=/assembled/orgs/org 0", 1));
55 YAZ_CHECK(tl_query(zh,
56 "@and @attr 1=/assembled/orgs/org 0 @attr 5=1 @attr 6=3 @attr 4=1 "
57 "@attr 1=/assembled/basic/names/CASno \"367-93-1\"", 1));
59 YAZ_CHECK(tl_query(zh,
60 "@and @attr 1=/assembled/orgs/org 1 @attr 5=1 @attr 6=3 @attr 4=1 "
61 "@attr 1=/assembled/basic/names/CASno 367-93-1", 2));
64 YAZ_CHECK(tl_query(zh, "@attr 1=1010 46", 2));
67 YAZ_CHECK(tl_query(zh, "@attr 1=1021 0", 1));
70 YAZ_CHECK(tl_query(zh, "@attr 1=1021 46", 1));
73 YAZ_CHECK(tl_query(zh, "@attr 1=1021 1", 0));
76 YAZ_CHECK(tl_query(zh, "@attr 1=4 46", 0));
79 YAZ_CHECK(tl_query(zh, "@attr 1=4 beta", 1));
81 YAZ_CHECK(tl_close_down(zh, zs));
88 * indent-tabs-mode: nil
90 * vim: shiftwidth=4 tabstop=8 expandtab