From: Adam Dickmeiss Date: Wed, 23 Nov 2011 13:05:25 +0000 (+0100) Subject: test_ccl: add special qualifier tests X-Git-Tag: v4.2.21~2 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=ce0b30b9bf7f8f30798724aa29a4d4dc83eaccfa;hp=e7ee503f39a77a3b79d590feef34e0bd959ece0c test_ccl: add special qualifier tests Such as @truncation, @and, @or, @not. --- diff --git a/test/test_ccl.c b/test/test_ccl.c index e16752e..bd5ecb6 100644 --- a/test/test_ccl.c +++ b/test/test_ccl.c @@ -359,6 +359,43 @@ void tst1(int pass) 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); @@ -367,6 +404,7 @@ int main(int argc, char **argv) tst1(1); tst1(2); tst1(3); + tst2(); YAZ_CHECK_TERM; } /*