X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ftest_icu_indexing.c;h=e569935cbaa607922a2ab4838db3cb28f882147a;hb=0e8272b3d5a18a0695f8c7a58617caa0ad938059;hp=71f8127c3535bab22ef33f724712f26e0a1a1b4f;hpb=0052fb5520062c328006dc3537f39d28e88f3579;p=idzebra-moved-to-github.git diff --git a/test/api/test_icu_indexing.c b/test/api/test_icu_indexing.c index 71f8127..e569935 100644 --- a/test/api/test_icu_indexing.c +++ b/test/api/test_icu_indexing.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2011 Index Data + Copyright (C) Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -49,7 +49,7 @@ const char *myrec[] = { "\nB" char_aring "d\n" "זיהוי סדר הארועים בסיפור המרד הגדול מאת צביה בן-שלום 提示:直接点击数据库名称,将进入单库检索 Ngày xửa ngày xưa D.W. all wet\n\n" , 0} ; - + static void tst(int argc, char **argv) { #if YAZ_HAVE_ICU @@ -62,7 +62,7 @@ static void tst(int argc, char **argv) /* simple term */ YAZ_CHECK(tl_query(zh, "@attr 1=title notfound", 0)); - + YAZ_CHECK(tl_query(zh, "@attr 1=title computer", 3)); YAZ_CHECK(tl_query(zh, "@attr 5=1 @attr 1=title computer", 3)); @@ -139,7 +139,7 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 5=102 " "..rme", 1)); /* Abstract searches . Chinese mostly */ - YAZ_CHECK(tl_query(zh, "@attr 1=abstract בן", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=abstract בן-שלום", 1)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract צביה", 1)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract הגדול", 1)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract בסיפור", 1)); @@ -153,11 +153,16 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=1 בס", 1)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=1 ב", 1)); - YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=102 בן", 1)); - + YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=1 בן-שלום", 1)); + /* below: should be 1, but the dash (-) is probably a problem */ + YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=102 בן-שלום", 0)); + YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 5=102 צביה", 1)); + /* phrase search */ YAZ_CHECK(tl_query(zh, "@attr 1=title {my computer}", 2)); + 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 @attr 6=1 {my-computer}", 2)); YAZ_CHECK(tl_query(zh, "@attr 1=title {computer x}", 1)); /* complete-subfield search */ @@ -169,10 +174,10 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 1=title @attr 2=103 {}", 5)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 2=103 {}", 1)); YAZ_CHECK(tl_query(zh, "@attr 1=abstract @attr 2=103 {does not match}", 1)); - + /* scan */ { /* word search */ - const char *ent[] = { char_ae "rme", "B" char_aring "d", "computer", + const char *ent[] = { char_ae "rme", "B" char_aring "d", "computer", "My", "x", 0 }; YAZ_CHECK(tl_scan(zh, "@attr 1=title 0", 1, 10, 1, 5, 1, ent)); } @@ -186,7 +191,7 @@ static void tst(int argc, char **argv) const char *ent[] = { char_ae "rme", "B" char_aring "d", "My computer" }; YAZ_CHECK(tl_scan(zh, "@attr 1=title @attr 6=2 0", 1, 3, 1, 3, 0, ent)); } - + YAZ_CHECK(tl_close_down(zh, zs)); #endif }