New functions yaz_sort_spec_to_{cql,type7}
[yaz-moved-to-github.git] / test / test_sortspec.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2011 Index Data
3  * See the file LICENSE for details.
4  */
5 #if HAVE_CONFIG_H
6 #include <config.h>
7 #endif
8
9 #include <string.h>
10 #include <yaz/wrbuf.h>
11 #include <yaz/sortspec.h>
12 #include <yaz/log.h>
13 #include <yaz/test.h>
14
15 static int cql(const char *arg, const char *expected_result)
16 {
17     ODR odr = odr_createmem(ODR_ENCODE);
18     Z_SortKeySpecList *sort_spec = yaz_sort_spec(odr, arg);
19     int ret = 0;
20
21     if (!sort_spec)
22     {
23         yaz_log(YLOG_WARN, "yaz_sort_spec : parse error: %s", arg);
24     }
25     else
26     {
27         WRBUF w = wrbuf_alloc();
28         int r = yaz_sort_spec_to_cql(sort_spec, w);
29
30         if (!expected_result && r)
31             ret = 1;
32         else if (expected_result && r == 0)
33         {
34             if (strcmp(wrbuf_cstr(w), expected_result) == 0)
35                 ret = 1;
36             else
37             {
38                 yaz_log(YLOG_WARN, "sort: diff: %s", arg);
39                 yaz_log(YLOG_WARN, " expected %s", expected_result);
40                 yaz_log(YLOG_WARN, " got      %s", wrbuf_cstr(w));
41             }
42         }
43         else if (r)
44         {
45             yaz_log(YLOG_WARN, "sort: diff %s", arg);
46             yaz_log(YLOG_WARN, " expected %s", expected_result);
47             yaz_log(YLOG_WARN, " got error %d", r);
48         }
49         else if (r == 0)
50         {
51             yaz_log(YLOG_WARN, "sort: diff %s", arg);
52             yaz_log(YLOG_WARN, " expected error");
53             yaz_log(YLOG_WARN, " got %s", wrbuf_cstr(w));
54         }
55         wrbuf_destroy(w);
56     }
57     odr_destroy(odr);
58     return ret;
59 }
60
61 static int type7(const char *arg, const char *expected_result)
62 {
63     ODR odr = odr_createmem(ODR_ENCODE);
64     Z_SortKeySpecList *sort_spec = yaz_sort_spec(odr, arg);
65     int ret = 0;
66
67     if (!sort_spec)
68     {
69         yaz_log(YLOG_WARN, "yaz_sort_spec : parse error: %s", arg);
70     }
71     else
72     {
73         WRBUF w = wrbuf_alloc();
74         int r;
75
76         wrbuf_puts(w, "q");
77         r = yaz_sort_spec_to_type7(sort_spec, w);
78
79         if (!expected_result && r)
80             ret = 1;
81         else if (expected_result && r == 0)
82         {
83             if (strcmp(wrbuf_cstr(w), expected_result) == 0)
84                 ret = 1;
85             else
86             {
87                 yaz_log(YLOG_WARN, "sort: diff: %s", arg);
88                 yaz_log(YLOG_WARN, " expected %s", expected_result);
89                 yaz_log(YLOG_WARN, " got      %s", wrbuf_cstr(w));
90             }
91         }
92         else if (r)
93         {
94             yaz_log(YLOG_WARN, "sort: diff %s", arg);
95             yaz_log(YLOG_WARN, " expected %s", expected_result);
96             yaz_log(YLOG_WARN, " got error %d", r);
97         }
98         else if (r == 0)
99         {
100             yaz_log(YLOG_WARN, "sort: diff %s", arg);
101             yaz_log(YLOG_WARN, " expected error");
102             yaz_log(YLOG_WARN, " got %s", wrbuf_cstr(w));
103         }
104         wrbuf_destroy(w);
105     }
106     odr_destroy(odr);
107     return ret;
108 }
109
110 static void tst(void)
111 {
112     YAZ_CHECK(cql("title a",
113                   " SORTBY title/ascending/ignoreCase"));
114     YAZ_CHECK(cql("title a date ds",
115                   " SORTBY title/ascending/ignoreCase"
116                   " date/descending/respectCase"));
117     YAZ_CHECK(cql("1=4,2=3 a", 0));
118
119     YAZ_CHECK(type7("title a",
120                   "@or q @attr 1=title @attr 7=1 0"));
121     YAZ_CHECK(type7("title a date ds",
122                     "@or @or q @attr 1=title @attr 7=1 0"
123                     " @attr 1=date @attr 7=2 1"));
124     YAZ_CHECK(type7("1=4,2=3 a",
125                   "@or q @attr 1=4 @attr 2=3 @attr 7=1 0"));
126 }
127
128 int main(int argc, char **argv)
129 {
130     YAZ_CHECK_INIT(argc, argv);
131     YAZ_CHECK_LOG();
132     tst();
133     YAZ_CHECK_TERM;
134 }
135 /*
136  * Local variables:
137  * c-basic-offset: 4
138  * c-file-style: "Stroustrup"
139  * indent-tabs-mode: nil
140  * End:
141  * vim: shiftwidth=4 tabstop=8 expandtab
142  */
143