X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftest_ccl.c;fp=test%2Ftest_ccl.c;h=853a05ad35d62b6a1b9d9de59d68f4a035c489be;hp=bcd753c283f139b3d4e9b6c0f3c1d0a6c0a99e43;hb=c95d4ba97774c6feff8579544c36bf22b5d35976;hpb=df60350f9737923dce347e59b9c4cafa789ab7aa diff --git a/test/test_ccl.c b/test/test_ccl.c index bcd753c..853a05a 100644 --- a/test/test_ccl.c +++ b/test/test_ccl.c @@ -87,6 +87,7 @@ void tst1(int pass) ccl_qual_fitem(bibset, "r=o", "x"); ccl_qual_fitem(bibset, "dc.title", "title"); ccl_qual_fitem(bibset, "s=ag", "ag"); + ccl_qual_fitem(bibset, "s=sl", "splitlist"); break; case 1: strcpy(tstline, "ti u=4 s=pw t=l,r"); @@ -118,6 +119,9 @@ void tst1(int pass) strcpy(tstline, "ag s=ag"); ccl_qual_line(bibset, tstline); + + strcpy(tstline, "splitlist s=sl"); + ccl_qual_line(bibset, tstline); break; case 2: ccl_qual_buf(bibset, "ti u=4 s=pw t=l,r\n" @@ -131,6 +135,7 @@ void tst1(int pass) "title dc.title\n" "comb term dc.title\n" "ag s=ag\n" + "splitlist s=sl\n" ); break; case 3: @@ -177,6 +182,9 @@ void tst1(int pass) " \n" " \n" " \n" + " \n" + " \n" + " \n" "\n"; doc = xmlParseMemory(xml_str, strlen(xml_str)); @@ -428,6 +436,15 @@ void tst1(int pass) YAZ_CHECK(tst_ccl_query(bibset, "ag=\"a b c\" \"d e\"", "@and @attr 4=1 \"a b c\" @attr 4=1 \"d e\" ")); + + YAZ_CHECK(tst_ccl_query(bibset, "splitlist=a", "a ")); + YAZ_CHECK(tst_ccl_query(bibset, "splitlist=a b", "@or " + "@and a b \"a b\" ")); + YAZ_CHECK(tst_ccl_query(bibset, "splitlist=a b c", "@or @or @or " + "@and @and a b c " + "@and a \"b c\" " + "@and \"a b\" c " + "\"a b c\" ")); ccl_qual_rm(&bibset); }