b945f3de78872ac01b4be40bbf81a67a288c57df
[idzebra-moved-to-github.git] / test / api / t17.c
1 /* $Id: t17.c,v 1.9 2007-12-13 11:09: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 /** \file
24     \brief tests ICU enabled maps
25 */
26 #include <yaz/test.h>
27 #include "testlib.h"
28
29 #define char_ae "\xc3\xa6"
30 #define char_AE "\xc3\x86"
31 #define char_oslash "\xc3\xb8"
32 #define char_Oslash "\xc3\x98"
33
34 const char *myrec[] = {
35         "<gils>\n<title>My computer</title>\n</gils>\n",
36         "<gils>\n<title>My x computer</title>\n</gils>\n",
37         "<gils>\n<title>My computer x</title>\n</gils>\n" ,
38
39         "<gils>\n<title>" char_ae "</title>\n</gils>\n" ,
40         0} ;
41         
42 static void tst(int argc, char **argv)
43 {
44 #if YAZ_HAVE_ICU
45     ZebraService zs = tl_start_up("zebra17.cfg", argc, argv);
46     ZebraHandle zh = zebra_open(zs, 0);
47
48     YAZ_CHECK(tl_init_data(zh, myrec));
49
50     /* simple term */
51     YAZ_CHECK(tl_query(zh, "@attr 1=title notfound", 0));
52
53     YAZ_CHECK(tl_query(zh, "@attr 1=title computer", 3));
54  
55     YAZ_CHECK(tl_query(zh, "@attr 1=title .computer.", 3));
56
57     YAZ_CHECK(tl_query(zh, "@attr 1=title x", 2));
58
59     YAZ_CHECK(tl_query(zh, "@attr 1=title my", 3));
60
61     YAZ_CHECK(tl_query(zh, "@attr 1=title mY", 3));
62
63     YAZ_CHECK(tl_query(zh, char_ae, 1));
64 #if 0
65     YAZ_CHECK(tl_query(zh, char_AE, 1));
66 #endif
67
68     /* phrase search */
69     YAZ_CHECK(tl_query(zh, "@attr 1=title {my computer}", 2));
70     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=1 {my computer}", 2));
71     YAZ_CHECK(tl_query(zh, "@attr 1=title {computer x}", 1));
72
73     /* complete-subfield search */
74     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my computer}", 1));
75     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my}", 0));
76
77     /* scan */
78     
79     YAZ_CHECK(tl_close_down(zh, zs));
80 #endif
81 }
82
83 TL_MAIN
84
85 /*
86  * Local variables:
87  * c-basic-offset: 4
88  * indent-tabs-mode: nil
89  * End:
90  * vim: shiftwidth=4 tabstop=8 expandtab
91  */
92