blob: a5ad4712910595ee66c5e92af67ab45596cb1a2d [file] [log] [blame]
Radek Krejci1e880032018-09-20 12:17:12 +02001/*
2 * @file set.c
3 * @author: Radek Krejci <rkrejci@cesnet.cz>
4 * @brief unit tests for functions from context.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
15#include "tests/config.h"
16#include "../../src/context.c"
Radek Krejcib7db73a2018-10-24 14:18:40 +020017#include "../../src/tree_schema.c"
Radek Krejci1e880032018-09-20 12:17:12 +020018
19#include <stdarg.h>
20#include <stddef.h>
21#include <setjmp.h>
22#include <cmocka.h>
23
24#include <string.h>
25#include <stdio.h>
26
27#include "libyang.h"
28
29#define BUFSIZE 1024
30char logbuf[BUFSIZE] = {0};
31
32/* set to 0 to printing error messages to stderr instead of checking them in code */
33#define ENABLE_LOGGER_CHECKING 1
34
35static void
36logger(LY_LOG_LEVEL level, const char *msg, const char *path)
37{
38 (void) level; /* unused */
39 (void) path; /* unused */
40
41 strncpy(logbuf, msg, BUFSIZE - 1);
42}
43
44static int
45logger_setup(void **state)
46{
47 (void) state; /* unused */
48#if ENABLE_LOGGER_CHECKING
49 ly_set_log_clb(logger, 0);
50#endif
51 return 0;
52}
53
54#if ENABLE_LOGGER_CHECKING
55# define logbuf_assert(str) assert_string_equal(logbuf, str)
56#else
57# define logbuf_assert(str)
58#endif
59
60int __real_ly_set_add(struct ly_set *set, void *object, int options);
61int __wrap_ly_set_add(struct ly_set *set, void *object, int options)
62{
63 int wrap = mock_type(int);
64
65 if (wrap) {
66 /* error */
67 return -1;
68 } else {
69 return __real_ly_set_add(set, object, options);
70 }
71}
72
73static void
74test_searchdirs(void **state)
75{
76 (void) state; /* unused */
77
78 struct ly_ctx *ctx;
79 const char * const *list;
80
Radek Krejcib7db73a2018-10-24 14:18:40 +020081 will_return_count(__wrap_ly_set_add, 0, 6);
Radek Krejci1e880032018-09-20 12:17:12 +020082 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx));
83
84 /* invalid arguments */
85 assert_int_equal(LY_EINVAL, ly_ctx_set_searchdir(NULL, NULL));
86 logbuf_assert("Invalid argument ctx (ly_ctx_set_searchdir()).");
87 assert_null(ly_ctx_get_searchdirs(NULL));
88 logbuf_assert("Invalid argument ctx (ly_ctx_get_searchdirs()).");
Radek Krejci0759b792018-09-20 13:53:15 +020089 assert_int_equal(LY_EINVAL, ly_ctx_unset_searchdirs(NULL, NULL));
Radek Krejci1e880032018-09-20 12:17:12 +020090 logbuf_assert("Invalid argument ctx (ly_ctx_unset_searchdirs()).");
Radek Krejci1e880032018-09-20 12:17:12 +020091
92 /* readable and executable, but not a directory */
93 assert_int_equal(LY_EINVAL, ly_ctx_set_searchdir(ctx, TESTS_BIN"/src_context"));
94 logbuf_assert("Given search directory \""TESTS_BIN"/src_context\" is not a directory.");
95 /* not executable */
Radek Krejci9efa87a2018-09-26 15:14:03 +020096 assert_int_equal(LY_EINVAL, ly_ctx_set_searchdir(ctx, __FILE__));
97 logbuf_assert("Unable to use search directory \""__FILE__"\" (Permission denied)");
Radek Krejci1e880032018-09-20 12:17:12 +020098 /* not existing */
99 assert_int_equal(LY_EINVAL, ly_ctx_set_searchdir(ctx, "/nonexistingfile"));
100 logbuf_assert("Unable to use search directory \"/nonexistingfile\" (No such file or directory)");
101
102 /* ly_set_add() fails */
103 will_return(__wrap_ly_set_add, 1);
104 assert_int_equal(LY_EMEM, ly_ctx_set_searchdir(ctx, TESTS_BIN"/src"));
105
Radek Krejcia77e0e12018-09-20 12:39:15 +0200106 /* no change */
107 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, NULL));
108
Radek Krejci1e880032018-09-20 12:17:12 +0200109 /* correct path */
110 will_return_always(__wrap_ly_set_add, 0);
111 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_BIN"/src"));
112 assert_int_equal(1, ctx->search_paths.count);
113 assert_string_equal(TESTS_BIN"/src", ctx->search_paths.objs[0]);
114
Radek Krejci14946ab2018-09-20 13:42:06 +0200115 /* duplicated paths */
116 assert_int_equal(LY_EEXIST, ly_ctx_set_searchdir(ctx, TESTS_BIN"/src"));
Radek Krejci1e880032018-09-20 12:17:12 +0200117 assert_int_equal(1, ctx->search_paths.count);
118 assert_string_equal(TESTS_BIN"/src", ctx->search_paths.objs[0]);
119
120 /* another paths - add 8 to fill the initial buffer of the searchpaths list */
121 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_BIN"/CMakeFiles"));
122 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_SRC"/../src"));
123 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_SRC"/../CMakeModules"));
124 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_SRC"/../doc"));
125 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_SRC));
126 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, TESTS_BIN));
127 assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(ctx, "/tmp"));
128 assert_int_equal(8, ctx->search_paths.count);
129
130 /* get searchpaths */
131 list = ly_ctx_get_searchdirs(ctx);
132 assert_non_null(list);
133 assert_string_equal(TESTS_BIN"/src", list[0]);
134 assert_string_equal(TESTS_BIN"/CMakeFiles", list[1]);
135 assert_string_equal(TESTS_SRC, list[5]);
136 assert_string_equal(TESTS_BIN, list[6]);
137 assert_string_equal("/tmp", list[7]);
138 assert_null(list[8]);
139
140 /* removing searchpaths */
Radek Krejci0759b792018-09-20 13:53:15 +0200141 /* nonexisting */
142 assert_int_equal(LY_EINVAL, ly_ctx_unset_searchdirs(ctx, "/nonexistingfile"));
143 logbuf_assert("Invalid argument value (ly_ctx_unset_searchdirs()).");
Radek Krejci1e880032018-09-20 12:17:12 +0200144 /* first */
Radek Krejci0759b792018-09-20 13:53:15 +0200145 assert_int_equal(LY_SUCCESS, ly_ctx_unset_searchdirs(ctx, TESTS_BIN"/src"));
Radek Krejci1e880032018-09-20 12:17:12 +0200146 assert_string_not_equal(TESTS_BIN"/src", list[0]);
147 assert_int_equal(7, ctx->search_paths.count);
148 /* middle */
Radek Krejci0759b792018-09-20 13:53:15 +0200149 assert_int_equal(LY_SUCCESS, ly_ctx_unset_searchdirs(ctx, TESTS_SRC));
Radek Krejci1e880032018-09-20 12:17:12 +0200150 assert_int_equal(6, ctx->search_paths.count);
151 /* last */
Radek Krejci0759b792018-09-20 13:53:15 +0200152 assert_int_equal(LY_SUCCESS, ly_ctx_unset_searchdirs(ctx, "/tmp"));
Radek Krejci1e880032018-09-20 12:17:12 +0200153 assert_int_equal(5, ctx->search_paths.count);
154 /* all */
Radek Krejci0759b792018-09-20 13:53:15 +0200155 assert_int_equal(LY_SUCCESS, ly_ctx_unset_searchdirs(ctx, NULL));
Radek Krejci1e880032018-09-20 12:17:12 +0200156 assert_int_equal(0, ctx->search_paths.count);
157
Radek Krejci555c9bb2018-09-20 12:45:13 +0200158 /* again - no change */
Radek Krejci0759b792018-09-20 13:53:15 +0200159 assert_int_equal(LY_SUCCESS, ly_ctx_unset_searchdirs(ctx, NULL));
Radek Krejci555c9bb2018-09-20 12:45:13 +0200160
161 /* cleanup */
162 ly_ctx_destroy(ctx, NULL);
163
164 /* test searchdir list in ly_ctx_new() */
165 assert_int_equal(LY_EINVAL, ly_ctx_new("/nonexistingfile", 0, &ctx));
166 logbuf_assert("Unable to use search directory \"/nonexistingfile\" (No such file or directory)");
Radek Krejci51d341d2018-09-20 14:26:41 +0200167 assert_int_equal(LY_SUCCESS, ly_ctx_new(TESTS_SRC":/tmp:/tmp:"TESTS_SRC, 0, &ctx));
Radek Krejci555c9bb2018-09-20 12:45:13 +0200168 assert_int_equal(2, ctx->search_paths.count);
169 assert_string_equal(TESTS_SRC, ctx->search_paths.objs[0]);
170 assert_string_equal("/tmp", ctx->search_paths.objs[1]);
171
172 /* cleanup */
Radek Krejci1e880032018-09-20 12:17:12 +0200173 ly_ctx_destroy(ctx, NULL);
174}
175
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200176static void
177test_options(void **state)
178{
179 (void) state; /* unused */
180
181 struct ly_ctx *ctx;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200182
183 will_return_always(__wrap_ly_set_add, 0);
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200184 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0xffffffff, &ctx));
185
Radek Krejci962a8102018-09-20 14:21:06 +0200186 /* invalid arguments */
187 assert_int_equal(0, ly_ctx_get_options(NULL));
188 logbuf_assert("Invalid argument ctx (ly_ctx_get_options()).");
189
190 assert_int_equal(LY_EINVAL, ly_ctx_set_option(NULL, 0));
191 logbuf_assert("Invalid argument ctx (ly_ctx_set_option()).");
192 assert_int_equal(LY_EINVAL, ly_ctx_unset_option(NULL, 0));
193 logbuf_assert("Invalid argument ctx (ly_ctx_unset_option()).");
194
195 /* option not allowed to be changed */
196 assert_int_equal(LY_EINVAL, ly_ctx_set_option(ctx, LY_CTX_NOYANGLIBRARY));
197 logbuf_assert("Invalid argument option (ly_ctx_set_option()).");
198 assert_int_equal(LY_EINVAL, ly_ctx_set_option(ctx, LY_CTX_NOYANGLIBRARY));
199 logbuf_assert("Invalid argument option (ly_ctx_set_option()).");
200
201
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200202 /* unset */
203 /* LY_CTX_ALLIMPLEMENTED */
204 assert_int_not_equal(0, ctx->flags & LY_CTX_ALLIMPLEMENTED);
Radek Krejci962a8102018-09-20 14:21:06 +0200205 assert_int_equal(LY_SUCCESS, ly_ctx_unset_option(ctx, LY_CTX_ALLIMPLEMENTED));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200206 assert_int_equal(0, ctx->flags & LY_CTX_ALLIMPLEMENTED);
207
208 /* LY_CTX_DISABLE_SEARCHDIRS */
209 assert_int_not_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIRS);
Radek Krejci962a8102018-09-20 14:21:06 +0200210 assert_int_equal(LY_SUCCESS, ly_ctx_unset_option(ctx, LY_CTX_DISABLE_SEARCHDIRS));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200211 assert_int_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIRS);
212
213 /* LY_CTX_DISABLE_SEARCHDIR_CWD */
214 assert_int_not_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD);
Radek Krejci962a8102018-09-20 14:21:06 +0200215 assert_int_equal(LY_SUCCESS, ly_ctx_unset_option(ctx, LY_CTX_DISABLE_SEARCHDIR_CWD));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200216 assert_int_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD);
217
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200218 /* LY_CTX_PREFER_SEARCHDIRS */
219 assert_int_not_equal(0, ctx->flags & LY_CTX_PREFER_SEARCHDIRS);
Radek Krejci962a8102018-09-20 14:21:06 +0200220 assert_int_equal(LY_SUCCESS, ly_ctx_unset_option(ctx, LY_CTX_PREFER_SEARCHDIRS));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200221 assert_int_equal(0, ctx->flags & LY_CTX_PREFER_SEARCHDIRS);
222
223 /* LY_CTX_TRUSTED */
224 assert_int_not_equal(0, ctx->flags & LY_CTX_TRUSTED);
Radek Krejci962a8102018-09-20 14:21:06 +0200225 assert_int_equal(LY_SUCCESS, ly_ctx_unset_option(ctx, LY_CTX_TRUSTED));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200226 assert_int_equal(0, ctx->flags & LY_CTX_TRUSTED);
227
Radek Krejci962a8102018-09-20 14:21:06 +0200228 assert_int_equal(ctx->flags, ly_ctx_get_options(ctx));
229
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200230 /* set back */
231 /* LY_CTX_ALLIMPLEMENTED */
Radek Krejci962a8102018-09-20 14:21:06 +0200232 assert_int_equal(LY_SUCCESS, ly_ctx_set_option(ctx, LY_CTX_ALLIMPLEMENTED));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200233 assert_int_not_equal(0, ctx->flags & LY_CTX_ALLIMPLEMENTED);
234
235 /* LY_CTX_DISABLE_SEARCHDIRS */
Radek Krejci962a8102018-09-20 14:21:06 +0200236 assert_int_equal(LY_SUCCESS, ly_ctx_set_option(ctx, LY_CTX_DISABLE_SEARCHDIRS));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200237 assert_int_not_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIRS);
238
239 /* LY_CTX_DISABLE_SEARCHDIR_CWD */
Radek Krejci962a8102018-09-20 14:21:06 +0200240 assert_int_equal(LY_SUCCESS, ly_ctx_set_option(ctx, LY_CTX_DISABLE_SEARCHDIR_CWD));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200241 assert_int_not_equal(0, ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD);
242
243 /* LY_CTX_PREFER_SEARCHDIRS */
Radek Krejci962a8102018-09-20 14:21:06 +0200244 assert_int_equal(LY_SUCCESS, ly_ctx_set_option(ctx, LY_CTX_PREFER_SEARCHDIRS));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200245 assert_int_not_equal(0, ctx->flags & LY_CTX_PREFER_SEARCHDIRS);
246
247 /* LY_CTX_TRUSTED */
Radek Krejci962a8102018-09-20 14:21:06 +0200248 assert_int_equal(LY_SUCCESS, ly_ctx_set_option(ctx, LY_CTX_TRUSTED));
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200249 assert_int_not_equal(0, ctx->flags & LY_CTX_TRUSTED);
250
Radek Krejci962a8102018-09-20 14:21:06 +0200251 assert_int_equal(ctx->flags, ly_ctx_get_options(ctx));
252
253 /* cleanup */
254 ly_ctx_destroy(ctx, NULL);
255}
256
257static void
258test_models(void **state)
259{
260 (void) state; /* unused */
261
Radek Krejcib7db73a2018-10-24 14:18:40 +0200262 struct ly_ctx *ctx;
263
Radek Krejci962a8102018-09-20 14:21:06 +0200264 /* invalid arguments */
265 assert_int_equal(0, ly_ctx_get_module_set_id(NULL));
266 logbuf_assert("Invalid argument ctx (ly_ctx_get_module_set_id()).");
267
Radek Krejcib7db73a2018-10-24 14:18:40 +0200268 will_return_always(__wrap_ly_set_add, 0);
Radek Krejci962a8102018-09-20 14:21:06 +0200269 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx));
270 assert_int_equal(ctx->module_set_id, ly_ctx_get_module_set_id(ctx));
271
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200272 /* cleanup */
273 ly_ctx_destroy(ctx, NULL);
274}
275
Radek Krejcib7db73a2018-10-24 14:18:40 +0200276static void
277test_get_models(void **state)
278{
279 (void) state; /* unused */
280
281 struct ly_ctx *ctx;
282 const struct lys_module *mod, *mod2;
Radek Krejci5e163df2018-10-24 14:42:15 +0200283 const char *str0 = "module a {namespace urn:a;prefix a;}";
Radek Krejcib7db73a2018-10-24 14:18:40 +0200284 const char *str1 = "module a {namespace urn:a;prefix a;revision 2018-10-23;}";
285 const char *str2 = "module a {namespace urn:a;prefix a;revision 2018-10-23;revision 2018-10-24;}";
286
287 will_return_always(__wrap_ly_set_add, 0);
288 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx));
289
290 /* invalid arguments */
291 assert_ptr_equal(NULL, ly_ctx_get_module(NULL, NULL, NULL));
292 logbuf_assert("Invalid argument ctx (ly_ctx_get_module()).");
293 assert_ptr_equal(NULL, ly_ctx_get_module(ctx, NULL, NULL));
294 logbuf_assert("Invalid argument name (ly_ctx_get_module()).");
295 assert_ptr_equal(NULL, ly_ctx_get_module_ns(NULL, NULL, NULL));
296 logbuf_assert("Invalid argument ctx (ly_ctx_get_module_ns()).");
297 assert_ptr_equal(NULL, ly_ctx_get_module_ns(ctx, NULL, NULL));
298 logbuf_assert("Invalid argument ns (ly_ctx_get_module_ns()).");
299 assert_null(ly_ctx_get_module(ctx, "nonsence", NULL));
300
301 /* internal modules */
302 assert_null(ly_ctx_get_module_implemented(ctx, "ietf-yang-types"));
303 mod = ly_ctx_get_module_implemented(ctx, "yang");
304 assert_non_null(mod);
305 assert_non_null(mod->parsed);
306 assert_string_equal("yang", mod->parsed->name);
307 mod2 = ly_ctx_get_module_implemented_ns(ctx, mod->parsed->ns);
308 assert_ptr_equal(mod, mod2);
309 assert_non_null(ly_ctx_get_module(ctx, "ietf-yang-metadata", "2016-08-05"));
310 assert_non_null(ly_ctx_get_module(ctx, "ietf-yang-types", "2013-07-15"));
311 assert_non_null(ly_ctx_get_module(ctx, "ietf-inet-types", "2013-07-15"));
Radek Krejci5e163df2018-10-24 14:42:15 +0200312 assert_non_null(ly_ctx_get_module_ns(ctx, "urn:ietf:params:xml:ns:yang:ietf-datastores", "2017-08-17"));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200313
314 /* select module by revision */
315 mod = lys_parse_mem(ctx, str1, LYS_IN_YANG);
316 /* invalid attempts - implementing module of the same name and inserting the same module */
317 assert_null(lys_parse_mem(ctx, str2, LYS_IN_YANG));
318 logbuf_assert("Module \"a\" is already implemented in the context.");
319 assert_null(lys_parse_mem_(ctx, str1, LYS_IN_YANG, NULL, 0));
320 logbuf_assert("Module \"a\" of revision \"2018-10-23\" is already present in the context.");
321 /* insert the second module only as imported, not implemented */
322 mod2 = lys_parse_mem_(ctx, str2, LYS_IN_YANG, NULL, 0);
323 assert_non_null(mod);
324 assert_non_null(mod2);
325 assert_ptr_not_equal(mod, mod2);
326 mod = ly_ctx_get_module_latest(ctx, "a");
327 assert_ptr_equal(mod, mod2);
328 mod2 = ly_ctx_get_module_latest_ns(ctx, mod->parsed->ns);
329 assert_ptr_equal(mod, mod2);
Radek Krejci5e163df2018-10-24 14:42:15 +0200330 /* work with module with no revision */
331 mod = lys_parse_mem_(ctx, str0, LYS_IN_YANG, NULL, 0);
332 assert_non_null(mod);
333 assert_ptr_equal(mod, ly_ctx_get_module(ctx, "a", NULL));
334 assert_ptr_not_equal(mod, ly_ctx_get_module_latest(ctx, "a"));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200335
336 /* cleanup */
337 ly_ctx_destroy(ctx, NULL);
338}
339
Radek Krejci1e880032018-09-20 12:17:12 +0200340int main(void)
341{
342 const struct CMUnitTest tests[] = {
343 cmocka_unit_test_setup(test_searchdirs, logger_setup),
Radek Krejci0c4b22b2018-09-20 12:55:46 +0200344 cmocka_unit_test_setup(test_options, logger_setup),
Radek Krejci962a8102018-09-20 14:21:06 +0200345 cmocka_unit_test_setup(test_models, logger_setup),
Radek Krejcib7db73a2018-10-24 14:18:40 +0200346 cmocka_unit_test_setup(test_get_models, logger_setup),
Radek Krejci1e880032018-09-20 12:17:12 +0200347 };
348
349 return cmocka_run_group_tests(tests, NULL, NULL);
350}