X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=test%2Fapi%2Ft17.c;h=b945f3de78872ac01b4be40bbf81a67a288c57df;hp=20cf3f37a88388c67f9bee0aa2bd82bdbbb2be60;hb=7336356a8d037e2782e201bcdc48ff4ae2850ae4;hpb=896b30853daabb6294afe8b0a2f74fa6d6e397d8 diff --git a/test/api/t17.c b/test/api/t17.c index 20cf3f3..b945f3d 100644 --- a/test/api/t17.c +++ b/test/api/t17.c @@ -1,4 +1,4 @@ -/* $Id: t17.c,v 1.7 2007-12-07 14:09:09 adam Exp $ +/* $Id: t17.c,v 1.9 2007-12-13 11:09:20 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -26,10 +26,17 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include "testlib.h" +#define char_ae "\xc3\xa6" +#define char_AE "\xc3\x86" +#define char_oslash "\xc3\xb8" +#define char_Oslash "\xc3\x98" + const char *myrec[] = { "\nMy computer\n\n", "\nMy x computer\n\n", "\nMy computer x\n\n" , + + "\n" char_ae "\n\n" , 0} ; static void tst(int argc, char **argv) @@ -51,9 +58,24 @@ static void tst(int argc, char **argv) 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)); +#if 0 + YAZ_CHECK(tl_query(zh, char_AE, 1)); +#endif + /* 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 }