better test coverage
[protos/libecoli.git] / lib / ecoli_node_str.c
1 /*
2  * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <errno.h>
32
33 #include <ecoli_log.h>
34 #include <ecoli_malloc.h>
35 #include <ecoli_test.h>
36 #include <ecoli_strvec.h>
37 #include <ecoli_node.h>
38 #include <ecoli_parsed.h>
39 #include <ecoli_completed.h>
40 #include <ecoli_node_str.h>
41
42 EC_LOG_TYPE_REGISTER(node_str);
43
44 struct ec_node_str {
45         struct ec_node gen;
46         char *string;
47         unsigned len;
48 };
49
50 static int
51 ec_node_str_parse(const struct ec_node *gen_node,
52                 struct ec_parsed *state,
53                 const struct ec_strvec *strvec)
54 {
55         struct ec_node_str *node = (struct ec_node_str *)gen_node;
56         const char *str;
57
58         (void)state;
59
60         if (ec_strvec_len(strvec) == 0)
61                 return EC_PARSED_NOMATCH;
62
63         str = ec_strvec_val(strvec, 0);
64         if (strcmp(str, node->string) != 0)
65                 return EC_PARSED_NOMATCH;
66
67         return 1;
68 }
69
70 static int
71 ec_node_str_complete(const struct ec_node *gen_node,
72                 struct ec_completed *completed,
73                 const struct ec_strvec *strvec)
74 {
75         struct ec_node_str *node = (struct ec_node_str *)gen_node;
76         const char *str;
77         size_t n = 0;
78
79         if (ec_strvec_len(strvec) != 1)
80                 return 0;
81
82         str = ec_strvec_val(strvec, 0);
83         for (n = 0; n < node->len; n++) {
84                 if (str[n] != node->string[n])
85                         break;
86         }
87
88         /* no completion */
89         if (str[n] != '\0')
90                 return EC_PARSED_NOMATCH;
91
92         if (ec_completed_add_item(completed, gen_node, NULL, EC_COMP_FULL,
93                                         str, node->string) < 0)
94                 return -1;
95
96         return 0;
97 }
98
99 static const char *ec_node_str_desc(const struct ec_node *gen_node)
100 {
101         struct ec_node_str *node = (struct ec_node_str *)gen_node;
102
103         return node->string;
104 }
105
106 static void ec_node_str_free_priv(struct ec_node *gen_node)
107 {
108         struct ec_node_str *node = (struct ec_node_str *)gen_node;
109
110         ec_free(node->string);
111 }
112
113 static struct ec_node_type ec_node_str_type = {
114         .name = "str",
115         .parse = ec_node_str_parse,
116         .complete = ec_node_str_complete,
117         .desc = ec_node_str_desc,
118         .size = sizeof(struct ec_node_str),
119         .free_priv = ec_node_str_free_priv,
120 };
121
122 EC_NODE_TYPE_REGISTER(ec_node_str_type);
123
124 int ec_node_str_set_str(struct ec_node *gen_node, const char *str)
125 {
126         struct ec_node_str *node = (struct ec_node_str *)gen_node;
127         int ret;
128
129         ret = ec_node_check_type(gen_node, &ec_node_str_type);
130         if (ret < 0)
131                 return ret;
132
133         if (str == NULL)
134                 return -EINVAL;
135         ec_free(node->string);
136         node->string = ec_strdup(str);
137         if (node->string == NULL)
138                 return -ENOMEM;
139
140         node->len = strlen(node->string);
141
142         return 0;
143 }
144
145 struct ec_node *ec_node_str(const char *id, const char *str)
146 {
147         struct ec_node *gen_node = NULL;
148
149         gen_node = __ec_node(&ec_node_str_type, id);
150         if (gen_node == NULL)
151                 goto fail;
152
153         if (ec_node_str_set_str(gen_node, str) < 0)
154                 goto fail;
155
156         return gen_node;
157
158 fail:
159         ec_node_free(gen_node);
160         return NULL;
161 }
162
163 /* LCOV_EXCL_START */
164 static int ec_node_str_testcase(void)
165 {
166         struct ec_node *node;
167         int ret = 0;
168
169         node = ec_node_str(EC_NO_ID, "foo");
170         if (node == NULL) {
171                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
172                 return -1;
173         }
174         EC_TEST_ASSERT(!strcmp(ec_node_desc(node), "foo"));
175         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
176         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
177         ret |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
178         ret |= EC_TEST_CHECK_PARSE(node, -1, " foo");
179         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
180         ec_node_free(node);
181
182         node = ec_node_str(EC_NO_ID, "Здравствуйте");
183         if (node == NULL) {
184                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
185                 return -1;
186         }
187         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте");
188         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте",
189                 "John!");
190         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
191         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
192         ec_node_free(node);
193
194         /* an empty string node always matches */
195         node = ec_node_str(EC_NO_ID, "");
196         if (node == NULL) {
197                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
198                 return -1;
199         }
200         ret |= EC_TEST_CHECK_PARSE(node, 1, "");
201         ret |= EC_TEST_CHECK_PARSE(node, 1, "", "foo");
202         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
203         ec_node_free(node);
204
205         /* test completion */
206         node = ec_node_str(EC_NO_ID, "foo");
207         if (node == NULL) {
208                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
209                 return -1;
210         }
211         ret |= EC_TEST_CHECK_COMPLETE(node,
212                 EC_NODE_ENDLIST,
213                 EC_NODE_ENDLIST);
214         ret |= EC_TEST_CHECK_COMPLETE(node,
215                 "", EC_NODE_ENDLIST,
216                 "foo", EC_NODE_ENDLIST);
217         ret |= EC_TEST_CHECK_COMPLETE(node,
218                 "f", EC_NODE_ENDLIST,
219                 "foo", EC_NODE_ENDLIST);
220         ret |= EC_TEST_CHECK_COMPLETE(node,
221                 "foo", EC_NODE_ENDLIST,
222                 "foo", EC_NODE_ENDLIST);
223         ret |= EC_TEST_CHECK_COMPLETE(node,
224                 "x", EC_NODE_ENDLIST,
225                 EC_NODE_ENDLIST);
226         ec_node_free(node);
227
228         return ret;
229 }
230 /* LCOV_EXCL_STOP */
231
232 static struct ec_test ec_node_str_test = {
233         .name = "node_str",
234         .test = ec_node_str_testcase,
235 };
236
237 EC_TEST_REGISTER(ec_node_str_test);