blob: 75235a2e411a72bf315cdc065d1c0caaa47f3d4f [file] [log] [blame]
Radek Krejci36bac2b2018-09-19 11:15:29 +02001/*
aPiecek023f83a2021-05-11 07:37:03 +02002 * @file test_common.c
Radek Krejci36bac2b2018-09-19 11:15:29 +02003 * @author: Radek Krejci <rkrejci@cesnet.cz>
4 * @brief unit tests for functions from common.c
5 *
6 * Copyright (c) 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Iša56ca9e42020-09-08 18:42:00 +020014#define _UTEST_MAIN_
Radek Krejcib4ac5a92020-11-23 17:54:33 +010015#include "utests.h"
Radek Krejci36bac2b2018-09-19 11:15:29 +020016
Radek Iša56ca9e42020-09-08 18:42:00 +020017#include "common.h"
Radek Krejcib4a4a272019-06-10 12:44:52 +020018
Radek Krejci36bac2b2018-09-19 11:15:29 +020019static void
Radek Iša56ca9e42020-09-08 18:42:00 +020020test_utf8(void **UNUSED(state))
Radek Krejci44ceedc2018-10-02 15:54:31 +020021{
Radek Krejci44ceedc2018-10-02 15:54:31 +020022 char buf[5] = {0};
23 const char *str = buf;
24 unsigned int c;
25 size_t len;
26
27 /* test invalid UTF-8 characters in lyxml_getutf8
28 * - https://en.wikipedia.org/wiki/UTF-8 */
Michal Vasko7980d9c2021-09-22 12:18:46 +020029 buf[0] = (char)0x04;
Radek Krejci44ceedc2018-10-02 15:54:31 +020030 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
Michal Vasko7980d9c2021-09-22 12:18:46 +020031 buf[0] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020032 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
33
Michal Vasko7980d9c2021-09-22 12:18:46 +020034 buf[0] = (char)0xc0;
35 buf[1] = (char)0x00;
Radek Krejci44ceedc2018-10-02 15:54:31 +020036 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
Michal Vasko7980d9c2021-09-22 12:18:46 +020037 buf[1] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020038 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
39
Michal Vasko7980d9c2021-09-22 12:18:46 +020040 buf[0] = (char)0xe0;
41 buf[1] = (char)0x00;
42 buf[2] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020043 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
Michal Vasko7980d9c2021-09-22 12:18:46 +020044 buf[1] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020045 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
46
Michal Vasko7980d9c2021-09-22 12:18:46 +020047 buf[0] = (char)0xf0;
48 buf[1] = (char)0x00;
49 buf[2] = (char)0x80;
50 buf[3] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020051 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
Michal Vasko7980d9c2021-09-22 12:18:46 +020052 buf[1] = (char)0x80;
Radek Krejci44ceedc2018-10-02 15:54:31 +020053 assert_int_equal(LY_EINVAL, ly_getutf8(&str, &c, &len));
54}
55
Radek Krejci36bac2b2018-09-19 11:15:29 +020056static void
Radek Iša56ca9e42020-09-08 18:42:00 +020057test_parse_int(void **UNUSED(state))
Radek Krejci36bac2b2018-09-19 11:15:29 +020058{
Radek Krejci9ea8ca12019-06-10 13:11:55 +020059 const char *str;
60 int64_t i = 500;
61
62 str = "10";
63 assert_int_equal(LY_SUCCESS, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
64 assert_int_equal(i, 10);
65
66 /* leading zeros are allowed, trailing whitespaces are allowed */
67 str = "000\n\t ";
68 assert_int_equal(LY_SUCCESS, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
69 assert_int_equal(i, 0);
70
71 /* negative value */
72 str = "-10";
73 assert_int_equal(LY_SUCCESS, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
74 assert_int_equal(i, -10);
75
76 /* non-NULL terminated string */
77 str = "+5sometext";
78 assert_int_equal(LY_SUCCESS, ly_parse_int(str, 2, -10, 10, 10, &i));
79 assert_int_equal(i, 5);
80
81 /* out of bounds value */
82 str = "11";
83 assert_int_equal(LY_EDENIED, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
84 str = "-11";
85 assert_int_equal(LY_EDENIED, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
86
87 /* NaN */
88 str = "zero";
89 assert_int_equal(LY_EVALID, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
90
91 /* mixing number with text */
92 str = "10zero";
93 assert_int_equal(LY_EVALID, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
94
95 str = "10 zero";
96 assert_int_equal(LY_EVALID, ly_parse_int(str, strlen(str), -10, 10, 10, &i));
Radek Krejci9ea8ca12019-06-10 13:11:55 +020097}
98
99static void
Radek Iša56ca9e42020-09-08 18:42:00 +0200100test_parse_uint(void **UNUSED(state))
Radek Krejci9ea8ca12019-06-10 13:11:55 +0200101{
Radek Krejci9ea8ca12019-06-10 13:11:55 +0200102 const char *str;
103 uint64_t u = 500;
104
105 str = "10";
106 assert_int_equal(LY_SUCCESS, ly_parse_uint(str, strlen(str), 10, 10, &u));
107 assert_int_equal(u, 10);
108
109 /* leading zeros are allowed, trailing whitespaces are allowed */
110 str = "000\n\t ";
111 assert_int_equal(LY_SUCCESS, ly_parse_uint(str, strlen(str), 10, 10, &u));
112 assert_int_equal(u, 0);
113 /* non-NULL terminated string */
114 str = "+5sometext";
115 assert_int_equal(LY_SUCCESS, ly_parse_uint(str, 2, 10, 10, &u));
116 assert_int_equal(u, 5);
117
118 /* out of bounds value */
119 str = "11";
120 assert_int_equal(LY_EDENIED, ly_parse_uint(str, strlen(str), 10, 10, &u));
121 str = "-1";
122 assert_int_equal(LY_EDENIED, ly_parse_uint(str, strlen(str), (uint64_t)-1, 10, &u));
123
124 /* NaN */
125 str = "zero";
126 assert_int_equal(LY_EVALID, ly_parse_uint(str, strlen(str), 10, 10, &u));
127
128 /* mixing number with text */
129 str = "10zero";
130 assert_int_equal(LY_EVALID, ly_parse_uint(str, strlen(str), 10, 10, &u));
131
132 str = "10 zero";
133 assert_int_equal(LY_EVALID, ly_parse_uint(str, strlen(str), 10, 10, &u));
Radek Krejci9ea8ca12019-06-10 13:11:55 +0200134}
135
136static void
Radek Iša56ca9e42020-09-08 18:42:00 +0200137test_parse_nodeid(void **UNUSED(state))
Radek Krejcib4a4a272019-06-10 12:44:52 +0200138{
Radek Krejcib4a4a272019-06-10 12:44:52 +0200139 const char *str;
140 const char *prefix, *name;
141 size_t prefix_len, name_len;
142
143 str = "123";
144 assert_int_equal(LY_EINVAL, ly_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
145
146 str = "a12_-.!";
147 assert_int_equal(LY_SUCCESS, ly_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
148 assert_null(prefix);
149 assert_int_equal(0, prefix_len);
150 assert_non_null(name);
151 assert_int_equal(6, name_len);
152 assert_int_equal(0, strncmp("a12_-.", name, name_len));
153 assert_string_equal("!", str);
154
155 str = "a12_-.:_b2 xxx";
156 assert_int_equal(LY_SUCCESS, ly_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
157 assert_non_null(prefix);
158 assert_int_equal(6, prefix_len);
159 assert_int_equal(0, strncmp("a12_-.", prefix, prefix_len));
160 assert_non_null(name);
161 assert_int_equal(3, name_len);
162 assert_int_equal(0, strncmp("_b2", name, name_len));
163 assert_string_equal(" xxx", str);
Radek Krejci10bfdf82019-06-10 14:08:13 +0200164}
165
166static void
Radek Iša56ca9e42020-09-08 18:42:00 +0200167test_parse_instance_predicate(void **UNUSED(state))
Radek Krejci10bfdf82019-06-10 14:08:13 +0200168{
Radek Krejci10bfdf82019-06-10 14:08:13 +0200169 const char *str, *errmsg;
170 const char *prefix, *id, *value;
171 size_t prefix_len, id_len, value_len;
172
173 str = "[ex:name='fred']";
Radek Krejci084289f2019-07-09 17:35:30 +0200174 assert_int_equal(LY_SUCCESS, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200175 assert_string_equal(str, "");
176 assert_string_equal(prefix, "ex:name='fred']");
177 assert_int_equal(prefix_len, 2);
178 assert_string_equal(id, "name='fred']");
179 assert_int_equal(id_len, 4);
180 assert_string_equal(value, "fred']");
181 assert_int_equal(value_len, 4);
182
183 str = "[ex:ip = \"[192.0.2.1]\"][ex:port='80']";
Radek Krejci084289f2019-07-09 17:35:30 +0200184 assert_int_equal(LY_SUCCESS, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200185 assert_string_equal(str, "[ex:port='80']");
186 assert_string_equal(prefix, "ex:ip = \"[192.0.2.1]\"][ex:port='80']");
187 assert_int_equal(prefix_len, 2);
188 assert_string_equal(id, "ip = \"[192.0.2.1]\"][ex:port='80']");
189 assert_int_equal(id_len, 2);
190 assert_string_equal(value, "[192.0.2.1]\"][ex:port='80']");
191 assert_int_equal(value_len, 11);
192
193 str = "[. = 'blowfish-cbc']";
Radek Krejci084289f2019-07-09 17:35:30 +0200194 assert_int_equal(LY_SUCCESS, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200195 assert_string_equal(str, "");
196 assert_null(prefix);
197 assert_int_equal(prefix_len, 0);
198 assert_string_equal(id, ". = 'blowfish-cbc']");
199 assert_int_equal(id_len, 1);
200 assert_string_equal(value, "blowfish-cbc']");
201 assert_int_equal(value_len, 12);
202
203 str = "[ 3 ]";
Radek Krejci084289f2019-07-09 17:35:30 +0200204 assert_int_equal(LY_SUCCESS, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200205 assert_string_equal(str, "");
206 assert_null(prefix);
207 assert_int_equal(prefix_len, 0);
208 assert_null(id);
209 assert_int_equal(id_len, 0);
210 assert_string_equal(value, "3 ]");
211 assert_int_equal(value_len, 1);
212
213 /* invalid predicates */
214 /* position must be positive integer */
215 str = "[0]";
Radek Krejci084289f2019-07-09 17:35:30 +0200216 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200217 assert_string_equal(errmsg, "The position predicate cannot be zero.");
218 str = "[-1]";
Radek Krejci084289f2019-07-09 17:35:30 +0200219 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200220 assert_string_equal(errmsg, "Invalid instance predicate format (negative position or invalid node-identifier).");
221
222 /* invalid node-identifier */
223 str = "[$node='value']";
Radek Krejci084289f2019-07-09 17:35:30 +0200224 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200225 assert_string_equal(errmsg, "Invalid node-identifier.");
226 str = "[.node='value']";
Radek Krejci084289f2019-07-09 17:35:30 +0200227 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200228 assert_string_equal(errmsg, "Unexpected character instead of '=' in leaf-list-predicate.");
229 str = "[13node='value']";
Radek Krejci084289f2019-07-09 17:35:30 +0200230 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200231 assert_string_equal(errmsg, "Predicate (pos) is not terminated by \']\' character.");
232
Radek Krejci084289f2019-07-09 17:35:30 +0200233 str = "[ex:node]";
234 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200235 assert_string_equal(errmsg, "Unexpected character instead of '=' in key-predicate.");
236
Radek Krejci084289f2019-07-09 17:35:30 +0200237 str = "[ex:node= value]";
238 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200239 assert_string_equal(errmsg, "String value is not quoted.");
240
Radek Krejci084289f2019-07-09 17:35:30 +0200241 str = "[ex:node='value\"]";
242 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200243 assert_string_equal(errmsg, "Value is not terminated quoted-string.");
244
Radek Krejci084289f2019-07-09 17:35:30 +0200245 str = "[ex:node='value ]";
246 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200247 assert_string_equal(errmsg, "Value is not terminated quoted-string.");
248
Radek Krejci084289f2019-07-09 17:35:30 +0200249 str = "[ex:node=\"value\"[3]";
250 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200251 assert_string_equal(errmsg, "Predicate (key-predicate) is not terminated by \']\' character.");
252 str = "[.=\"value\"[3]";
Radek Krejci084289f2019-07-09 17:35:30 +0200253 assert_int_equal(LY_EVALID, ly_parse_instance_predicate(&str, strlen(str), LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200254 assert_string_equal(errmsg, "Predicate (leaf-list-predicate) is not terminated by \']\' character.");
255
Radek Krejci084289f2019-07-09 17:35:30 +0200256 /* the limit of the string is too short, it ends one character earlier */
257 str = "[ex:node='value']";
258 assert_int_equal(LY_EINVAL, ly_parse_instance_predicate(&str, strlen(str) - 1, LYD_XML, &prefix, &prefix_len, &id, &id_len, &value, &value_len, &errmsg));
Radek Krejci10bfdf82019-06-10 14:08:13 +0200259 assert_string_equal(errmsg, "Predicate is incomplete.");
Radek Krejcib4a4a272019-06-10 12:44:52 +0200260}
261
aPiecekf0d81232021-03-30 12:19:59 +0200262static void
263test_value_prefix_next(void **UNUSED(state))
264{
265 const char *next;
266 ly_bool is_prefix;
aPieceke3f828d2021-05-10 15:34:41 +0200267 uint32_t bytes;
aPiecekf0d81232021-03-30 12:19:59 +0200268
aPieceke3f828d2021-05-10 15:34:41 +0200269 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(NULL, NULL, &bytes, &is_prefix, &next));
270 assert_int_equal(0, bytes);
271 assert_int_equal(LY_SUCCESS, ly_value_prefix_next("", NULL, &bytes, &is_prefix, &next));
272 assert_int_equal(0, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200273
274 /* prefix */
275 next = "pref:";
aPieceke3f828d2021-05-10 15:34:41 +0200276 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
277 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200278 assert_null(next);
279 assert_int_equal(1, is_prefix);
280
281 /* no-prefix */
282 next = "node";
aPieceke3f828d2021-05-10 15:34:41 +0200283 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
284 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200285 assert_null(next);
286 assert_int_equal(0, is_prefix);
287
288 /* no-prefix */
289 next = "::::";
aPieceke3f828d2021-05-10 15:34:41 +0200290 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
291 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200292 assert_null(next);
293 assert_int_equal(0, is_prefix);
294
295 /* no-prefix */
296 next = "//a/:";
aPieceke3f828d2021-05-10 15:34:41 +0200297 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
298 assert_int_equal(5, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200299 assert_null(next);
300 assert_int_equal(0, is_prefix);
301
302 /* no-prefix */
303 next = "//a//";
aPieceke3f828d2021-05-10 15:34:41 +0200304 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
305 assert_int_equal(5, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200306 assert_null(next);
307 assert_int_equal(0, is_prefix);
308
309 /* prefix, prefix */
310 next = "pref1:pref2:";
aPieceke3f828d2021-05-10 15:34:41 +0200311 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
312 assert_int_equal(5, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200313 assert_string_equal(next, "pref2:");
314 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200315 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
316 assert_int_equal(5, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200317 assert_null(next);
318 assert_int_equal(1, is_prefix);
319
320 /* prefix, no-prefix */
321 next = "pref:node";
aPieceke3f828d2021-05-10 15:34:41 +0200322 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
323 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200324 assert_string_equal(next, "node");
325 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200326 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
327 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200328 assert_null(next);
329 assert_int_equal(0, is_prefix);
330
331 /* no-prefix, prefix */
332 next = "/pref:";
aPieceke3f828d2021-05-10 15:34:41 +0200333 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
334 assert_int_equal(1, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200335 assert_string_equal(next, "pref:");
336 assert_int_equal(0, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200337 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
338 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200339 assert_null(next);
340 assert_int_equal(1, is_prefix);
341
342 /* no-prefix, prefix */
343 next = "//pref:";
aPieceke3f828d2021-05-10 15:34:41 +0200344 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
345 assert_int_equal(2, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200346 assert_string_equal(next, "pref:");
347 assert_int_equal(0, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200348 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
349 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200350 assert_null(next);
351 assert_int_equal(1, is_prefix);
352
353 /* no-prefix, prefix, no-prefix */
Radek Krejci12a28c72021-04-06 17:23:37 +0200354 next = "/pref:node";
aPieceke3f828d2021-05-10 15:34:41 +0200355 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
356 assert_int_equal(1, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200357 assert_string_equal(next, "pref:node");
358 assert_int_equal(0, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200359 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
360 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200361 assert_string_equal(next, "node");
362 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200363 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
364 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200365 assert_null(next);
366 assert_int_equal(0, is_prefix);
367
368 /* prefix, no-prefix, prefix */
Radek Krejci12a28c72021-04-06 17:23:37 +0200369 next = "pref:node pref:";
aPieceke3f828d2021-05-10 15:34:41 +0200370 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
371 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200372 assert_string_equal(next, "node pref:");
373 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200374 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
375 assert_int_equal(5, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200376 assert_string_equal(next, "pref:");
377 assert_int_equal(0, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200378 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
379 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200380 assert_null(next);
381 assert_int_equal(1, is_prefix);
382
383 /* prefix, no-prefix, prefix, no-prefix */
384 next = "pref:node /pref:node";
aPieceke3f828d2021-05-10 15:34:41 +0200385 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
386 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200387 assert_string_equal(next, "node /pref:node");
388 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200389 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
390 assert_int_equal(6, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200391 assert_string_equal(next, "pref:node");
392 assert_int_equal(0, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200393 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
394 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200395 assert_string_equal(next, "node");
396 assert_int_equal(1, is_prefix);
aPieceke3f828d2021-05-10 15:34:41 +0200397 assert_int_equal(LY_SUCCESS, ly_value_prefix_next(next, NULL, &bytes, &is_prefix, &next));
398 assert_int_equal(4, bytes);
aPiecekf0d81232021-03-30 12:19:59 +0200399 assert_null(next);
400 assert_int_equal(0, is_prefix);
401}
402
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100403int
404main(void)
Radek Krejci36bac2b2018-09-19 11:15:29 +0200405{
406 const struct CMUnitTest tests[] = {
Radek Iša56ca9e42020-09-08 18:42:00 +0200407 UTEST(test_utf8),
408 UTEST(test_parse_int),
409 UTEST(test_parse_uint),
410 UTEST(test_parse_nodeid),
411 UTEST(test_parse_instance_predicate),
aPiecekf0d81232021-03-30 12:19:59 +0200412 UTEST(test_value_prefix_next),
Radek Krejci36bac2b2018-09-19 11:15:29 +0200413 };
414
415 return cmocka_run_group_tests(tests, NULL, NULL);
416}