1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2008 Index Data
3 * See the file LICENSE for details.
10 #include <yaz/querytowrbuf.h>
11 #include <yaz/pquery.h>
14 int expect_pqf(const char *pqf, const char *expect_pqf, int expect_error)
16 YAZ_PQF_Parser parser = yaz_pqf_create();
18 ODR odr = odr_createmem(ODR_ENCODE);
27 rpn = yaz_pqf_parse(parser, odr, pqf);
33 int got_error = yaz_pqf_error (parser, &msg, &offset);
35 if (expect_error == got_error)
38 else if (expect_error == YAZ_PQF_ERROR_NONE)
40 WRBUF wrbuf = wrbuf_alloc();
44 yaz_rpnquery_to_wrbuf(wrbuf, rpn);
46 if (!strcmp(wrbuf_cstr(wrbuf), expect_pqf))
51 yaz_pqf_destroy(parser);
58 YAZ_CHECK(expect_pqf("a", "@attrset Bib-1 a", YAZ_PQF_ERROR_NONE));
59 YAZ_CHECK(expect_pqf("@attr 1=4 a", "@attrset Bib-1 @attr 1=4 a", YAZ_PQF_ERROR_NONE));
60 YAZ_CHECK(expect_pqf("a b", "", YAZ_PQF_ERROR_EXTRA));
61 YAZ_CHECK(expect_pqf("@and a", "", YAZ_PQF_ERROR_MISSING));
62 YAZ_CHECK(expect_pqf("@attr p=q a", "", YAZ_PQF_ERROR_BAD_INTEGER));
63 YAZ_CHECK(expect_pqf("@prox 0 0 0 0 k 0 a b",
64 "@attrset Bib-1 @prox 0 0 0 0 k 0 a b",
66 YAZ_CHECK(expect_pqf("@prox 0 0 0 0 3 0 a b", "",
67 YAZ_PQF_ERROR_PROXIMITY));
70 int main (int argc, char **argv)
72 YAZ_CHECK_INIT(argc, argv);
80 * indent-tabs-mode: nil
82 * vim: shiftwidth=4 tabstop=8 expandtab