blob: c3b3e50fd6bde1635dbb28d2f8d1e1daeb82cedf [file] [log] [blame]
Radek Krejci86d106e2018-10-18 09:53:19 +02001/*
2 * @file set.c
3 * @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 */
14
Radek Krejcif3f47842018-11-15 11:22:15 +010015#include "../../src/common.c"
16#include "../../src/log.c"
17#include "../../src/set.c"
18#include "../../src/parser_yang.c"
19#include "../../src/tree_schema.c"
Radek Krejci096235c2019-01-11 11:12:19 +010020#include "../../src/tree_schema_compile.c"
Radek Krejci19a96102018-11-15 13:38:09 +010021#include "../../src/tree_schema_free.c"
Radek Krejci86d106e2018-10-18 09:53:19 +020022#include "../../src/tree_schema_helpers.c"
Radek Krejcif3f47842018-11-15 11:22:15 +010023#include "../../src/hash_table.c"
24#include "../../src/xpath.c"
25#include "../../src/context.c"
Radek Krejci86d106e2018-10-18 09:53:19 +020026
27#include <stdarg.h>
28#include <stddef.h>
Radek Krejci3b1f9292018-11-08 10:58:35 +010029#include <stdio.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020030#include <setjmp.h>
31#include <cmocka.h>
32
33#include "libyang.h"
34
35#define BUFSIZE 1024
36char logbuf[BUFSIZE] = {0};
Radek Krejci3b1f9292018-11-08 10:58:35 +010037int store = -1; /* negative for infinite logging, positive for limited logging */
Radek Krejci86d106e2018-10-18 09:53:19 +020038
Radek Krejci313d9902018-11-08 09:42:58 +010039/* set to 0 to printing error messages to stderr instead of checking them in code */
40#define ENABLE_LOGGER_CHECKING 1
41
Radek Krejci3b1f9292018-11-08 10:58:35 +010042#if ENABLE_LOGGER_CHECKING
Radek Krejci86d106e2018-10-18 09:53:19 +020043static void
44logger(LY_LOG_LEVEL level, const char *msg, const char *path)
45{
46 (void) level; /* unused */
Radek Krejci3b1f9292018-11-08 10:58:35 +010047 if (store) {
48 if (path && path[0]) {
49 snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path);
50 } else {
51 strncpy(logbuf, msg, BUFSIZE - 1);
52 }
53 if (store > 0) {
54 --store;
55 }
56 }
Radek Krejci86d106e2018-10-18 09:53:19 +020057}
Radek Krejci3b1f9292018-11-08 10:58:35 +010058#endif
Radek Krejci86d106e2018-10-18 09:53:19 +020059
60static int
61logger_setup(void **state)
62{
63 (void) state; /* unused */
64
65 ly_set_log_clb(logger, 0);
66
67 return 0;
68}
69
Radek Krejcia3045382018-11-22 14:30:31 +010070static int
71logger_teardown(void **state)
72{
73 (void) state; /* unused */
74#if ENABLE_LOGGER_CHECKING
75 if (*state) {
76 fprintf(stderr, "%s\n", logbuf);
77 }
78#endif
79 return 0;
80}
81
Radek Krejci313d9902018-11-08 09:42:58 +010082void
83logbuf_clean(void)
84{
85 logbuf[0] = '\0';
86}
87
Radek Krejcia93621b2018-10-18 11:13:38 +020088#if ENABLE_LOGGER_CHECKING
89# define logbuf_assert(str) assert_string_equal(logbuf, str)
90#else
91# define logbuf_assert(str)
92#endif
93
Radek Krejci86d106e2018-10-18 09:53:19 +020094static void
95test_date(void **state)
96{
Radek Krejcia3045382018-11-22 14:30:31 +010097 *state = test_date;
Radek Krejci86d106e2018-10-18 09:53:19 +020098
99 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, NULL, 0, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200100 logbuf_assert("Invalid argument date (lysp_check_date()).");
Radek Krejci86d106e2018-10-18 09:53:19 +0200101 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "x", 1, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200102 logbuf_assert("Invalid argument date_len (lysp_check_date()).");
Radek Krejci86d106e2018-10-18 09:53:19 +0200103 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "nonsencexx", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200104 logbuf_assert("Invalid value \"nonsencexx\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200105 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "123x-11-11", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200106 logbuf_assert("Invalid value \"123x-11-11\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200107 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-13-11", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200108 logbuf_assert("Invalid value \"2018-13-11\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200109 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-11-41", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200110 logbuf_assert("Invalid value \"2018-11-41\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200111 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02-29", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200112 logbuf_assert("Invalid value \"2018-02-29\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200113 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018.02-28", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200114 logbuf_assert("Invalid value \"2018.02-28\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200115 assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02.28", 10, "date"));
Radek Krejcia93621b2018-10-18 11:13:38 +0200116 logbuf_assert("Invalid value \"2018-02.28\" of \"date\".");
Radek Krejci86d106e2018-10-18 09:53:19 +0200117
118 assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-11-11", 10, "date"));
119 assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-02-28", 10, "date"));
120 assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2016-02-29", 10, "date"));
Radek Krejcia3045382018-11-22 14:30:31 +0100121
122 *state = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +0200123}
124
Radek Krejcia93621b2018-10-18 11:13:38 +0200125static void
126test_revisions(void **state)
127{
128 (void) state; /* unused */
129
130 struct lysp_revision *revs = NULL, *rev;
131
Radek Krejci313d9902018-11-08 09:42:58 +0100132 logbuf_clean();
Radek Krejcia93621b2018-10-18 11:13:38 +0200133 /* no error, it just does nothing */
134 lysp_sort_revisions(NULL);
135 logbuf_assert("");
136
137 /* revisions are stored in wrong order - the newest is the last */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200138 LY_ARRAY_NEW_RET(NULL, revs, rev,);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200139 strcpy(rev->date, "2018-01-01");
Radek Krejci2c4e7172018-10-19 15:56:26 +0200140 LY_ARRAY_NEW_RET(NULL, revs, rev,);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200141 strcpy(rev->date, "2018-12-31");
Radek Krejcia93621b2018-10-18 11:13:38 +0200142
143 assert_int_equal(2, LY_ARRAY_SIZE(revs));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200144 assert_string_equal("2018-01-01", &revs[0]);
145 assert_string_equal("2018-12-31", &revs[1]);
Radek Krejcia93621b2018-10-18 11:13:38 +0200146 /* the order should be fixed, so the newest revision will be the first in the array */
147 lysp_sort_revisions(revs);
Radek Krejci2c4e7172018-10-19 15:56:26 +0200148 assert_string_equal("2018-12-31", &revs[0]);
149 assert_string_equal("2018-01-01", &revs[1]);
Radek Krejcia93621b2018-10-18 11:13:38 +0200150
Radek Krejci2c4e7172018-10-19 15:56:26 +0200151 LY_ARRAY_FREE(revs);
Radek Krejcia93621b2018-10-18 11:13:38 +0200152}
153
Radek Krejci3b1f9292018-11-08 10:58:35 +0100154static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
155 const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format,
156 const char **module_data, void (**free_module_data)(void *model_data, void *user_data))
157{
158 *module_data = user_data;
159 *format = LYS_IN_YANG;
160 *free_module_data = NULL;
161 return LY_SUCCESS;
162}
163
Radek Krejci313d9902018-11-08 09:42:58 +0100164static void
165test_typedef(void **state)
166{
Radek Krejcia3045382018-11-22 14:30:31 +0100167 *state = test_typedef;
Radek Krejci313d9902018-11-08 09:42:58 +0100168
169 struct ly_ctx *ctx = NULL;
170 const char *str;
171
172 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
173
Radek Krejci3b1f9292018-11-08 10:58:35 +0100174 str = "module a {namespace urn:a; prefix a; typedef binary {type string;}}";
175 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
176 logbuf_assert("Invalid name \"binary\" of typedef - name collision with a built-in type.");
177 str = "module a {namespace urn:a; prefix a; typedef bits {type string;}}";
178 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
179 logbuf_assert("Invalid name \"bits\" of typedef - name collision with a built-in type.");
180 str = "module a {namespace urn:a; prefix a; typedef boolean {type string;}}";
181 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
182 logbuf_assert("Invalid name \"boolean\" of typedef - name collision with a built-in type.");
183 str = "module a {namespace urn:a; prefix a; typedef decimal64 {type string;}}";
184 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
185 logbuf_assert("Invalid name \"decimal64\" of typedef - name collision with a built-in type.");
186 str = "module a {namespace urn:a; prefix a; typedef empty {type string;}}";
187 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
188 logbuf_assert("Invalid name \"empty\" of typedef - name collision with a built-in type.");
189 str = "module a {namespace urn:a; prefix a; typedef enumeration {type string;}}";
190 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
191 logbuf_assert("Invalid name \"enumeration\" of typedef - name collision with a built-in type.");
192 str = "module a {namespace urn:a; prefix a; typedef int8 {type string;}}";
193 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
194 logbuf_assert("Invalid name \"int8\" of typedef - name collision with a built-in type.");
195 str = "module a {namespace urn:a; prefix a; typedef int16 {type string;}}";
196 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
197 logbuf_assert("Invalid name \"int16\" of typedef - name collision with a built-in type.");
198 str = "module a {namespace urn:a; prefix a; typedef int32 {type string;}}";
199 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
200 logbuf_assert("Invalid name \"int32\" of typedef - name collision with a built-in type.");
201 str = "module a {namespace urn:a; prefix a; typedef int64 {type string;}}";
202 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
203 logbuf_assert("Invalid name \"int64\" of typedef - name collision with a built-in type.");
204 str = "module a {namespace urn:a; prefix a; typedef instance-identifier {type string;}}";
205 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
206 logbuf_assert("Invalid name \"instance-identifier\" of typedef - name collision with a built-in type.");
207 str = "module a {namespace urn:a; prefix a; typedef identityref {type string;}}";
208 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
209 logbuf_assert("Invalid name \"identityref\" of typedef - name collision with a built-in type.");
210 str = "module a {namespace urn:a; prefix a; typedef leafref {type string;}}";
211 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
212 logbuf_assert("Invalid name \"leafref\" of typedef - name collision with a built-in type.");
213 str = "module a {namespace urn:a; prefix a; typedef string {type int8;}}";
214 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
215 logbuf_assert("Invalid name \"string\" of typedef - name collision with a built-in type.");
216 str = "module a {namespace urn:a; prefix a; typedef union {type string;}}";
217 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
218 logbuf_assert("Invalid name \"union\" of typedef - name collision with a built-in type.");
219 str = "module a {namespace urn:a; prefix a; typedef uint8 {type string;}}";
220 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
221 logbuf_assert("Invalid name \"uint8\" of typedef - name collision with a built-in type.");
222 str = "module a {namespace urn:a; prefix a; typedef uint16 {type string;}}";
223 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
224 logbuf_assert("Invalid name \"uint16\" of typedef - name collision with a built-in type.");
225 str = "module a {namespace urn:a; prefix a; typedef uint32 {type string;}}";
226 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
227 logbuf_assert("Invalid name \"uint32\" of typedef - name collision with a built-in type.");
228 str = "module a {namespace urn:a; prefix a; typedef uint64 {type string;}}";
229 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
230 logbuf_assert("Invalid name \"uint64\" of typedef - name collision with a built-in type.");
231
232 str = "module mytypes {namespace urn:types; prefix t; typedef binary_ {type string;} typedef bits_ {type string;} typedef boolean_ {type string;} "
233 "typedef decimal64_ {type string;} typedef empty_ {type string;} typedef enumeration_ {type string;} typedef int8_ {type string;} typedef int16_ {type string;}"
234 "typedef int32_ {type string;} typedef int64_ {type string;} typedef instance-identifier_ {type string;} typedef identityref_ {type string;}"
235 "typedef leafref_ {type string;} typedef string_ {type int8;} typedef union_ {type string;} typedef uint8_ {type string;} typedef uint16_ {type string;}"
236 "typedef uint32_ {type string;} typedef uint64_ {type string;}}";
237 assert_non_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
238
Radek Krejci313d9902018-11-08 09:42:58 +0100239 str = "module a {namespace urn:a; prefix a; typedef test {type string;} typedef test {type int8;}}";
240 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
241 logbuf_assert("Invalid name \"test\" of typedef - name collision with another top-level type.");
242
243 str = "module a {namespace urn:a; prefix a; typedef x {type string;} container c {typedef x {type int8;}}}";
244 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
245 logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type.");
246
247 str = "module a {namespace urn:a; prefix a; container c {container d {typedef y {type int8;}} typedef y {type string;}}}";
248 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
249 logbuf_assert("Invalid name \"y\" of typedef - name collision with another scoped type.");
250
Radek Krejci3b1f9292018-11-08 10:58:35 +0100251 str = "module a {namespace urn:a; prefix a; container c {typedef y {type int8;} typedef y {type string;}}}";
252 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
253 logbuf_assert("Invalid name \"y\" of typedef - name collision with sibling type.");
254
255 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type string;}}");
256 str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}";
257 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
258 logbuf_assert("Invalid name \"x\" of typedef - name collision with another top-level type.");
259
260 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} container c {typedef x {type string;}}}");
261 str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}";
262 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
263 logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type.");
264
265 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type int8;}}");
266 str = "module a {namespace urn:a; prefix a; include b; container c {typedef x {type string;}}}";
267 assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG));
268 logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type.");
269
Radek Krejcia3045382018-11-22 14:30:31 +0100270 *state = NULL;
Radek Krejci313d9902018-11-08 09:42:58 +0100271 ly_ctx_destroy(ctx, NULL);
272}
273
Radek Krejcia3045382018-11-22 14:30:31 +0100274static void
275test_parse_nodeid(void **state)
276{
277 (void) state; /* unused */
278 const char *str;
279 const char *prefix, *name;
280 size_t prefix_len, name_len;
281
282 str = "123";
283 assert_int_equal(LY_EINVAL, lys_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
284
285 str = "a12_-.!";
286 assert_int_equal(LY_SUCCESS, lys_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
287 assert_null(prefix);
288 assert_int_equal(0, prefix_len);
289 assert_non_null(name);
290 assert_int_equal(6, name_len);
291 assert_int_equal(0, strncmp("a12_-.", name, name_len));
292 assert_string_equal("!", str);
293
294 str = "a12_-.:_b2 xxx";
295 assert_int_equal(LY_SUCCESS, lys_parse_nodeid(&str, &prefix, &prefix_len, &name, &name_len));
296 assert_non_null(prefix);
297 assert_int_equal(6, prefix_len);
298 assert_int_equal(0, strncmp("a12_-.", prefix, prefix_len));
299 assert_non_null(name);
300 assert_int_equal(3, name_len);
301 assert_int_equal(0, strncmp("_b2", name, name_len));
302 assert_string_equal(" xxx", str);
303}
304
Radek Krejci86d106e2018-10-18 09:53:19 +0200305int main(void)
306{
307 const struct CMUnitTest tests[] = {
Radek Krejcia3045382018-11-22 14:30:31 +0100308 cmocka_unit_test_setup_teardown(test_date, logger_setup, logger_teardown),
Radek Krejcia93621b2018-10-18 11:13:38 +0200309 cmocka_unit_test_setup(test_revisions, logger_setup),
Radek Krejcia3045382018-11-22 14:30:31 +0100310 cmocka_unit_test_setup_teardown(test_typedef, logger_setup, logger_teardown),
311 cmocka_unit_test_setup(test_parse_nodeid, logger_setup),
Radek Krejci86d106e2018-10-18 09:53:19 +0200312 };
313
314 return cmocka_run_group_tests(tests, NULL, NULL);
315}