X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftest_ccl.c;h=bd5ecb6bd8149b6784454ae72bc71b069c809233;hb=871f1239cc0c8a2d4b2bd16a918a39c97633faa8;hp=55a12f4a0aecd2ec03efec2a7e7c9dbad373af73;hpb=176297882639f5e3318ffa4dcc515f081a6e08f4;p=yaz-moved-to-github.git diff --git a/test/test_ccl.c b/test/test_ccl.c index 55a12f4..bd5ecb6 100644 --- a/test/test_ccl.c +++ b/test/test_ccl.c @@ -353,9 +353,49 @@ void tst1(int pass) YAZ_CHECK(tst_ccl_query(bibset, "\"a b c\"", "@attr 4=1 @attr 1=1016 \"a b c\" ")); + YAZ_CHECK(tst_ccl_query(bibset, "\"a b c \"", + "@attr 4=1 @attr 1=1016 \"a b c \" ")); + + ccl_qual_rm(&bibset); +} + +void tst2(void) +{ + CCL_bibset bibset = ccl_qual_mk(); + + YAZ_CHECK(bibset); + if (!bibset) + return; + + ccl_qual_fitem(bibset, "u=4 s=pw t=l,r", "ti"); + ccl_qual_fitem(bibset, "1=1016 s=al,pw t=z", "term"); + + YAZ_CHECK(tst_ccl_query(bibset, "a*", + "@attr 4=2 @attr 1=1016 a* ")); + + YAZ_CHECK(tst_ccl_query(bibset, "a?", + "@attr 5=104 @attr 4=2 @attr 1=1016 a? ")); + + ccl_qual_fitem(bibset, "*", "@truncation"); + YAZ_CHECK(tst_ccl_query(bibset, "a*", + "@attr 5=104 @attr 4=2 @attr 1=1016 a? ")); + + YAZ_CHECK(tst_ccl_query(bibset, "a?", + "@attr 5=104 @attr 4=2 @attr 1=1016 a\\\\? ")); + + ccl_qual_fitem(bibset, "og", "@and"); + ccl_qual_fitem(bibset, "eller", "@or"); + ccl_qual_fitem(bibset, "ikke", "@not"); + + YAZ_CHECK(tst_ccl_query(bibset, "a og b eller c ikke d", + "@not @or @and @attr 4=2 @attr 1=1016 a " + "@attr 4=2 @attr 1=1016 b " + "@attr 4=2 @attr 1=1016 c " + "@attr 4=2 @attr 1=1016 d ")); ccl_qual_rm(&bibset); } + int main(int argc, char **argv) { YAZ_CHECK_INIT(argc, argv); @@ -364,6 +404,7 @@ int main(int argc, char **argv) tst1(1); tst1(2); tst1(3); + tst2(); YAZ_CHECK_TERM; } /*