X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstodrstack.c;h=06b724afca5dc39bd99ad862429a2bd2ef981e9d;hb=64e2bb98a2ecd300fc2819c2cbb0b72901f85fa6;hp=8088c1902c7f547fb4a5458328151dcc5ff38d21;hpb=be5342e415872d9f43511f7b68fbcec42dc2c0a7;p=yaz-moved-to-github.git diff --git a/test/tstodrstack.c b/test/tstodrstack.c index 8088c19..06b724a 100644 --- a/test/tstodrstack.c +++ b/test/tstodrstack.c @@ -2,19 +2,52 @@ #include #include +/** \brief build a 100 level query */ void test1() { ODR odr = odr_createmem(ODR_ENCODE); YAZ_PQF_Parser parser = yaz_pqf_create(); Z_RPNQuery *rpn_query; + char qstr[10000]; + int i; + + *qstr = '\0'; + for (i = 0; i<100; i++) + strcat(qstr, "@and 1 "); + strcat(qstr, "1"); + + rpn_query = yaz_pqf_parse (parser, odr, qstr); + + if (!rpn_query) + exit(1); + + if (!z_RPNQuery(odr, &rpn_query, 0, 0)) + { + odr_perror(odr, "Encoding query"); + exit(1); + } + + yaz_pqf_destroy(parser); + odr_destroy(odr); +} + +/** \brief build a circular referenced query */ +void test2() +{ + ODR odr = odr_createmem(ODR_ENCODE); + YAZ_PQF_Parser parser = yaz_pqf_create(); + Z_RPNQuery *rpn_query; rpn_query = yaz_pqf_parse (parser, odr, "@and @and a b c"); if (!rpn_query) exit(1); + + /* make a bad recursive refernce */ rpn_query->RPNStructure->u.complex->s1 = rpn_query->RPNStructure; - z_RPNQuery(odr, &rpn_query, 0, 0); + if (!z_RPNQuery(odr, &rpn_query, 0, 0)) + odr_perror(odr, "Encoding query"); yaz_pqf_destroy(parser); odr_destroy(odr); @@ -23,6 +56,7 @@ void test1() int main(int argc, char **argv) { test1(); + test2(); exit(0); } /*