X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft17.c;h=aafddd2a163c8611e5ddd4b80aa41c1ffb282a58;hb=bf99dfa4e17281320b4f5016b099f395e6d62965;hp=811bc78e562193f9a00bcf7e5b43424c9372c682;hpb=1b13fcc6c6e0820ce52c340155e84ae69a4b18a8;p=idzebra-moved-to-github.git diff --git a/test/api/t17.c b/test/api/t17.c index 811bc78..aafddd2 100644 --- a/test/api/t17.c +++ b/test/api/t17.c @@ -1,4 +1,4 @@ -/* $Id: t17.c,v 1.5 2007-11-14 09:51:00 adam Exp $ +/* $Id: t17.c,v 1.10 2007-12-13 15:43:52 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -26,10 +26,27 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include "testlib.h" +/* utf-8 sequences for some characters */ +#define char_ae "\xc3\xa6" +#define char_AE "\xc3\x86" + +#define char_oslash "\xc3\xb8" +#define char_Oslash "\xc3\x98" + +#define char_aring "\xc3\xa5" +#define char_Aring "\xc3\x85" + +#define char_comb_ring_above "\xcc\x8a" + +#define char_aring1 "a" char_comb_ring_above +#define char_Aring1 "A" char_comb_ring_above + const char *myrec[] = { "\nMy computer\n\n", "\nMy x computer\n\n", "\nMy computer x\n\n" , + "\n" char_ae "\n\n" , + "\nB" char_aring "d\n\n" , 0} ; static void tst(int argc, char **argv) @@ -45,6 +62,33 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 1=title computer", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=title .computer.", 3)); + + YAZ_CHECK(tl_query(zh, "@attr 1=title x", 2)); + + YAZ_CHECK(tl_query(zh, "@attr 1=title my", 3)); + + YAZ_CHECK(tl_query(zh, "@attr 1=title mY", 3)); + + YAZ_CHECK(tl_query(zh, char_ae, 1)); + YAZ_CHECK(tl_query(zh, char_AE, 1)); + + YAZ_CHECK(tl_query(zh, "b" char_aring "d", 1)); + YAZ_CHECK(tl_query(zh, "B" char_Aring "D", 1)); + YAZ_CHECK(tl_query(zh, "b" char_aring1 "d", 1)); + YAZ_CHECK(tl_query(zh, "B" char_Aring1 "D", 1)); + + /* phrase search */ + YAZ_CHECK(tl_query(zh, "@attr 1=title {my computer}", 2)); + YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=1 {my computer}", 2)); + YAZ_CHECK(tl_query(zh, "@attr 1=title {computer x}", 1)); + + /* complete-subfield search */ + YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my computer}", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 6=2 {my}", 0)); + + /* scan */ + YAZ_CHECK(tl_close_down(zh, zs)); #endif }