Scan test. Using ICU config in 'tab'.
[idzebra-moved-to-github.git] / test / api / t17.c
1 /* $Id: t17.c,v 1.11 2007-12-17 12:23:03 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 /* utf-8 sequences for some characters */
30 #define char_ae "\xc3\xa6"
31 #define char_AE "\xc3\x86"
32
33 #define char_oslash "\xc3\xb8"
34 #define char_Oslash "\xc3\x98"
35
36 #define char_aring "\xc3\xa5"
37 #define char_Aring "\xc3\x85"
38
39 #define char_comb_ring_above "\xcc\x8a"
40
41 #define char_aring1 "a" char_comb_ring_above
42 #define char_Aring1 "A" char_comb_ring_above
43
44 const char *myrec[] = {
45         "<gils>\n<title>My computer</title>\n</gils>\n",
46         "<gils>\n<title>My x computer</title>\n</gils>\n",
47         "<gils>\n<title>My computer x</title>\n</gils>\n" ,
48         "<gils>\n<title>" char_ae "</title>\n</gils>\n" ,
49         "<gils>\n<title>B" char_aring "d</title>\n</gils>\n" ,
50         0} ;
51         
52 static void tst(int argc, char **argv)
53 {
54 #if YAZ_HAVE_ICU
55     ZebraService zs = tl_start_up("zebra17.cfg", argc, argv);
56     ZebraHandle zh = zebra_open(zs, 0);
57
58     YAZ_CHECK(tl_init_data(zh, myrec));
59
60     /* simple term */
61     YAZ_CHECK(tl_query(zh, "@attr 1=title notfound", 0));
62
63     YAZ_CHECK(tl_query(zh, "@attr 1=title computer", 3));
64  
65     YAZ_CHECK(tl_query(zh, "@attr 1=title .computer.", 3));
66
67     YAZ_CHECK(tl_query(zh, "@attr 1=title x", 2));
68
69     YAZ_CHECK(tl_query(zh, "@attr 1=title my", 3));
70
71     YAZ_CHECK(tl_query(zh, "@attr 1=title mY", 3));
72
73     YAZ_CHECK(tl_query(zh, char_ae, 1));
74     YAZ_CHECK(tl_query(zh, char_AE, 1));
75
76     YAZ_CHECK(tl_query(zh, "b" char_aring "d", 1));
77     YAZ_CHECK(tl_query(zh, "B" char_Aring "D", 1));
78     YAZ_CHECK(tl_query(zh, "b" char_aring1 "d", 1));
79     YAZ_CHECK(tl_query(zh, "B" char_Aring1 "D", 1));
80
81     /* phrase search */
82     YAZ_CHECK(tl_query(zh, "@attr 1=title {my computer}", 2));
83     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=1 {my computer}", 2));
84     YAZ_CHECK(tl_query(zh, "@attr 1=title {computer x}", 1));
85
86     /* complete-subfield search */
87     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my computer}", 1));
88     YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my}", 0));
89     
90     /* scan */
91     {   /* word search */
92         const char *ent[] = { char_ae, "B" char_aring "d", "computer", 
93                               "My", "x", 0 };
94         YAZ_CHECK(tl_scan(zh, "@attr 1=title 0", 1, 10, 1, 5, 1, ent));
95     }
96
97     {   /* word search */
98         const char *ent[] = { "My", "x", 0 };
99         YAZ_CHECK(tl_scan(zh, "@attr 1=title cp", 1, 10, 1, 2, 1, ent));
100     }
101
102     {   /* phrase search */
103         const char *ent[] = { char_ae, "B" char_aring "d", "My computer" };
104         YAZ_CHECK(tl_scan(zh, "@attr 1=title @attr 6=2 0", 1, 3, 1, 3, 0, ent));
105     }
106
107     
108     YAZ_CHECK(tl_close_down(zh, zs));
109 #endif
110 }
111
112 TL_MAIN
113
114 /*
115  * Local variables:
116  * c-basic-offset: 4
117  * indent-tabs-mode: nil
118  * End:
119  * vim: shiftwidth=4 tabstop=8 expandtab
120  */
121