X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftstccl.c;h=f1ce44025fc08fa249f1c4f7c1dfc209987de37b;hp=87a3930c22a06bef45e8a54c60c49807048a1b84;hb=dc0ea3eaeb38d04f10118bfe62cd8e6c80033ce6;hpb=2788a4851b551e1a3efb320a2878b809f2d8a9d7 diff --git a/test/tstccl.c b/test/tstccl.c index 87a3930..f1ce440 100644 --- a/test/tstccl.c +++ b/test/tstccl.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -7,6 +7,7 @@ #include #include +#include #include @@ -32,14 +33,22 @@ static int tst_ccl_query(CCL_bibset bibset, if (result && !strcmp(wrbuf_cstr(wrbuf), result)) ret = 1; else + { + yaz_log(YLOG_WARN, "%s: result does not match", query); + yaz_log(YLOG_WARN, " expected %s", result); + yaz_log(YLOG_WARN, " got %s", wrbuf_cstr(wrbuf)); ret = 0; + } ccl_rpn_delete(rpn); wrbuf_destroy(wrbuf); } else { if (result) + { + yaz_log(YLOG_WARN, "%s: parse failed", query); ret = 0; + } else ret = 1; } @@ -61,7 +70,7 @@ void tst1(int pass) { case 0: ccl_qual_fitem(bibset, "u=4 s=pw t=l,r", "ti"); - ccl_qual_fitem(bibset, "1=1016 s=al,pw", "term"); + ccl_qual_fitem(bibset, "1=1016 s=al,pw t=r", "term"); ccl_qual_fitem(bibset, "1=/my/title", "dc.title"); ccl_qual_fitem(bibset, "r=r", "date"); ccl_qual_fitem(bibset, "r=o", "x"); @@ -70,7 +79,7 @@ void tst1(int pass) strcpy(tstline, "ti u=4 s=pw t=l,r"); ccl_qual_line(bibset, tstline); - strcpy(tstline, "term 1=1016 s=al,pw # default term"); + strcpy(tstline, "term 1=1016 s=al,pw t=r # default term"); ccl_qual_line(bibset, tstline); strcpy(tstline, "dc.title 1=/my/title"); @@ -84,7 +93,7 @@ void tst1(int pass) break; case 2: ccl_qual_buf(bibset, "ti u=4 s=pw t=l,r\n" - "term 1=1016 s=al,pw\r\n" + "term 1=1016 s=al,pw t=r\r\n" "\n" "dc.title 1=/my/title\n" "date r=r\n" @@ -108,6 +117,7 @@ void tst1(int pass) " \n" " \n" " \n" + " \n" " \n" " \n" " \n" @@ -197,6 +207,28 @@ void tst1(int pass) YAZ_CHECK(tst_ccl_query(bibset, "ti=a, b", "@attr 4=1 @attr 1=4 \"a, b\" ")); YAZ_CHECK(tst_ccl_query(bibset, "ti=a-b", "@attr 4=2 @attr 1=4 a-b ")); YAZ_CHECK(tst_ccl_query(bibset, "ti=a - b", "@attr 4=1 @attr 1=4 \"a - b\" ")); + + YAZ_CHECK(tst_ccl_query(bibset, "a?", "@attr 5=1 @attr 4=2 @attr 1=1016 a ")); + YAZ_CHECK(tst_ccl_query(bibset, "a b", + "@and @attr 4=2 @attr 1=1016 a " + "@attr 4=2 @attr 1=1016 b ")); + + YAZ_CHECK(tst_ccl_query(bibset, "a b?", + "@and @attr 4=2 @attr 1=1016 a " + "@attr 5=1 @attr 4=2 @attr 1=1016 b ")); + + /* Bug #2895 */ +#if 1 + YAZ_CHECK(tst_ccl_query(bibset, "a? b?", + /* incorrect. */ + "@and @attr 4=2 @attr 1=1016 a? " + "@attr 5=1 @attr 4=2 @attr 1=1016 b ")); +#else + YAZ_CHECK(tst_ccl_query(bibset, "a? b?", + /* correct */ + "@and @attr 5=1 @attr 4=2 @attr 1=1016 a " + "@attr 5=1 @attr 4=2 @attr 1=1016 b ")); +#endif ccl_qual_rm(&bibset); } @@ -213,6 +245,7 @@ int main(int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab