X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft5.c;h=b12e59a8b7b928cb34159f8de965ba130661081f;hb=c401b3a1421e31b3d6b77bc7bac6ffb934207df1;hp=8db05c02692ddc393be286ba74a911eb4f69a51f;hpb=ec214819d7b9e2f5c362584d8e38f83e13aae600;p=idzebra-moved-to-github.git diff --git a/test/api/t5.c b/test/api/t5.c index 8db05c0..b12e59a 100644 --- a/test/api/t5.c +++ b/test/api/t5.c @@ -1,6 +1,6 @@ -/* $Id: t5.c,v 1.6 2004-08-25 09:23:39 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: t5.c,v 1.19 2006-08-14 10:40:22 adam Exp $ + Copyright (C) 1995-2006 + Index Data ApS This file is part of the Zebra server. @@ -15,95 +15,121 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. -*/ +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -#include -#include -#include +*/ -/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */ -static ZebraService start_service() -{ - char cfg[256]; - char *srcdir = getenv("srcdir"); - sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : ""); - return zebra_start(cfg); -} - -static void expect(ZebraHandle zh, const char *pqf, int hits_expect, - int *exit_code) -{ - int hits; - if (zebra_search_PQF (zh, pqf, "set1", &hits) != 0) - { - yaz_log(LOG_FATAL, "Search %s: failed", pqf); - *exit_code = 1; - } - else if (hits != hits_expect) - { - yaz_log(LOG_FATAL, "Search %s: Expected %d, got %d", pqf, - hits_expect, hits); - *exit_code = 2; - } -} +/** t5.c: proximity searches */ +#include +#include "testlib.h" -int main(int argc, char **argv) -{ - int i; - int exit_code = 0; - ZebraService zs; - ZebraHandle zh; - const char *myrec[] = { +const char *myrec[] = { "\nMy title\n\n", "\nMy x title\n\n", "\nMy title x\n\n" , - 0} - ; - - yaz_log_init_file("t5.log"); - - nmem_init (); + 0} ; + +static void tst(int argc, char **argv) +{ + ZebraService zs = tl_start_up(0, argc, argv); + ZebraHandle zh = zebra_open(zs, 0); + + YAZ_CHECK(tl_init_data(zh, myrec)); + + /* and searches */ + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 notfound @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 notfound @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 my", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 my @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 my @attr 1=4 my", 3)); + + /* or searches */ + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 notfound @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 notfound", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 notfound @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 my", 3)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 my @attr 1=4 x", 3)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 my @attr 1=4 my", 3)); + + /* not searches */ + /* bug 619 */ + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 notfound @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 x @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 my @attr 1=4 x", 1)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 my @attr 1=4 notfound", 3)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 notfound @attr 1=4 notfound", 0)); - zs = start_service(); - zh = zebra_open (zs); - zebra_select_database(zh, "Default"); - zebra_init(zh); - - zebra_begin_trans (zh, 1); - for (i = 0; myrec[i]; i++) - zebra_add_record (zh, myrec[i], strlen(myrec[i])); - zebra_end_trans (zh); - - expect(zh, "@attr 1=4 my", 3, &exit_code); - expect(zh, "@attr 1=4 {my x}", 1, &exit_code); - expect(zh, "@attr 1=4 {my x}", 1, &exit_code); - expect(zh, "@attr 1=4 {x my}", 0, &exit_code); - expect(zh, "@attr 1=4 {my x title}", 1, &exit_code); - expect(zh, "@attr 1=4 {my title}", 2, &exit_code); - expect(zh, "@attr 1=4 @and x title", 2, &exit_code); + /* phrase searches */ + YAZ_CHECK(tl_query(zh, "@attr 1=4 my", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 {my x}", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=1 {my x}", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 {my x}", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 {x my}", 0)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 {my x title}", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 {my title}", 2)); + + /* and-list searches */ + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=6 {x my}", 2)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=6 {my x}", 2)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=6 {my my}", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=6 {e x}", 0)); + + /* or-list searches */ + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=105 {x my}", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=105 {my x}", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=105 {my my}", 3)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=105 {e x}", 2)); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=106 {e x}", 2)); /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */ - expect(zh, "@prox 0 2 1 2 k 2 my x", 2, &exit_code); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 0 2 1 2 k 2 my x", 2)); /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */ - expect(zh, "@prox 0 2 1 2 k 2 x my", 0, &exit_code); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 0 2 1 2 k 2 x my", 0)); /* exl=0 distance=2 order=0 relation=2 (<=), known, unit=word */ - expect(zh, "@prox 0 2 0 2 k 2 x my", 2, &exit_code); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 0 2 0 2 k 2 x my", 2)); /* exl=0 distance=2 order=0 relation=3 (=), known, unit=word */ - expect(zh, "@prox 0 2 1 3 k 2 my x", 1, &exit_code); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 0 2 1 3 k 2 my x", 1)); /* exl=1 distance=2 order=0 relation=3 (=), known, unit=word */ - expect(zh, "@prox 1 2 1 3 k 2 my x", 1, &exit_code); + YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 1 2 1 3 k 2 my x", 1)); + + /* provoke unsupported use attribute */ + YAZ_CHECK(tl_query_x(zh, "@attr 1=999 @attr 4=1 x", 0, 114)); + YAZ_CHECK(tl_query_x(zh, "@attr 1=999 @attr 4=6 x", 0, 114)); + YAZ_CHECK(tl_query_x(zh, "@attr 1=999 @attr 4=105 x", 0, 114)); + YAZ_CHECK(tl_query_x(zh, "@attr 1=999 @attr 4=109 123", 0, 114)); + YAZ_CHECK(tl_query_x(zh, "@attrset 1.2.840.10003.3.1 @attr 1=999 x", + 0, 114)); + /* provoke unsupported attribute set */ + YAZ_CHECK(tl_query_x(zh, "@attrset 1.2.8 @attr 1=999 @attr 4=1 x", 0, 121)); + YAZ_CHECK(tl_query_x(zh, "@attrset 1.2.8 @attr 1=999 @attr 4=6 x", 0, + 121)); + YAZ_CHECK(tl_query_x(zh, "@attrset 1.2.8 @attr 1=999 @attr 4=105 x", 0, + 121)); + YAZ_CHECK(tl_query_x(zh, "@attrset 1.2.8 @attr 1=999 @attr 4=109 123", + 0, 121)); + + /* provoke unsupported relation */ + YAZ_CHECK(tl_query_x(zh, "@attr 1=4 @attr 2=6 x", 0, 117)); + YAZ_CHECK(tl_query_x(zh, "@attr 1=1016 @attr 2=6 @attr 4=109 x", 0, 114)); + + YAZ_CHECK(tl_close_down(zh, zs)); +} - zebra_close (zh); - zebra_stop (zs); +TL_MAIN + +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ - nmem_exit (); - xmalloc_trav ("x"); - exit (exit_code); -}