X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftest_ccl.c;h=42ec35eaa638df8af7d67a509b84f42689b78945;hp=76d76baed84042e8d1a6ac0319198943f2c02e12;hb=0e7fdbc857d4905e67a7bdf8fe5b6c773ee47a7b;hpb=26e1223d0b98f56cf288fb8fdf1acaa15047db2b diff --git a/test/test_ccl.c b/test/test_ccl.c index 76d76ba..42ec35e 100644 --- a/test/test_ccl.c +++ b/test/test_ccl.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2011 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ #if HAVE_CONFIG_H @@ -79,7 +79,9 @@ 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 t=r", "term"); - ccl_qual_fitem(bibset, "1=/my/title t=x", "dc.title"); + ccl_qual_fitem(bibset, "t=x", "reg"); + ccl_qual_fitem(bibset, "t=z", "z"); + ccl_qual_fitem(bibset, "1=/my/title", "dc.title"); ccl_qual_fitem(bibset, "r=r", "date"); ccl_qual_fitem(bibset, "r=o", "x"); ccl_qual_fitem(bibset, "dc.title", "title"); @@ -92,7 +94,13 @@ void tst1(int pass) strcpy(tstline, "term 1=1016 s=al,pw t=r # default term"); ccl_qual_line(bibset, tstline); - strcpy(tstline, "dc.title 1=/my/title t=x"); + strcpy(tstline, "reg t=x"); + ccl_qual_line(bibset, tstline); + + strcpy(tstline, "z t=z"); + ccl_qual_line(bibset, tstline); + + strcpy(tstline, "dc.title 1=/my/title"); ccl_qual_line(bibset, tstline); strcpy(tstline, "date r=r # ordered relation"); @@ -111,7 +119,9 @@ void tst1(int pass) ccl_qual_buf(bibset, "ti u=4 s=pw t=l,r\n" "term 1=1016 s=al,pw t=r\r\n" "\n" - "dc.title 1=/my/title t=x\n" + "reg t=x\r\n" + "z t=z\r\n" + "dc.title 1=/my/title\n" "date r=r\n" "x r=o\n" "title dc.title\n" @@ -137,9 +147,14 @@ void tst1(int pass) " \n" " \n" " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" " \n" " \n" - " \n" " \n" " \n" " \n" @@ -186,6 +201,7 @@ void tst1(int pass) "@attr 4=2 @attr 1=1016 x2 ")); YAZ_CHECK(tst_ccl_query(bibset, "ti=x3", "@attr 4=2 @attr 1=4 x3 ")); YAZ_CHECK(tst_ccl_query(bibset, "dc.title=x4", "@attr 1=/my/title x4 ")); + YAZ_CHECK(tst_ccl_query(bibset, "dc.title=(x4)", "@attr 1=/my/title x4 ")); YAZ_CHECK(tst_ccl_query(bibset, "x1 and", 0)); YAZ_CHECK(tst_ccl_query(bibset, "tix=x5", 0)); @@ -193,6 +209,14 @@ void tst1(int pass) "@prox 0 1 0 2 k 2 " "@attr 4=2 @attr 1=1016 a " "@attr 4=2 @attr 1=1016 b ")); + YAZ_CHECK(tst_ccl_query(bibset, "a%(b)", + "@prox 0 1 0 2 k 2 " + "@attr 4=2 @attr 1=1016 a " + "@attr 4=2 @attr 1=1016 b ")); + YAZ_CHECK(tst_ccl_query(bibset, "(a)%(b)", + "@prox 0 1 0 2 k 2 " + "@attr 4=2 @attr 1=1016 a " + "@attr 4=2 @attr 1=1016 b ")); YAZ_CHECK(tst_ccl_query(bibset, "a%1b", "@prox 0 1 0 2 k 2 " "@attr 4=2 @attr 1=1016 a " @@ -203,6 +227,11 @@ void tst1(int pass) "@attr 4=2 @attr 1=1016 a " "@attr 4=2 @attr 1=1016 b ")); + YAZ_CHECK(tst_ccl_query(bibset, "(a)%2(b)", + "@prox 0 2 0 2 k 2 " + "@attr 4=2 @attr 1=1016 a " + "@attr 4=2 @attr 1=1016 b ")); + YAZ_CHECK(tst_ccl_query(bibset, "a%19b", "@prox 0 19 0 2 k 2 " "@attr 4=2 @attr 1=1016 a " @@ -222,24 +251,54 @@ void tst1(int pass) "@attr 4=2 @attr 1=1016 a " "@attr 4=2 @attr 1=1016 b ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=1980", "@attr 2=3 1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=234-1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=234- 1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=234 -1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=234 - 1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=-1980", "@attr 2=2 1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "date=- 1980", "@attr 2=2 1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "x=-1980", "@attr 2=3 -1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "x=- 1980", "@attr 2=2 1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "x= -1980", "@attr 2=3 -1980 ")); - YAZ_CHECK(tst_ccl_query(bibset, "x=234-1990", "@attr 2=3 234-1990 ")); - YAZ_CHECK(tst_ccl_query(bibset, "x=234 - 1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); - 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=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 or dc.title=c)", + "@prox 0 1 0 2 k 2 " + "@attr 4=2 @attr 1=1016 a " + "@or @attr 4=2 @attr 1=1016 b " + "@attr 4=2 @attr 1=1016 @attr 1=/my/title c ")); + + YAZ_CHECK(tst_ccl_query(bibset, "(a b) % (c)", + "@prox 0 1 0 2 k 2 @and " + "@attr 4=2 @attr 1=1016 a @attr 4=2 @attr 1=1016 b " + "@attr 4=2 @attr 1=1016 c " )); + + YAZ_CHECK(tst_ccl_query(bibset, "date=1980", + "@attr 2=3 1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "(date=1980)", + "@attr 2=3 1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=234-1990", + "@and @attr 2=4 234 @attr 2=2 1990 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=234- 1990", + "@and @attr 2=4 234 @attr 2=2 1990 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=234 -1990", + "@and @attr 2=4 234 @attr 2=2 1990 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=234 - 1990", + "@and @attr 2=4 234 @attr 2=2 1990 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=-1980", + "@attr 2=2 1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "date=- 1980", + "@attr 2=2 1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "x=-1980", + "@attr 2=3 -1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "x=- 1980", + "@attr 2=2 1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "x= -1980", + "@attr 2=3 -1980 ")); + YAZ_CHECK(tst_ccl_query(bibset, "x=234-1990", + "@attr 2=3 234-1990 ")); + YAZ_CHECK(tst_ccl_query(bibset, "x=234 - 1990", + "@and @attr 2=4 234 @attr 2=2 1990 ")); + 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=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 ")); @@ -251,29 +310,45 @@ void tst1(int pass) YAZ_CHECK(tst_ccl_query(bibset, "title=a", "@attr 1=/my/title a ")); - YAZ_CHECK(tst_ccl_query(bibset, "title=a?b#\"c?\"", - "@attr 5=102 @attr 1=/my/title a.*b.c\\\\? ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=\\(", - "@attr 5=102 @attr 1=/my/title \\\\( ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=.", - "@attr 5=102 @attr 1=/my/title \\\\. ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=.", - "@attr 5=102 @attr 1=/my/title \\\\. ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=\".\"", - "@attr 5=102 @attr 1=/my/title \\\\. ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=?\\?", - "@attr 5=102 @attr 1=/my/title .*\\\\? ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=\"?\\?\"", - "@attr 5=102 @attr 1=/my/title \\\\?\\\\? ")); - - YAZ_CHECK(tst_ccl_query(bibset, "title=\\\\", - "@attr 5=102 @attr 1=/my/title \\\\\\\\ ")); + YAZ_CHECK(tst_ccl_query(bibset, "reg=a?b#\"c?\"", + "@attr 5=102 a.*b.c\\\\? ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=a?b#\"c?\"", + "@attr 5=104 a?b#c\\\\? ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=\\(", + "@attr 5=102 \\\\( ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=\\(", + "( ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=\\\"", + "\"\\\"\" ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=\\\"", + "\"\\\"\" ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=.", + "@attr 5=102 \\\\. ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=.", + ". ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=\".\"", + "@attr 5=102 \\\\. ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=\".\"", + ". ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=?\\?", + "@attr 5=102 .*\\\\? ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=?\\?", + "@attr 5=104 ?\\\\? ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=\"?\\?\"", + "@attr 5=102 \\\\?\\\\? ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=\"?\\?\"", + "@attr 5=104 \\\\?\\\\? ")); + + YAZ_CHECK(tst_ccl_query(bibset, "reg=\\\\", + "@attr 5=102 \\\\\\\\ ")); + YAZ_CHECK(tst_ccl_query(bibset, "z=\\\\", + "@attr 5=104 \\\\\\\\ ")); YAZ_CHECK(tst_ccl_query(bibset, "\\\\", "@attr 4=2 @attr 1=1016 \\\\ ")); @@ -290,9 +365,64 @@ void tst1(int pass) "@and @attr 5=1 @attr 4=2 @attr 1=1016 a " "@attr 4=2 @attr 1=1016 b? ")); + YAZ_CHECK(tst_ccl_query(bibset, "@and", + "@attr 4=2 @attr 1=1016 \\@and ")); + + YAZ_CHECK(tst_ccl_query(bibset, "a@and", + "@attr 4=2 @attr 1=1016 a@and ")); + + YAZ_CHECK(tst_ccl_query(bibset, "}", + "@attr 4=2 @attr 1=1016 } ")); + + YAZ_CHECK(tst_ccl_query(bibset, "{", + "@attr 4=2 @attr 1=1016 \"{\" ")); + + 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); @@ -301,6 +431,7 @@ int main(int argc, char **argv) tst1(1); tst1(2); tst1(3); + tst2(); YAZ_CHECK_TERM; } /*