blob: fb2e6f8b51789fea6bb940306f2dbc6af6bcdb9c [file] [log] [blame]
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001/*
2 * @file test_parser_yang.c
3 * @author: Radek Krejci <rkrejci@cesnet.cz>
4 * @brief unit tests for functions from parser_yang.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/xpath.c"
Radek Krejci86d106e2018-10-18 09:53:19 +020019#include "../../src/parser_yang.c"
Radek Krejcif3f47842018-11-15 11:22:15 +010020#include "../../src/tree_schema_helpers.c"
Radek Krejci19a96102018-11-15 13:38:09 +010021#include "../../src/tree_schema_free.c"
22#include "../../src/tree_schema_compile.c"
Radek Krejcif3f47842018-11-15 11:22:15 +010023#include "../../src/tree_schema.c"
24#include "../../src/context.c"
25#include "../../src/hash_table.c"
Radek Krejci86d106e2018-10-18 09:53:19 +020026
Radek Krejcidd4e8d42018-10-16 14:55:43 +020027#include <stdarg.h>
28#include <stddef.h>
29#include <setjmp.h>
30#include <cmocka.h>
31
32#include <stdio.h>
33#include <string.h>
34
35#include "libyang.h"
Radek Krejcidd4e8d42018-10-16 14:55:43 +020036
37#define BUFSIZE 1024
38char logbuf[BUFSIZE] = {0};
39
40/* set to 0 to printing error messages to stderr instead of checking them in code */
41#define ENABLE_LOGGER_CHECKING 1
42
43#if ENABLE_LOGGER_CHECKING
44static void
45logger(LY_LOG_LEVEL level, const char *msg, const char *path)
46{
47 (void) level; /* unused */
48
Radek Krejci87616bb2018-10-31 13:30:52 +010049 if (path && path[0]) {
Radek Krejcidd4e8d42018-10-16 14:55:43 +020050 snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path);
51 } else {
52 strncpy(logbuf, msg, BUFSIZE - 1);
53 }
54}
55#endif
56
57static int
58logger_setup(void **state)
59{
60 (void) state; /* unused */
61#if ENABLE_LOGGER_CHECKING
62 ly_set_log_clb(logger, 1);
63#endif
64 return 0;
65}
66
Radek Krejci4f28eda2018-11-12 11:46:16 +010067static int
68logger_teardown(void **state)
69{
70 (void) state; /* unused */
71#if ENABLE_LOGGER_CHECKING
72 if (*state) {
73 fprintf(stderr, "%s\n", logbuf);
74 }
75#endif
76 return 0;
77}
78
Radek Krejcidd4e8d42018-10-16 14:55:43 +020079void
80logbuf_clean(void)
81{
82 logbuf[0] = '\0';
83}
84
85#if ENABLE_LOGGER_CHECKING
Radek Krejci16c0f822018-11-16 10:46:10 +010086# define logbuf_assert(str) assert_string_equal(logbuf, str);logbuf_clean()
Radek Krejcidd4e8d42018-10-16 14:55:43 +020087#else
88# define logbuf_assert(str)
89#endif
90
Radek Krejcid05cbd92018-12-05 14:26:40 +010091static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
92 const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format,
93 const char **module_data, void (**free_module_data)(void *model_data, void *user_data))
94{
95 *module_data = user_data;
96 *format = LYS_IN_YANG;
97 *free_module_data = NULL;
98 return LY_SUCCESS;
99}
100
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200101static void
102test_module(void **state)
103{
104 (void) state; /* unused */
105
106 const char *str;
Radek Krejci313d9902018-11-08 09:42:58 +0100107 struct ly_parser_ctx ctx = {0};
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200108 struct lys_module mod = {0};
Radek Krejci151a5b72018-10-19 14:21:44 +0200109 struct lysc_feature *f;
110 struct lysc_iffeature *iff;
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200111
112 str = "module test {namespace urn:test; prefix t;"
Radek Krejci151a5b72018-10-19 14:21:44 +0200113 "feature f1;feature f2 {if-feature f1;}}";
Radek Krejci313d9902018-11-08 09:42:58 +0100114 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200115
Radek Krejcif8f882a2018-10-31 14:51:15 +0100116 assert_int_equal(LY_EINVAL, lys_compile(NULL, 0));
117 logbuf_assert("Invalid argument mod (lys_compile()).");
118 assert_int_equal(LY_EINVAL, lys_compile(&mod, 0));
119 logbuf_assert("Invalid argument mod->parsed (lys_compile()).");
Radek Krejci313d9902018-11-08 09:42:58 +0100120 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100121 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200122 assert_non_null(mod.compiled);
123 assert_ptr_equal(mod.parsed->name, mod.compiled->name);
124 assert_ptr_equal(mod.parsed->ns, mod.compiled->ns);
Radek Krejci151a5b72018-10-19 14:21:44 +0200125 /* features */
126 assert_non_null(mod.compiled->features);
127 assert_int_equal(2, LY_ARRAY_SIZE(mod.compiled->features));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200128 f = &mod.compiled->features[1];
Radek Krejci151a5b72018-10-19 14:21:44 +0200129 assert_non_null(f->iffeatures);
130 assert_int_equal(1, LY_ARRAY_SIZE(f->iffeatures));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200131 iff = &f->iffeatures[0];
Radek Krejci151a5b72018-10-19 14:21:44 +0200132 assert_non_null(iff->expr);
133 assert_non_null(iff->features);
134 assert_int_equal(1, LY_ARRAY_SIZE(iff->features));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200135 assert_ptr_equal(&mod.compiled->features[0], iff->features[0]);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200136
Radek Krejci86d106e2018-10-18 09:53:19 +0200137 lysc_module_free(mod.compiled, NULL);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200138
Radek Krejcif8f882a2018-10-31 14:51:15 +0100139 assert_int_equal(LY_SUCCESS, lys_compile(&mod, LYSC_OPT_FREE_SP));
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200140 assert_non_null(mod.compiled);
141 assert_string_equal("test", mod.compiled->name);
142 assert_string_equal("urn:test", mod.compiled->ns);
143
Radek Krejci86d106e2018-10-18 09:53:19 +0200144 lysc_module_free(mod.compiled, NULL);
145 mod.compiled = NULL;
146
Radek Krejci151a5b72018-10-19 14:21:44 +0200147 /* submodules cannot be compiled directly */
Radek Krejci86d106e2018-10-18 09:53:19 +0200148 str = "submodule test {belongs-to xxx {prefix x;}}";
Radek Krejci313d9902018-11-08 09:42:58 +0100149 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100150 assert_int_equal(LY_EINVAL, lys_compile(&mod, 0));
Radek Krejci86d106e2018-10-18 09:53:19 +0200151 logbuf_assert("Submodules (test) are not supposed to be compiled, compile only the main modules.");
152 assert_null(mod.compiled);
153
154 lysp_module_free(mod.parsed);
Radek Krejci313d9902018-11-08 09:42:58 +0100155 ly_ctx_destroy(ctx.ctx, NULL);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200156}
157
Radek Krejci151a5b72018-10-19 14:21:44 +0200158static void
159test_feature(void **state)
160{
Radek Krejcid05cbd92018-12-05 14:26:40 +0100161 *state = test_feature;
Radek Krejci151a5b72018-10-19 14:21:44 +0200162
Radek Krejci313d9902018-11-08 09:42:58 +0100163 struct ly_parser_ctx ctx = {0};
Radek Krejci1aefdf72018-11-01 11:01:39 +0100164 struct lys_module mod = {0}, *modp;
Radek Krejci151a5b72018-10-19 14:21:44 +0200165 const char *str;
166 struct lysc_feature *f, *f1;
167
168 str = "module a {namespace urn:a;prefix a;yang-version 1.1;\n"
169 "feature f1 {description test1;reference test2;status current;} feature f2; feature f3;\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100170 "feature orfeature {if-feature \"f1 or f2\";}\n"
171 "feature andfeature {if-feature \"f1 and f2\";}\n"
Radek Krejci151a5b72018-10-19 14:21:44 +0200172 "feature f6 {if-feature \"not f1\";}\n"
Radek Krejcidde18c52018-10-24 14:43:04 +0200173 "feature f7 {if-feature \"(f2 and f3) or (not f1)\";}\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100174 "feature f8 {if-feature \"f1 or f2 or f3 or orfeature or andfeature\";}\n"
175 "feature f9 {if-feature \"not not f1\";}}";
Radek Krejci151a5b72018-10-19 14:21:44 +0200176
Radek Krejci313d9902018-11-08 09:42:58 +0100177 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
178 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100179 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
Radek Krejci151a5b72018-10-19 14:21:44 +0200180 assert_non_null(mod.compiled);
181 assert_non_null(mod.compiled->features);
Radek Krejci87616bb2018-10-31 13:30:52 +0100182 assert_int_equal(9, LY_ARRAY_SIZE(mod.compiled->features));
Radek Krejci151a5b72018-10-19 14:21:44 +0200183 /* all features are disabled by default */
184 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
185 assert_int_equal(0, lysc_feature_value(f));
186 }
187 /* enable f1 */
188 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200189 f1 = &mod.compiled->features[0];
Radek Krejci151a5b72018-10-19 14:21:44 +0200190 assert_int_equal(1, lysc_feature_value(f1));
191
Radek Krejci87616bb2018-10-31 13:30:52 +0100192 /* enable orfeature */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200193 f = &mod.compiled->features[3];
Radek Krejci151a5b72018-10-19 14:21:44 +0200194 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100195 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "orfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200196 assert_int_equal(1, lysc_feature_value(f));
197
Radek Krejci87616bb2018-10-31 13:30:52 +0100198 /* enable andfeature - no possible since f2 is disabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200199 f = &mod.compiled->features[4];
Radek Krejci151a5b72018-10-19 14:21:44 +0200200 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100201 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
202 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci151a5b72018-10-19 14:21:44 +0200203 assert_int_equal(0, lysc_feature_value(f));
204
205 /* first enable f2, so f5 can be enabled then */
206 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f2"));
Radek Krejci87616bb2018-10-31 13:30:52 +0100207 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "andfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200208 assert_int_equal(1, lysc_feature_value(f));
209
210 /* f1 is enabled, so f6 cannot be enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200211 f = &mod.compiled->features[5];
Radek Krejci151a5b72018-10-19 14:21:44 +0200212 assert_int_equal(0, lysc_feature_value(f));
213 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "f6"));
214 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
215 assert_int_equal(0, lysc_feature_value(f));
216
Radek Krejci87616bb2018-10-31 13:30:52 +0100217 /* so disable f1 - andfeature will became also disabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200218 assert_int_equal(1, lysc_feature_value(f1));
Radek Krejci151a5b72018-10-19 14:21:44 +0200219 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
220 assert_int_equal(0, lysc_feature_value(f1));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200221 assert_int_equal(0, lysc_feature_value(&mod.compiled->features[4]));
Radek Krejci87616bb2018-10-31 13:30:52 +0100222 /* while orfeature is stille enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200223 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[3]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200224 /* and finally f6 can be enabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200225 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f6"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200226 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[5]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200227
228 /* complex evaluation of f7: f1 and f3 are disabled, while f2 is enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200229 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[6].iffeatures[0]));
Radek Krejcidde18c52018-10-24 14:43:04 +0200230 /* long evaluation of f8 to need to reallocate internal stack for operators */
231 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[7].iffeatures[0]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200232
Radek Krejci87616bb2018-10-31 13:30:52 +0100233 /* double negation of disabled f1 -> disabled */
234 assert_int_equal(0, lysc_iffeature_value(&mod.compiled->features[8].iffeatures[0]));
235
Radek Krejci38920282018-11-01 09:24:16 +0100236 /* disable all features */
237 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "*"));
238 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
239 assert_int_equal(0, lys_feature_value(&mod, f->name));
240 }
241 /* re-setting already set feature */
242 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
243 assert_int_equal(0, lys_feature_value(&mod, "f1"));
244
245 /* enabling feature that cannot be enabled due to its if-features */
Radek Krejci1aefdf72018-11-01 11:01:39 +0100246 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
247 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
248 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejcica3db002018-11-01 10:31:01 +0100249 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "*"));
250 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci1aefdf72018-11-01 11:01:39 +0100251 /* test if not changed */
252 assert_int_equal(1, lys_feature_value(&mod, "f1"));
253 assert_int_equal(0, lys_feature_value(&mod, "f2"));
Radek Krejci38920282018-11-01 09:24:16 +0100254
Radek Krejci1aefdf72018-11-01 11:01:39 +0100255 /* invalid reference */
Radek Krejci38920282018-11-01 09:24:16 +0100256 assert_int_equal(LY_EINVAL, lys_feature_enable(&mod, "xxx"));
257 logbuf_assert("Feature \"xxx\" not found in module \"a\".");
258
Radek Krejci151a5b72018-10-19 14:21:44 +0200259 lysc_module_free(mod.compiled, NULL);
260 lysp_module_free(mod.parsed);
Radek Krejci87616bb2018-10-31 13:30:52 +0100261
262 /* some invalid expressions */
Radek Krejci313d9902018-11-08 09:42:58 +0100263 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature f1;}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100264 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100265 logbuf_assert("Invalid value \"f1\" of if-feature - unable to find feature \"f1\".");
266 lysp_module_free(mod.parsed);
267
Radek Krejci313d9902018-11-08 09:42:58 +0100268 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f and';}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100269 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100270 logbuf_assert("Invalid value \"f and\" of if-feature - unexpected end of expression.");
271 lysp_module_free(mod.parsed);
272
Radek Krejci313d9902018-11-08 09:42:58 +0100273 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature 'or';}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100274 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100275 logbuf_assert("Invalid value \"or\" of if-feature - unexpected end of expression.");
276 lysp_module_free(mod.parsed);
277
Radek Krejci313d9902018-11-08 09:42:58 +0100278 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature '(f1';}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100279 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100280 logbuf_assert("Invalid value \"(f1\" of if-feature - non-matching opening and closing parentheses.");
281 lysp_module_free(mod.parsed);
282
Radek Krejci313d9902018-11-08 09:42:58 +0100283 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f1)';}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100284 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100285 logbuf_assert("Invalid value \"f1)\" of if-feature - non-matching opening and closing parentheses.");
286 lysp_module_free(mod.parsed);
287
Radek Krejci313d9902018-11-08 09:42:58 +0100288 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature ---;}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100289 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100290 logbuf_assert("Invalid value \"---\" of if-feature - unable to find feature \"---\".");
291 lysp_module_free(mod.parsed);
292
Radek Krejci313d9902018-11-08 09:42:58 +0100293 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f2{if-feature 'not f1';}}", &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100294 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100295 logbuf_assert("Invalid value \"not f1\" of if-feature - YANG 1.1 expression in YANG 1.0 module.");
296 lysp_module_free(mod.parsed);
297
Radek Krejcid05cbd92018-12-05 14:26:40 +0100298 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f1;}", &mod.parsed));
299 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
300 logbuf_assert("Duplicate identifier \"f1\" of feature statement.");
301 lysp_module_free(mod.parsed);
302
303 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "submodule sb {belongs-to b {prefix b;} feature f1;}");
304 assert_non_null(modp = lys_parse_mem(ctx.ctx, "module b{namespace urn:b; prefix b; include sb;feature f1;}", LYS_IN_YANG));
305 assert_int_equal(LY_EVALID, lys_compile(modp, 0));
306 logbuf_assert("Duplicate identifier \"f1\" of feature statement.");
307
Radek Krejci1aefdf72018-11-01 11:01:39 +0100308 /* import reference */
Radek Krejci313d9902018-11-08 09:42:58 +0100309 assert_non_null(modp = lys_parse_mem(ctx.ctx, str, LYS_IN_YANG));
Radek Krejci1aefdf72018-11-01 11:01:39 +0100310 assert_int_equal(LY_SUCCESS, lys_compile(modp, 0));
311 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f1"));
Radek Krejcid05cbd92018-12-05 14:26:40 +0100312 assert_non_null(modp = lys_parse_mem(ctx.ctx, "module c{namespace urn:c; prefix c; import a {prefix a;} feature f1; feature f2{if-feature 'a:f1';}}", LYS_IN_YANG));
Radek Krejci1aefdf72018-11-01 11:01:39 +0100313 assert_int_equal(LY_SUCCESS, lys_compile(modp, 0));
314 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f2"));
315 assert_int_equal(0, lys_feature_value(modp, "f1"));
316 assert_int_equal(1, lys_feature_value(modp, "f2"));
317
Radek Krejcid05cbd92018-12-05 14:26:40 +0100318 *state = NULL;
Radek Krejci313d9902018-11-08 09:42:58 +0100319 ly_ctx_destroy(ctx.ctx, NULL);
Radek Krejci151a5b72018-10-19 14:21:44 +0200320}
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200321
Radek Krejci478020e2018-10-30 16:02:14 +0100322static void
323test_identity(void **state)
324{
Radek Krejci7f2a5362018-11-28 13:05:37 +0100325 *state = test_identity;
Radek Krejci478020e2018-10-30 16:02:14 +0100326
327 struct ly_ctx *ctx;
Radek Krejci1aefdf72018-11-01 11:01:39 +0100328 struct lys_module *mod1, *mod2;
Radek Krejci478020e2018-10-30 16:02:14 +0100329 const char *mod1_str = "module a {namespace urn:a;prefix a; identity a1;}";
Radek Krejci027d5802018-11-14 16:57:28 +0100330 const char *mod2_str = "module b {yang-version 1.1;namespace urn:b;prefix b; import a {prefix a;}identity b1; identity b2; identity b3 {base b1; base b:b2; base a:a1;} identity b4 {base b:b1; base b3;}}";
Radek Krejci478020e2018-10-30 16:02:14 +0100331
332 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
333 assert_non_null(mod1 = lys_parse_mem(ctx, mod1_str, LYS_IN_YANG));
334 assert_non_null(mod2 = lys_parse_mem(ctx, mod2_str, LYS_IN_YANG));
Radek Krejci7f2a5362018-11-28 13:05:37 +0100335 assert_int_equal(LY_SUCCESS, lys_compile(mod1, 0));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100336 assert_int_equal(LY_SUCCESS, lys_compile(mod2, 0));
Radek Krejci478020e2018-10-30 16:02:14 +0100337
338 assert_non_null(mod1->compiled);
339 assert_non_null(mod1->compiled->identities);
340 assert_non_null(mod2->compiled);
341 assert_non_null(mod2->compiled->identities);
342
343 assert_non_null(mod1->compiled->identities[0].derived);
344 assert_int_equal(1, LY_ARRAY_SIZE(mod1->compiled->identities[0].derived));
345 assert_ptr_equal(mod1->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
346 assert_non_null(mod2->compiled->identities[0].derived);
347 assert_int_equal(2, LY_ARRAY_SIZE(mod2->compiled->identities[0].derived));
348 assert_ptr_equal(mod2->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
349 assert_ptr_equal(mod2->compiled->identities[0].derived[1], &mod2->compiled->identities[3]);
350 assert_non_null(mod2->compiled->identities[1].derived);
351 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived));
352 assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[2]);
353 assert_non_null(mod2->compiled->identities[2].derived);
354 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[2].derived));
355 assert_ptr_equal(mod2->compiled->identities[2].derived[0], &mod2->compiled->identities[3]);
356
Radek Krejcid05cbd92018-12-05 14:26:40 +0100357 assert_non_null(mod1 = lys_parse_mem(ctx, "module c{namespace urn:c; prefix c; identity i1;identity i1;}", LYS_IN_YANG));
358 assert_int_equal(LY_EVALID, lys_compile(mod1, 0));
359 logbuf_assert("Duplicate identifier \"i1\" of identity statement.");
360
361 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule sd {belongs-to d {prefix d;} identity i1;}");
362 assert_non_null(mod1 = lys_parse_mem(ctx, "module d{namespace urn:d; prefix d; include sd;identity i1;}", LYS_IN_YANG));
363 assert_int_equal(LY_EVALID, lys_compile(mod1, 0));
364 logbuf_assert("Duplicate identifier \"i1\" of identity statement.");
365
Radek Krejci7f2a5362018-11-28 13:05:37 +0100366 *state = NULL;
Radek Krejci478020e2018-10-30 16:02:14 +0100367 ly_ctx_destroy(ctx, NULL);
368}
369
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100370static void
371test_node_container(void **state)
372{
373 (void) state; /* unused */
374
375 struct ly_ctx *ctx;
376 struct lys_module *mod;
377 struct lysc_node_container *cont;
378
379 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
380 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;container c;}", LYS_IN_YANG));
381 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
382 assert_non_null(mod->compiled);
383 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
384 assert_int_equal(LYS_CONTAINER, cont->nodetype);
385 assert_string_equal("c", cont->name);
386 assert_true(cont->flags & LYS_CONFIG_W);
387 assert_true(cont->flags & LYS_STATUS_CURR);
388
Radek Krejci98094b32018-11-02 16:21:47 +0100389 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;container c {config false; status deprecated; container child;}}", LYS_IN_YANG));
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100390 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
Radek Krejci98094b32018-11-02 16:21:47 +0100391 logbuf_assert("Missing explicit \"deprecated\" status that was already specified in parent, inheriting.");
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100392 assert_non_null(mod->compiled);
393 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
394 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100395 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100396 assert_non_null((cont = (struct lysc_node_container*)cont->child));
397 assert_int_equal(LYS_CONTAINER, cont->nodetype);
398 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100399 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100400 assert_string_equal("child", cont->name);
401
402 ly_ctx_destroy(ctx, NULL);
403}
404
Radek Krejci0e5d8382018-11-28 16:37:53 +0100405static void
406test_node_leaflist(void **state)
407{
408 *state = test_node_leaflist;
409
410 struct ly_ctx *ctx;
411 struct lys_module *mod;
412 struct lysc_type *type;
413 struct lysc_node_leaflist *ll;
414
415 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
416
417 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;"
418 "typedef mytype {type union {type leafref {path ../target;} type string;}}"
419 "leaf-list ll1 {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
420 "leaf-list ll2 {type leafref {path ../target;}}"
421 "leaf target {type int8;}}",
422 LYS_IN_YANG));
423 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
424 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
425 assert_non_null(type);
426 assert_int_equal(1, type->refcount);
427 assert_int_equal(LY_TYPE_UNION, type->basetype);
428 assert_non_null(((struct lysc_type_union*)type)->types);
429 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
430 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
431 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
432 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
433 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
434 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
435 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
436 assert_non_null(type);
437 assert_int_equal(1, type->refcount);
438 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
439 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
440 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
441
Radek Krejci6bb080b2018-11-28 17:23:41 +0100442 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf-list ll {type string;}}", LYS_IN_YANG));
Radek Krejci0e5d8382018-11-28 16:37:53 +0100443 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
444 assert_non_null(mod->compiled);
445 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
446 assert_int_equal(0, ll->min);
447 assert_int_equal((uint32_t)-1, ll->max);
448
Radek Krejci6bb080b2018-11-28 17:23:41 +0100449 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;typedef mytype {type int8;default 10;}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100450 "leaf-list ll1 {type mytype;default 1; default 1; config false;}"
Radek Krejcia6d57732018-11-29 13:40:37 +0100451 "leaf-list ll2 {type mytype; ordered-by user;}}", LYS_IN_YANG));
Radek Krejci6bb080b2018-11-28 17:23:41 +0100452 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
453 assert_non_null(mod->compiled);
454 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
455 assert_non_null(ll->dflts);
456 assert_int_equal(3, ll->type->refcount);
457 assert_int_equal(2, LY_ARRAY_SIZE(ll->dflts));
458 assert_string_equal("1", ll->dflts[0]);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100459 assert_string_equal("1", ll->dflts[1]);
Radek Krejcia6d57732018-11-29 13:40:37 +0100460 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, ll->flags);
Radek Krejci6bb080b2018-11-28 17:23:41 +0100461 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data->next));
462 assert_non_null(ll->dflts);
463 assert_int_equal(3, ll->type->refcount);
464 assert_int_equal(1, LY_ARRAY_SIZE(ll->dflts));
465 assert_string_equal("10", ll->dflts[0]);
Radek Krejcia6d57732018-11-29 13:40:37 +0100466 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, ll->flags);
467
468 /* ordered-by is ignored for state data, RPC/action output parameters and notification content
469 * TODO test also, RPC output parameters and notification content */
470 assert_non_null(mod = lys_parse_mem(ctx, "module d {yang-version 1.1;namespace urn:d;prefix d;"
471 "leaf-list ll {config false; type string; ordered-by user;}}", LYS_IN_YANG));
472 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
473 /* but warning is present: */
474 logbuf_assert("The ordered-by statement is ignored in lists representing state data, RPC/action output parameters or notification content ().");
475 assert_non_null(mod->compiled);
476 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
477 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, ll->flags);
Radek Krejci6bb080b2018-11-28 17:23:41 +0100478
479 /* invalid */
480 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf-list ll {type empty;}}", LYS_IN_YANG));
481 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
482 logbuf_assert("Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules.");
483
484 assert_non_null(mod = lys_parse_mem(ctx, "module bb {yang-version 1.1;namespace urn:bb;prefix bb;leaf-list ll {type empty; default x;}}", LYS_IN_YANG));
485 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
486 logbuf_assert("Leaf-list of type \"empty\" must not have a default value (x).");
487
488 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;"
489 "leaf-list ll {config false;type string; default one;default two;default one;}}", LYS_IN_YANG));
490 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
491 assert_non_null(mod->compiled);
492 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
493 assert_non_null(ll->dflts);
494 assert_int_equal(3, LY_ARRAY_SIZE(ll->dflts));
495 assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;"
496 "leaf-list ll {type string; default one;default two;default one;}}", LYS_IN_YANG));
497 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
498 logbuf_assert("Configuration leaf-list has multiple defaults of the same value \"one\".");
499
Radek Krejci0e5d8382018-11-28 16:37:53 +0100500 *state = NULL;
501 ly_ctx_destroy(ctx, NULL);
502}
503
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100504static void
505test_node_list(void **state)
506{
507 *state = test_node_list;
508
509 struct ly_ctx *ctx;
510 struct lys_module *mod;
511 struct lysc_node_list *list;
512
513 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
514
515 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
516 "list l1 {key \"x y\"; ordered-by user; leaf x {type string; when 1;}leaf y{type string;if-feature f;}}"
517 "list l2 {config false;leaf value {type string;}}}", LYS_IN_YANG));
518 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
519 list = (struct lysc_node_list*)mod->compiled->data;
520 assert_non_null(list);
521 assert_non_null(list->keys);
522 assert_int_equal(2, LY_ARRAY_SIZE(list->keys));
523 assert_string_equal("x", list->keys[0]->name);
524 assert_string_equal("y", list->keys[1]->name);
525 assert_non_null(list->child);
526 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, list->flags);
527 assert_true(list->child->flags & LYS_KEY);
528 assert_true(list->child->next->flags & LYS_KEY);
529 list = (struct lysc_node_list*)mod->compiled->data->next;
530 assert_non_null(list);
531 assert_null(list->keys);
532 assert_non_null(list->child);
533 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, list->flags);
534 assert_false(list->child->flags & LYS_KEY);
535
536 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;"
537 "list l {key a; unique \"a c/b:b\"; unique \"c/e d\";"
Radek Krejci665421c2018-12-05 08:03:39 +0100538 "leaf a {type string; default x;} leaf d {type string;config false;}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100539 "container c {leaf b {type string;}leaf e{type string;config false;}}}}", LYS_IN_YANG));
540 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
541 list = (struct lysc_node_list*)mod->compiled->data;
542 assert_non_null(list);
543 assert_string_equal("l", list->name);
544 assert_non_null(list->keys);
545 assert_int_equal(1, LY_ARRAY_SIZE(list->keys));
546 assert_string_equal("a", list->keys[0]->name);
547 assert_true(list->keys[0]->flags & LYS_KEY);
Radek Krejci665421c2018-12-05 08:03:39 +0100548 assert_null(list->keys[0]->dflt);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100549 assert_non_null(list->uniques);
550 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques));
551 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0]));
552 assert_string_equal("a", list->uniques[0][0]->name);
553 assert_true(list->uniques[0][0]->flags & LYS_UNIQUE);
554 assert_string_equal("b", list->uniques[0][1]->name);
555 assert_true(list->uniques[0][1]->flags & LYS_UNIQUE);
556 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[1]));
557 assert_string_equal("e", list->uniques[1][0]->name);
558 assert_true(list->uniques[1][0]->flags & LYS_UNIQUE);
559 assert_string_equal("d", list->uniques[1][1]->name);
560 assert_true(list->uniques[1][1]->flags & LYS_UNIQUE);
561
Radek Krejci665421c2018-12-05 08:03:39 +0100562 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;"
563 "list l {key a;leaf a {type empty;}}}", LYS_IN_YANG));
564 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
565 list = (struct lysc_node_list*)mod->compiled->data;
566 assert_non_null(list);
567 assert_string_equal("l", list->name);
568 assert_non_null(list->keys);
569 assert_int_equal(1, LY_ARRAY_SIZE(list->keys));
570 assert_string_equal("a", list->keys[0]->name);
571 assert_true(list->keys[0]->flags & LYS_KEY);
572 assert_int_equal(LY_TYPE_EMPTY, list->keys[0]->type->basetype);
573
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100574 /* invalid */
575 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;list l;}", LYS_IN_YANG));
576 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
577 logbuf_assert("Missing key in list representing configuration data.");
578
579 assert_non_null(mod = lys_parse_mem(ctx, "module bb {yang-version 1.1; namespace urn:bb;prefix bb;"
580 "list l {key x; leaf x {type string; when 1;}}}", LYS_IN_YANG));
581 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
582 logbuf_assert("List's key \"x\" must not have any \"when\" statement.");
583
584 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;feature f;"
585 "list l {key x; leaf x {type string; if-feature f;}}}", LYS_IN_YANG));
586 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
587 logbuf_assert("List's key \"x\" must not have any \"if-feature\" statement.");
588
589 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;"
590 "list l {key x; leaf x {type string; config false;}}}", LYS_IN_YANG));
591 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
592 logbuf_assert("Key of the configuration list must not be status leaf.");
593
594 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;"
595 "list l {config false;key x; leaf x {type string; config true;}}}", LYS_IN_YANG));
596 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
597 logbuf_assert("Configuration node cannot be child of any state data node.");
598
599 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;"
600 "list l {key x; leaf-list x {type string;}}}", LYS_IN_YANG));
601 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
602 logbuf_assert("The list's key \"x\" not found.");
603
604 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;"
605 "list l {key x; unique y;leaf x {type string;} leaf-list y {type string;}}}", LYS_IN_YANG));
606 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
607 logbuf_assert("Unique's descendant-schema-nodeid \"y\" refers to a leaf-list node instead of a leaf.");
608
609 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
610 "list l {key x; unique \"x y\";leaf x {type string;} leaf y {config false; type string;}}}", LYS_IN_YANG));
611 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
612 logbuf_assert("Unique statement \"x y\" refers to leafs with different config type.");
613
Radek Krejci665421c2018-12-05 08:03:39 +0100614 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;"
615 "list l {key x; unique a:x;leaf x {type string;}}}", LYS_IN_YANG));
616 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
617 logbuf_assert("Invalid descendant-schema-nodeid value \"a:x\" - prefix \"a\" not defined in module \"ii\".");
618
619 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;"
620 "list l {key x; unique c/x;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
621 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
622 logbuf_assert("Invalid descendant-schema-nodeid value \"c/x\" - target node not found.");
623
624 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
625 "list l {key x; unique c^y;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
626 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
627 logbuf_assert("Invalid descendant-schema-nodeid value \"c^\" - missing \"/\" as node-identifier separator.");
628
629 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
630 "list l {key \"x y x\";leaf x {type string;}leaf y {type string;}}}", LYS_IN_YANG));
631 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
632 logbuf_assert("Duplicated key identifier \"x\".");
633
634 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;"
635 "list l {key x;leaf x {type empty;}}}", LYS_IN_YANG));
636 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
637 logbuf_assert("Key of a list can be of type \"empty\" only in YANG 1.1 modules.");
638
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100639 *state = NULL;
640 ly_ctx_destroy(ctx, NULL);
641}
642
Radek Krejci0f07bed2018-11-13 14:01:40 +0100643/**
644 * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types,
645 * do not test the expression itself
646 */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100647static void
Radek Krejci0f07bed2018-11-13 14:01:40 +0100648test_type_range(void **state)
Radek Krejci4f28eda2018-11-12 11:46:16 +0100649{
Radek Krejci0f07bed2018-11-13 14:01:40 +0100650 *state = test_type_range;
651
652 struct ly_ctx *ctx;
653 struct lys_module *mod;
654 struct lysc_type *type;
655
656 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
657
658 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type int8 {range min..10|max;}}}", LYS_IN_YANG));
659 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
660 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
661 assert_non_null(type);
662 assert_int_equal(LY_TYPE_INT8, type->basetype);
663 assert_non_null(((struct lysc_type_num*)type)->range);
664 assert_non_null(((struct lysc_type_num*)type)->range->parts);
665 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
666 assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64);
667 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
668 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64);
669 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64);
670
671 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type int16 {range min..10|max;}}}", LYS_IN_YANG));
672 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
673 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
674 assert_non_null(type);
675 assert_int_equal(LY_TYPE_INT16, type->basetype);
676 assert_non_null(((struct lysc_type_num*)type)->range);
677 assert_non_null(((struct lysc_type_num*)type)->range->parts);
678 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
679 assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64);
680 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
681 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64);
682 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64);
683
684 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;leaf l {type int32 {range min..10|max;}}}", LYS_IN_YANG));
685 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
686 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
687 assert_non_null(type);
688 assert_int_equal(LY_TYPE_INT32, type->basetype);
689 assert_non_null(((struct lysc_type_num*)type)->range);
690 assert_non_null(((struct lysc_type_num*)type)->range->parts);
691 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
692 assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64);
693 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
694 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64);
695 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64);
696
697 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type int64 {range min..10|max;}}}", LYS_IN_YANG));
698 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
699 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
700 assert_non_null(type);
701 assert_int_equal(LY_TYPE_INT64, type->basetype);
702 assert_non_null(((struct lysc_type_num*)type)->range);
703 assert_non_null(((struct lysc_type_num*)type)->range->parts);
704 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
705 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64);
706 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
707 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64);
708 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64);
709
710 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e;leaf l {type uint8 {range min..10|max;}}}", LYS_IN_YANG));
711 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
712 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
713 assert_non_null(type);
714 assert_int_equal(LY_TYPE_UINT8, type->basetype);
715 assert_non_null(((struct lysc_type_num*)type)->range);
716 assert_non_null(((struct lysc_type_num*)type)->range->parts);
717 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
718 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
719 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
720 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
721 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
722
723 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;leaf l {type uint16 {range min..10|max;}}}", LYS_IN_YANG));
724 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
725 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
726 assert_non_null(type);
727 assert_int_equal(LY_TYPE_UINT16, type->basetype);
728 assert_non_null(((struct lysc_type_num*)type)->range);
729 assert_non_null(((struct lysc_type_num*)type)->range->parts);
730 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
731 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
732 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
733 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
734 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
735
736 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;leaf l {type uint32 {range min..10|max;}}}", LYS_IN_YANG));
737 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
738 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
739 assert_non_null(type);
740 assert_int_equal(LY_TYPE_UINT32, type->basetype);
741 assert_non_null(((struct lysc_type_num*)type)->range);
742 assert_non_null(((struct lysc_type_num*)type)->range->parts);
743 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
744 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
745 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
746 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
747 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
748
749 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;leaf l {type uint64 {range min..10|max;}}}", LYS_IN_YANG));
750 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
751 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
752 assert_non_null(type);
753 assert_int_equal(LY_TYPE_UINT64, type->basetype);
754 assert_non_null(((struct lysc_type_num*)type)->range);
755 assert_non_null(((struct lysc_type_num*)type)->range->parts);
756 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
757 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
758 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
759 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
760 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
761
762 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}"
763 "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG));
764 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
765 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
766 assert_non_null(type);
767 assert_int_equal(3, type->refcount);
768 assert_int_equal(LY_TYPE_UINT8, type->basetype);
769 assert_non_null(((struct lysc_type_num*)type)->range);
770 assert_non_null(((struct lysc_type_num*)type)->range->parts);
771 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
772
773 *state = NULL;
774 ly_ctx_destroy(ctx, NULL);
775}
776
777static void
778test_type_length(void **state)
779{
780 *state = test_type_length;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100781
782 struct ly_ctx *ctx;
783 struct lys_module *mod;
784 struct lysc_type *type;
785
786 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
787
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100788 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type binary {length min {error-app-tag errortag;error-message error;}}}}", LYS_IN_YANG));
Radek Krejci4f28eda2018-11-12 11:46:16 +0100789 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
790 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
791 assert_non_null(type);
792 assert_non_null(((struct lysc_type_bin*)type)->length);
793 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100794 assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag);
795 assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100796 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
797 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
798 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
799
800 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type binary {length max;}}}", LYS_IN_YANG));
801 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
802 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
803 assert_non_null(type);
804 assert_non_null(((struct lysc_type_bin*)type)->length);
805 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
806 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
Radek Krejci0fe20752018-11-27 11:33:24 +0100807 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
808 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100809
810 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;leaf l {type binary {length min..max;}}}", LYS_IN_YANG));
811 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
812 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
813 assert_non_null(type);
814 assert_non_null(((struct lysc_type_bin*)type)->length);
815 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
816 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
817 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci0fe20752018-11-27 11:33:24 +0100818 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100819
820 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type binary {length 5;}}}", LYS_IN_YANG));
821 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
822 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
823 assert_non_null(type);
824 assert_non_null(((struct lysc_type_bin*)type)->length);
825 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
826 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
827 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
828 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
829
830 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e;leaf l {type binary {length 1..10;}}}", LYS_IN_YANG));
831 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
832 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
833 assert_non_null(type);
834 assert_non_null(((struct lysc_type_bin*)type)->length);
835 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
836 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
837 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
838 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
839
840 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;leaf l {type binary {length 1..10|20..30;}}}", LYS_IN_YANG));
841 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
842 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
843 assert_non_null(type);
844 assert_non_null(((struct lysc_type_bin*)type)->length);
845 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
846 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
847 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
848 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
849 assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
850 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
851
852 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;leaf l {type binary {length \"16 | 32\";}}}", LYS_IN_YANG));
853 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
854 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
855 assert_non_null(type);
856 assert_non_null(((struct lysc_type_bin*)type)->length);
857 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
858 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
859 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
860 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
861 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
862 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
863
Radek Krejcib31c8992018-11-12 16:29:16 +0100864 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}"
865 "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG));
866 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
867 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
868 assert_non_null(type);
869 assert_non_null(((struct lysc_type_bin*)type)->length);
870 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
871 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
872 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
873 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
874
875 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}"
876 "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG));
877 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
878 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
879 assert_non_null(type);
880 assert_non_null(((struct lysc_type_bin*)type)->length);
881 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
882 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
883 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
884 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
885
886 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}"
887 "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG));
888 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
889 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
890 assert_non_null(type);
891 assert_non_null(((struct lysc_type_bin*)type)->length);
892 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
893 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
894 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
895 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
896 assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
897 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
898
899 assert_non_null(mod = lys_parse_mem(ctx, "module k {namespace urn:k;prefix k;typedef mytype {type binary {length 10..100;}}"
Radek Krejci56aa27c2018-11-13 14:21:59 +0100900 "leaf l {type mytype {length \"10..80\";}}leaf ll {type mytype;}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +0100901 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
902 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
903 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100904 assert_int_equal(1, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +0100905 assert_non_null(((struct lysc_type_bin*)type)->length);
906 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
907 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
908 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100909 assert_int_equal(80, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejcib31c8992018-11-12 16:29:16 +0100910 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
911 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100912 assert_int_equal(2, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +0100913 assert_non_null(((struct lysc_type_bin*)type)->length);
914 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
915 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
916 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
917 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
918
Radek Krejci56aa27c2018-11-13 14:21:59 +0100919 assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}"
920 "typedef mytype2 {type mytype {pattern '[0-9]*';}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
Radek Krejci9a191e62018-11-13 13:19:56 +0100921 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
922 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
923 assert_non_null(type);
924 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100925 assert_int_equal(1, type->refcount);
Radek Krejcicda74152018-11-13 15:27:32 +0100926 assert_non_null(((struct lysc_type_str*)type)->length);
927 assert_non_null(((struct lysc_type_str*)type)->length->parts);
928 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
929 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
930 assert_int_equal(100, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
Radek Krejci9a191e62018-11-13 13:19:56 +0100931
Radek Krejci5969f272018-11-23 10:03:58 +0100932 assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;typedef mytype {type string {length 10;}}"
933 "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG));
934 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
935 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
936 assert_non_null(type);
937 assert_int_equal(LY_TYPE_STRING, type->basetype);
938 assert_int_equal(1, type->refcount);
939 assert_non_null(((struct lysc_type_str*)type)->length);
940 assert_non_null(((struct lysc_type_str*)type)->length->parts);
941 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
942 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
943 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
944
Radek Krejci4f28eda2018-11-12 11:46:16 +0100945 /* invalid values */
946 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG));
947 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
948 logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations.");
949 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG));
950 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
951 logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\".");
952 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;leaf l {type binary {length \"max .. 10\";}}}", LYS_IN_YANG));
953 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
954 logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10).");
955 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf l {type binary {length 50..10;}}}", LYS_IN_YANG));
956 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
957 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
958 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type binary {length \"50 | 10\";}}}", LYS_IN_YANG));
959 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
960 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
961 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG));
962 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
963 logbuf_assert("Invalid length restriction - unexpected data (x).");
Radek Krejcib31c8992018-11-12 16:29:16 +0100964 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type binary {length \"50 | min\";}}}", LYS_IN_YANG));
965 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
966 logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | ).");
967 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG));
968 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
969 logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50).");
970 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG));
971 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
972 logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..).");
973 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG));
974 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
975 logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound.");
976 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG));
977 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
978 logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |).");
Radek Krejci6489bbe2018-11-12 17:05:19 +0100979 assert_non_null(mod = lys_parse_mem(ctx, "module kl {namespace urn:kl;prefix kl;leaf l {type binary {length \"10..20 | 15..30\";}}}", LYS_IN_YANG));
980 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
981 logbuf_assert("Invalid length restriction - values are not in ascending order (15).");
Radek Krejcib31c8992018-11-12 16:29:16 +0100982
983 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}"
984 "leaf l {type mytype {length 11;}}}", LYS_IN_YANG));
985 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
986 logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting.");
987 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}"
988 "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG));
989 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
990 logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting.");
991 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}"
992 "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG));
993 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
994 logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting.");
995 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}"
996 "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG));
997 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
998 logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting.");
999 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}"
1000 "leaf l {type mytype {length 15;}}}", LYS_IN_YANG));
1001 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1002 logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting.");
1003 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}"
1004 "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG));
1005 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1006 logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting.");
Radek Krejci6489bbe2018-11-12 17:05:19 +01001007 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}"
1008 "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG));
1009 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1010 logbuf_assert("Invalid length restriction - the derived restriction (10..35) is not equally or more limiting.");
Radek Krejcib31c8992018-11-12 16:29:16 +01001011
Radek Krejci495903e2018-11-13 11:30:45 +01001012 assert_non_null(mod = lys_parse_mem(ctx, "module ss {namespace urn:rr;prefix rr;leaf l {type binary {pattern '[0-9]*';}}}", LYS_IN_YANG));
1013 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1014 logbuf_assert("Invalid type restrictions for binary type.");
1015
Radek Krejci4f28eda2018-11-12 11:46:16 +01001016 *state = NULL;
1017 ly_ctx_destroy(ctx, NULL);
1018}
1019
Radek Krejcicda74152018-11-13 15:27:32 +01001020static void
1021test_type_pattern(void **state)
1022{
1023 *state = test_type_pattern;
1024
1025 struct ly_ctx *ctx;
1026 struct lys_module *mod;
1027 struct lysc_type *type;
1028
1029 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1030
Radek Krejci027d5802018-11-14 16:57:28 +01001031 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1; namespace urn:a;prefix a;leaf l {type string {"
Radek Krejcicda74152018-11-13 15:27:32 +01001032 "pattern .* {error-app-tag errortag;error-message error;}"
1033 "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG));
1034 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1035 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1036 assert_non_null(type);
1037 assert_non_null(((struct lysc_type_str*)type)->patterns);
1038 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1039 assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag);
1040 assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg);
1041 assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted);
1042 assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag);
1043 assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg);
1044 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted);
1045
1046 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}"
1047 "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
1048 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1049 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1050 assert_non_null(type);
1051 assert_int_equal(LY_TYPE_STRING, type->basetype);
1052 assert_int_equal(1, type->refcount);
1053 assert_non_null(((struct lysc_type_str*)type)->patterns);
1054 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1055 assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1056 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount);
1057
Radek Krejci04bc1e92018-11-14 14:28:13 +01001058 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}"
1059 "leaf l {type mytype {length 10;}}}", LYS_IN_YANG));
1060 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1061 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1062 assert_non_null(type);
1063 assert_int_equal(LY_TYPE_STRING, type->basetype);
1064 assert_int_equal(1, type->refcount);
1065 assert_non_null(((struct lysc_type_str*)type)->patterns);
1066 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1067 assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1068
Radek Krejcicda74152018-11-13 15:27:32 +01001069 /* test substitutions */
Radek Krejci04bc1e92018-11-14 14:28:13 +01001070 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type string {"
Radek Krejcicda74152018-11-13 15:27:32 +01001071 "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG));
1072 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1073 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1074 assert_non_null(type);
1075 assert_non_null(((struct lysc_type_str*)type)->patterns);
1076 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1077 /* TODO check some data "^Å™$" */
1078
1079 *state = NULL;
1080 ly_ctx_destroy(ctx, NULL);
1081}
1082
Radek Krejci8b764662018-11-14 14:15:13 +01001083static void
1084test_type_enum(void **state)
1085{
1086 *state = test_type_enum;
1087
1088 struct ly_ctx *ctx;
1089 struct lys_module *mod;
1090 struct lysc_type *type;
1091
1092 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1093
Radek Krejci027d5802018-11-14 16:57:28 +01001094 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1; namespace urn:a;prefix a;feature f; leaf l {type enumeration {"
Radek Krejci8b764662018-11-14 14:15:13 +01001095 "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}"
1096 "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG));
1097 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1098 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1099 assert_non_null(type);
1100 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1101 assert_non_null(((struct lysc_type_enum*)type)->enums);
1102 assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1103 assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures);
1104 assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name);
1105 assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value);
1106 assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name);
1107 assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value);
1108 assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name);
1109 assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value);
1110 assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name);
1111 assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value);
1112 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name);
1113 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value);
1114 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name);
1115 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value);
1116
Radek Krejci027d5802018-11-14 16:57:28 +01001117 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1; namespace urn:b;prefix b;feature f; typedef mytype {type enumeration {"
1118 "enum 11; enum min {value -2147483648;}enum x$&;"
Radek Krejci8b764662018-11-14 14:15:13 +01001119 "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}",
1120 LYS_IN_YANG));
1121 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1122 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1123 assert_non_null(type);
1124 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1125 assert_non_null(((struct lysc_type_enum*)type)->enums);
1126 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1127 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name);
1128 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value);
1129 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name);
1130 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value);
1131
1132
1133 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001134 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {"
1135 "enum one {if-feature f;}}}}", LYS_IN_YANG));
1136 logbuf_assert("Invalid keyword \"if-feature\" as a child of \"enum\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
Radek Krejci8b764662018-11-14 14:15:13 +01001137 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1138 "enum one {value -2147483649;}}}}", LYS_IN_YANG));
1139 logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1.");
1140 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1141 "enum one {value 2147483648;}}}}", LYS_IN_YANG));
1142 logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1.");
1143 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1144 "enum one; enum one;}}}", LYS_IN_YANG));
1145 logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1.");
1146 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1147 "enum '';}}}", LYS_IN_YANG));
1148 logbuf_assert("Enum name must not be zero-length. Line number 1.");
1149 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1150 "enum ' x';}}}", LYS_IN_YANG));
1151 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1.");
1152 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1153 "enum 'x ';}}}", LYS_IN_YANG));
1154 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1.");
1155 assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1156 "enum 'inva\nlid';}}}", LYS_IN_YANG));
1157 logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5).");
1158
1159 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG));
1160 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1161 logbuf_assert("Missing enum substatement for enumeration type.");
1162
Radek Krejci027d5802018-11-14 16:57:28 +01001163 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type enumeration {enum one;}}"
Radek Krejci8b764662018-11-14 14:15:13 +01001164 "leaf l {type mytype {enum two;}}}", LYS_IN_YANG));
1165 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1166 logbuf_assert("Invalid enumeration - derived type adds new item \"two\".");
1167
Radek Krejci027d5802018-11-14 16:57:28 +01001168 assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type enumeration {enum one;}}"
Radek Krejci8b764662018-11-14 14:15:13 +01001169 "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG));
1170 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1171 logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type.");
1172 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type enumeration {enum x {value 2147483647;}enum y;}}}",
1173 LYS_IN_YANG));
1174 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1175 logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647.");
1176
1177 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type enumeration {enum x {value 1;}enum y {value 1;}}}}",
1178 LYS_IN_YANG));
1179 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1180 logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\".");
1181
Radek Krejci04bc1e92018-11-14 14:28:13 +01001182 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}"
1183 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1184 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001185 logbuf_assert("Missing enum substatement for enumeration type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001186
Radek Krejci027d5802018-11-14 16:57:28 +01001187 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}"
1188 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1189 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1190 logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules.");
1191
Radek Krejci8b764662018-11-14 14:15:13 +01001192 *state = NULL;
1193 ly_ctx_destroy(ctx, NULL);
1194}
1195
1196static void
1197test_type_bits(void **state)
1198{
1199 *state = test_type_bits;
1200
1201 struct ly_ctx *ctx;
1202 struct lys_module *mod;
1203 struct lysc_type *type;
1204
1205 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1206
Radek Krejci027d5802018-11-14 16:57:28 +01001207 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1; namespace urn:a;prefix a;feature f; leaf l {type bits {"
Radek Krejci8b764662018-11-14 14:15:13 +01001208 "bit automin; bit one {if-feature f; position 1;}"
1209 "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG));
1210 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1211 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1212 assert_non_null(type);
1213 assert_int_equal(LY_TYPE_BITS, type->basetype);
1214 assert_non_null(((struct lysc_type_bits*)type)->bits);
1215 assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1216 assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures);
1217 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1218 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1219 assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name);
1220 assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position);
1221 assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name);
1222 assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position);
1223 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name);
1224 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position);
1225 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name);
1226 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position);
1227
Radek Krejci027d5802018-11-14 16:57:28 +01001228 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;feature f; typedef mytype {type bits {"
1229 "bit automin; bit one;bit two; bit seven {value 7;}bit eight;}} leaf l { type mytype {bit eight;bit seven;bit automin;}}}",
Radek Krejci8b764662018-11-14 14:15:13 +01001230 LYS_IN_YANG));
1231 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1232 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1233 assert_non_null(type);
1234 assert_int_equal(LY_TYPE_BITS, type->basetype);
1235 assert_non_null(((struct lysc_type_bits*)type)->bits);
Radek Krejci027d5802018-11-14 16:57:28 +01001236 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1237 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1238 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1239 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name);
1240 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position);
1241 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name);
1242 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position);
Radek Krejci8b764662018-11-14 14:15:13 +01001243
1244
1245 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001246 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {"
1247 "bit one {if-feature f;}}}}", LYS_IN_YANG));
1248 logbuf_assert("Invalid keyword \"if-feature\" as a child of \"bit\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
Radek Krejci8b764662018-11-14 14:15:13 +01001249 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1250 "bit one {position -1;}}}}", LYS_IN_YANG));
1251 logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1.");
1252 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1253 "bit one {value 4294967296;}}}}", LYS_IN_YANG));
1254 logbuf_assert("Invalid value \"4294967296\" of \"value\". Line number 1.");
1255 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1256 "bit one; bit one;}}}", LYS_IN_YANG));
1257 logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1.");
1258 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1259 "bit '11';}}}", LYS_IN_YANG));
1260 logbuf_assert("Invalid identifier first character '1'. Line number 1.");
1261 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1262 "bit 'x1$1';}}}", LYS_IN_YANG));
1263 logbuf_assert("Invalid identifier character '$'. Line number 1.");
1264
1265 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG));
1266 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1267 logbuf_assert("Missing bit substatement for bits type.");
1268
Radek Krejci027d5802018-11-14 16:57:28 +01001269 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type bits {bit one;}}"
Radek Krejci8b764662018-11-14 14:15:13 +01001270 "leaf l {type mytype {bit two;}}}", LYS_IN_YANG));
1271 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1272 logbuf_assert("Invalid bits - derived type adds new item \"two\".");
1273
Radek Krejci027d5802018-11-14 16:57:28 +01001274 assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type bits {bit one;}}"
Radek Krejci8b764662018-11-14 14:15:13 +01001275 "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG));
1276 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1277 logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type.");
1278 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type bits {bit x {position 4294967295;}bit y;}}}",
1279 LYS_IN_YANG));
1280 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1281 logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295.");
1282
1283 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type bits {bit x {value 1;}bit y {value 1;}}}}",
1284 LYS_IN_YANG));
1285 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1286 logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\".");
1287
Radek Krejci04bc1e92018-11-14 14:28:13 +01001288 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}"
1289 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1290 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001291 logbuf_assert("Missing bit substatement for bits type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001292
Radek Krejci027d5802018-11-14 16:57:28 +01001293 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}"
1294 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1295 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1296 logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules.");
1297
Radek Krejci8b764662018-11-14 14:15:13 +01001298 *state = NULL;
1299 ly_ctx_destroy(ctx, NULL);
1300}
1301
Radek Krejci6cba4292018-11-15 17:33:29 +01001302static void
1303test_type_dec64(void **state)
1304{
1305 *state = test_type_dec64;
1306
1307 struct ly_ctx *ctx;
1308 struct lys_module *mod;
1309 struct lysc_type *type;
1310
1311 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1312
1313 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type decimal64 {"
1314 "fraction-digits 2;range min..max;}}}", LYS_IN_YANG));
1315 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1316 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1317 assert_non_null(type);
1318 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1319 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1320 assert_non_null(((struct lysc_type_dec*)type)->range);
1321 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1322 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1323 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1324 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1325
1326 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type decimal64 {"
1327 "fraction-digits 2;range '3.14 | 5.1 | 10';}}leaf l {type mytype;}}", LYS_IN_YANG));
1328 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1329 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1330 assert_non_null(type);
1331 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1332 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1333 assert_non_null(((struct lysc_type_dec*)type)->range);
1334 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1335 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1336 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1337 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1338 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].min_64);
1339 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].max_64);
1340 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].min_64);
1341 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].max_64);
1342
1343 /* invalid cases */
1344 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 0;}}}", LYS_IN_YANG));
1345 logbuf_assert("Invalid value \"0\" of \"fraction-digits\". Line number 1.");
1346 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits -1;}}}", LYS_IN_YANG));
1347 logbuf_assert("Invalid value \"-1\" of \"fraction-digits\". Line number 1.");
1348 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 19;}}}", LYS_IN_YANG));
1349 logbuf_assert("Value \"19\" is out of \"fraction-digits\" bounds. Line number 1.");
1350
1351 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64;}}", LYS_IN_YANG));
1352 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1353 logbuf_assert("Missing fraction-digits substatement for decimal64 type.");
1354
Radek Krejci643c8242018-11-15 17:51:11 +01001355 assert_non_null(mod = lys_parse_mem(ctx, "module ab {namespace urn:ab;prefix ab; typedef mytype {type decimal64;}leaf l {type mytype;}}", LYS_IN_YANG));
1356 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001357 logbuf_assert("Missing fraction-digits substatement for decimal64 type mytype.");
Radek Krejci643c8242018-11-15 17:51:11 +01001358
Radek Krejci6cba4292018-11-15 17:33:29 +01001359 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type decimal64 {fraction-digits 2;"
1360 "range '3.142';}}}", LYS_IN_YANG));
1361 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1362 logbuf_assert("Range boundary \"3.142\" of decimal64 type exceeds defined number (2) of fraction digits.");
1363
1364 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; leaf l {type decimal64 {fraction-digits 2;"
1365 "range '4 | 3.14';}}}", LYS_IN_YANG));
1366 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1367 logbuf_assert("Invalid range restriction - values are not in ascending order (3.14).");
1368
Radek Krejci643c8242018-11-15 17:51:11 +01001369 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; typedef mytype {type decimal64 {fraction-digits 2;}}"
1370 "leaf l {type mytype {fraction-digits 3;}}}", LYS_IN_YANG));
1371 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1372 logbuf_assert("Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
1373
1374 assert_non_null(mod = lys_parse_mem(ctx, "module de {namespace urn:de;prefix de; typedef mytype {type decimal64 {fraction-digits 2;}}"
1375 "typedef mytype2 {type mytype {fraction-digits 3;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1376 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1377 logbuf_assert("Invalid fraction-digits substatement for type \"mytype2\" not directly derived from decimal64 built-in type.");
1378
Radek Krejci6cba4292018-11-15 17:33:29 +01001379 *state = NULL;
1380 ly_ctx_destroy(ctx, NULL);
1381}
1382
Radek Krejci16c0f822018-11-16 10:46:10 +01001383static void
1384test_type_instanceid(void **state)
1385{
1386 *state = test_type_instanceid;
1387
1388 struct ly_ctx *ctx;
1389 struct lys_module *mod;
1390 struct lysc_type *type;
1391
1392 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1393
1394 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;typedef mytype {type instance-identifier {require-instance false;}}"
1395 "leaf l1 {type instance-identifier {require-instance true;}}"
1396 "leaf l2 {type mytype;} leaf l3 {type instance-identifier;}}", LYS_IN_YANG));
1397 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1398 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1399 assert_non_null(type);
1400 assert_int_equal(LY_TYPE_INST, type->basetype);
1401 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1402
1403 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1404 assert_non_null(type);
1405 assert_int_equal(LY_TYPE_INST, type->basetype);
1406 assert_int_equal(0, ((struct lysc_type_instanceid*)type)->require_instance);
1407
1408 type = ((struct lysc_node_leaf*)mod->compiled->data->next->next)->type;
1409 assert_non_null(type);
1410 assert_int_equal(LY_TYPE_INST, type->basetype);
1411 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1412
1413 /* invalid cases */
1414 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {require-instance yes;}}}", LYS_IN_YANG));
1415 logbuf_assert("Invalid value \"yes\" of \"require-instance\". Line number 1.");
1416
1417 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {fraction-digits 1;}}}", LYS_IN_YANG));
1418 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1419 logbuf_assert("Invalid type restrictions for instance-identifier type.");
1420
1421 *state = NULL;
1422 ly_ctx_destroy(ctx, NULL);
1423}
1424
Radek Krejci555cb5b2018-11-16 14:54:33 +01001425static void
1426test_type_identityref(void **state)
1427{
1428 *state = test_type_identityref;
1429
1430 struct ly_ctx *ctx;
1431 struct lys_module *mod;
1432 struct lysc_type *type;
1433
1434 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1435
1436 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;identity i; identity j; identity k {base i;}"
1437 "typedef mytype {type identityref {base i;}}"
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001438 "leaf l1 {type mytype;} leaf l2 {type identityref {base a:k; base j;}}}", LYS_IN_YANG));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001439 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1440 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1441 assert_non_null(type);
1442 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1443 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1444 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1445 assert_string_equal("i", ((struct lysc_type_identityref*)type)->bases[0]->name);
1446
1447 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1448 assert_non_null(type);
1449 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1450 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1451 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1452 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1453 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1454
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001455 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import a {prefix a;}"
1456 "leaf l {type identityref {base a:k; base a:j;}}}", LYS_IN_YANG));
1457 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1458 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1459 assert_non_null(type);
1460 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1461 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1462 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1463 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1464 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1465
Radek Krejci555cb5b2018-11-16 14:54:33 +01001466 /* invalid cases */
1467 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type identityref;}}", LYS_IN_YANG));
1468 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1469 logbuf_assert("Missing base substatement for identityref type.");
1470
1471 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; typedef mytype {type identityref;}"
1472 "leaf l {type mytype;}}", LYS_IN_YANG));
1473 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1474 logbuf_assert("Missing base substatement for identityref type mytype.");
1475
1476 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; identity i; typedef mytype {type identityref {base i;}}"
1477 "leaf l {type mytype {base i;}}}", LYS_IN_YANG));
1478 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001479 logbuf_assert("Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001480
1481 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; identity i; typedef mytype {type identityref {base i;}}"
1482 "typedef mytype2 {type mytype {base i;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1483 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001484 logbuf_assert("Invalid base substatement for the type \"mytype2\" not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001485
1486 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; identity i; identity j;"
1487 "leaf l {type identityref {base i;base j;}}}", LYS_IN_YANG));
1488 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1489 logbuf_assert("Multiple bases in identityref type are allowed only in YANG 1.1 modules.");
1490
Radek Krejci322614f2018-11-16 15:05:44 +01001491 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff; identity i;leaf l {type identityref {base j;}}}", LYS_IN_YANG));
1492 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1493 logbuf_assert("Unable to find base (j) of identityref.");
1494
1495 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type identityref {base x:j;}}}", LYS_IN_YANG));
1496 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1497 logbuf_assert("Invalid prefix used for base (x:j) of identityref.");
1498
Radek Krejci555cb5b2018-11-16 14:54:33 +01001499 *state = NULL;
1500 ly_ctx_destroy(ctx, NULL);
1501}
1502
Radek Krejcia3045382018-11-22 14:30:31 +01001503static void
1504test_type_leafref(void **state)
1505{
1506 *state = test_type_leafref;
1507
1508 struct ly_ctx *ctx;
1509 struct lys_module *mod;
1510 struct lysc_type *type;
1511 const char *path, *name, *prefix;
1512 size_t prefix_len, name_len;
1513 int parent_times, has_predicate;
1514
1515 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1516
1517 /* lys_path_token() */
1518 path = "invalid_path";
1519 parent_times = 0;
1520 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1521 path = "..";
1522 parent_times = 0;
1523 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1524 path = "..[";
1525 parent_times = 0;
1526 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1527 path = "../";
1528 parent_times = 0;
1529 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1530 path = "/";
1531 parent_times = 0;
1532 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1533
1534 path = "../../pref:id/xxx[predicate]/invalid!!!";
1535 parent_times = 0;
1536 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1537 assert_string_equal("/xxx[predicate]/invalid!!!", path);
1538 assert_int_equal(4, prefix_len);
1539 assert_int_equal(0, strncmp("pref", prefix, prefix_len));
1540 assert_int_equal(2, name_len);
1541 assert_int_equal(0, strncmp("id", name, name_len));
1542 assert_int_equal(2, parent_times);
1543 assert_int_equal(0, has_predicate);
1544 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1545 assert_string_equal("[predicate]/invalid!!!", path);
1546 assert_int_equal(0, prefix_len);
1547 assert_null(prefix);
1548 assert_int_equal(3, name_len);
1549 assert_int_equal(0, strncmp("xxx", name, name_len));
1550 assert_int_equal(1, has_predicate);
1551 path += 11;
1552 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1553 assert_string_equal("!!!", path);
1554 assert_int_equal(0, prefix_len);
1555 assert_null(prefix);
1556 assert_int_equal(7, name_len);
1557 assert_int_equal(0, strncmp("invalid", name, name_len));
1558
1559 path = "/absolute/prefix:path";
1560 parent_times = 0;
1561 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1562 assert_string_equal("/prefix:path", path);
1563 assert_int_equal(0, prefix_len);
1564 assert_null(prefix);
1565 assert_int_equal(8, name_len);
1566 assert_int_equal(0, strncmp("absolute", name, name_len));
1567 assert_int_equal(-1, parent_times);
1568 assert_int_equal(0, has_predicate);
1569 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1570 assert_int_equal(0, *path);
1571 assert_int_equal(6, prefix_len);
1572 assert_int_equal(0, strncmp("prefix", prefix, prefix_len));
1573 assert_int_equal(4, name_len);
1574 assert_int_equal(0, strncmp("path", name, name_len));
1575 assert_int_equal(0, has_predicate);
1576
1577 /* complete leafref paths */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001578 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;"
Radek Krejcia3045382018-11-22 14:30:31 +01001579 "leaf ref1 {type leafref {path /a:target1;}} leaf ref2 {type leafref {path /a/target2; require-instance false;}}"
1580 "leaf target1 {type string;}container a {leaf target2 {type uint8;}}}", LYS_IN_YANG));
1581 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1582 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1583 assert_non_null(type);
1584 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1585 assert_string_equal("/a:target1", ((struct lysc_type_leafref*)type)->path);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001586 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001587 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1588 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001589 assert_int_equal(1, ((struct lysc_type_leafref*)type)->require_instance);
1590 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1591 assert_non_null(type);
1592 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1593 assert_string_equal("/a/target2", ((struct lysc_type_leafref*)type)->path);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001594 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1595 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1596 assert_int_equal(LY_TYPE_UINT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001597 assert_int_equal(0, ((struct lysc_type_leafref*)type)->require_instance);
1598
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001599 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mytype {type leafref {path /b:target;}}"
Radek Krejci4ce68932018-11-28 12:53:36 +01001600 "typedef mytype2 {type mytype;} typedef mytype3 {type leafref {path /target;}} leaf ref {type mytype2;}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01001601 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type string;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001602 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1603 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1604 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001605 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001606 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1607 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1608 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001609 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1610 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001611 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1612
1613 /* prefixes are reversed to check using correct context of the path! */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001614 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix b; import b {prefix c;}"
Radek Krejci2f4a0292018-11-22 15:41:53 +01001615 "typedef mytype3 {type c:mytype {require-instance false;}}"
1616 "leaf ref1 {type b:mytype3;}leaf ref2 {type c:mytype2;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001617 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1618 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1619 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001620 assert_int_equal(1, type->refcount);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001621 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1622 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1623 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001624 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1625 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001626 assert_int_equal(0, ((struct lysc_type_leafref* )type)->require_instance);
1627 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1628 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001629 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001630 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1631 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1632 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1633 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1634
Radek Krejci4ce68932018-11-28 12:53:36 +01001635 /* non-prefixed nodes in path are supposed to be from the module where the leafref type is instantiated */
1636 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; import b {prefix b;}"
1637 "leaf ref {type b:mytype3;}leaf target {type int8;}}", LYS_IN_YANG));
1638 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1639 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1640 assert_non_null(type);
1641 assert_int_equal(1, type->refcount);
1642 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1643 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1644 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1645 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1646 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
1647 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1648
Radek Krejci58d171e2018-11-23 13:50:55 +01001649 /* conditional leafrefs */
Radek Krejci4ce68932018-11-28 12:53:36 +01001650 assert_non_null(mod = lys_parse_mem(ctx, "module e {yang-version 1.1;namespace urn:e;prefix e;feature f1; feature f2;"
Radek Krejci58d171e2018-11-23 13:50:55 +01001651 "leaf ref1 {if-feature 'f1 and f2';type leafref {path /target;}}"
1652 "leaf target {if-feature f1; type boolean;}}", LYS_IN_YANG));
1653 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1654 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1655 assert_non_null(type);
1656 assert_int_equal(1, type->refcount);
1657 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1658 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1659 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1660 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1661 assert_int_equal(LY_TYPE_BOOL, ((struct lysc_type_leafref*)type)->realtype->basetype);
1662
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001663 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;"
1664 "list interface{key name;leaf name{type string;}list address {key ip;leaf ip {type string;}}}"
1665 "container default-address{leaf ifname{type leafref{ path \"../../interface/name\";}}"
Radek Krejcibade82a2018-12-05 10:13:48 +01001666 "leaf address {type leafref{ path \"../../interface[ name = current()/../ifname ]/address/ip\";}}}}",
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001667 LYS_IN_YANG));
1668 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1669 type = ((struct lysc_node_leaf*)(*lysc_node_children(mod->compiled->data->prev))->prev)->type;
1670 assert_non_null(type);
1671 assert_int_equal(1, type->refcount);
1672 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
Radek Krejcibade82a2018-12-05 10:13:48 +01001673 assert_string_equal("../../interface[ name = current()/../ifname ]/address/ip", ((struct lysc_type_leafref* )type)->path);
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001674 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1675 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1676 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001677
Radek Krejcia3045382018-11-22 14:30:31 +01001678 /* invalid paths */
1679 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container a {leaf target2 {type uint8;}}"
1680 "leaf ref1 {type leafref {path ../a/invalid;}}}", LYS_IN_YANG));
1681 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1682 logbuf_assert("Invalid leafref path - unable to find \"../a/invalid\".");
1683 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;container a {leaf target2 {type uint8;}}"
1684 "leaf ref1 {type leafref {path ../../toohigh;}}}", LYS_IN_YANG));
1685 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1686 logbuf_assert("Invalid leafref path \"../../toohigh\" - too many \"..\" in the path.");
1687 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;container a {leaf target2 {type uint8;}}"
1688 "leaf ref1 {type leafref {path /a:invalid;}}}", LYS_IN_YANG));
1689 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1690 logbuf_assert("Invalid leafref path - unable to find module connected with the prefix of the node \"/a:invalid\".");
1691 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf target1 {type string;}container a {leaf target2 {type uint8;}}"
1692 "leaf ref1 {type leafref {path '/a[target2 = current()/../target1]/target2';}}}", LYS_IN_YANG));
1693 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1694 logbuf_assert("Invalid leafref path - node \"/a\" is expected to be a list, but it is container.");
1695 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;container a {leaf target2 {type uint8;}}"
1696 "leaf ref1 {type leafref {path /a!invalid;}}}", LYS_IN_YANG));
1697 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1698 logbuf_assert("Invalid leafref path at character 3 (/a!invalid).");
1699 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;container a {leaf target2 {type uint8;}}"
1700 "leaf ref1 {type leafref {path /a;}}}", LYS_IN_YANG));
1701 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1702 logbuf_assert("Invalid leafref path \"/a\" - target node is container instead of leaf or leaf-list.");
1703 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;container a {leaf target2 {type uint8; status deprecated;}}"
1704 "leaf ref1 {type leafref {path /a/target2;}}}", LYS_IN_YANG));
1705 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1706 logbuf_assert("A current definition \"ref1\" is not allowed to reference deprecated definition \"target2\".");
Radek Krejci2f4a0292018-11-22 15:41:53 +01001707 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
1708 "leaf ref1 {type leafref;}}", LYS_IN_YANG));
1709 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1710 logbuf_assert("Missing path substatement for leafref type.");
1711 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;typedef mytype {type leafref;}"
1712 "leaf ref1 {type mytype;}}", LYS_IN_YANG));
1713 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1714 logbuf_assert("Missing path substatement for leafref type mytype.");
Radek Krejci58d171e2018-11-23 13:50:55 +01001715 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;feature f;"
1716 "leaf ref {type leafref {path /target;}}leaf target {if-feature f;type string;}}", LYS_IN_YANG));
1717 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1718 logbuf_assert("Invalid leafref path \"/target\" - set of features applicable to the leafref target is not a subset of features "
1719 "applicable to the leafref itself.");
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001720 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
1721 "leaf ref {type leafref {path /target;}}leaf target {type string;config false;}}", LYS_IN_YANG));
1722 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1723 logbuf_assert("Invalid leafref path \"/target\" - target is supposed to represent configuration data (as the leafref does), but it does not.");
Radek Krejci58d171e2018-11-23 13:50:55 +01001724
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001725 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
1726 "leaf ref {type leafref {path /target; require-instance true;}}leaf target {type string;}}", LYS_IN_YANG));
1727 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1728 logbuf_assert("Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
1729 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type leafref {path /target;require-instance false;}}"
1730 "leaf ref {type mytype;}leaf target {type string;}}", LYS_IN_YANG));
1731 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1732 logbuf_assert("Leafref type \"mytype\" can be restricted by require-instance statement only in YANG 1.1 modules.");
1733
Radek Krejcibade82a2018-12-05 10:13:48 +01001734 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;"
1735 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1736 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1737 "leaf address {type leafref{ path \"/interface[name is current()/../ifname]/ip\";}}}",
1738 LYS_IN_YANG));
1739 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1740 logbuf_assert("Invalid leafref path predicate \"[name i\" - missing \"=\" after node-identifier.");
1741
1742 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;"
1743 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1744 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1745 "leaf address {type leafref{ path \"/interface[name=current()/../ifname/ip\";}}}",
1746 LYS_IN_YANG));
1747 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1748 logbuf_assert("Invalid leafref path predicate \"[name=current()/../ifname/ip\" - missing predicate termination.");
1749
1750 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;"
1751 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1752 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1753 "leaf address {type leafref{ path \"/interface[x:name=current()/../ifname]/ip\";}}}",
1754 LYS_IN_YANG));
1755 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1756 logbuf_assert("Invalid leafref path predicate \"[x:name=current()/../ifname]\" - prefix \"x\" not defined in module \"pp\".");
1757
1758 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;"
1759 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1760 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1761 "leaf address {type leafref{ path \"/interface[id=current()/../ifname]/ip\";}}}",
1762 LYS_IN_YANG));
1763 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1764 logbuf_assert("Invalid leafref path predicate \"[id=current()/../ifname]\" - predicate's key node \"id\" not found.");
1765
1766 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;"
1767 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1768 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1769 "leaf address {type leafref{ path \"/interface[name=current() / .. / ifname][name=current()/../test]/ip\";}}}",
1770 LYS_IN_YANG));
1771 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1772 logbuf_assert("Invalid leafref path predicate \"[name=current()/../test]\" - multiple equality tests for the key \"name\".");
1773
1774 assert_non_null(mod = lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;"
1775 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1776 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1777 "leaf address {type leafref{ path \"/interface[name = ../ifname]/ip\";}}}",
1778 LYS_IN_YANG));
1779 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1780 logbuf_assert("Invalid leafref path predicate \"[name = ../ifname]\" - missing current-function-invocation.");
1781
1782 assert_non_null(mod = lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;"
1783 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1784 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1785 "leaf address {type leafref{ path \"/interface[name = current()../ifname]/ip\";}}}",
1786 LYS_IN_YANG));
1787 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1788 logbuf_assert("Invalid leafref path predicate \"[name = current()../ifname]\" - missing \"/\" after current-function-invocation.");
1789
1790 assert_non_null(mod = lys_parse_mem(ctx, "module uu {namespace urn:uu;prefix uu;"
1791 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1792 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1793 "leaf address {type leafref{ path \"/interface[name = current()/..ifname]/ip\";}}}",
1794 LYS_IN_YANG));
1795 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1796 logbuf_assert("Invalid leafref path predicate \"[name = current()/..ifname]\" - missing \"/\" in \"../\" rel-path-keyexpr pattern.");
1797
1798 assert_non_null(mod = lys_parse_mem(ctx, "module vv {namespace urn:vv;prefix vv;"
1799 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1800 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1801 "leaf address {type leafref{ path \"/interface[name = current()/ifname]/ip\";}}}",
1802 LYS_IN_YANG));
1803 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1804 logbuf_assert("Invalid leafref path predicate \"[name = current()/ifname]\" - at least one \"..\" is expected in rel-path-keyexpr.");
1805
1806 assert_non_null(mod = lys_parse_mem(ctx, "module ww {namespace urn:ww;prefix ww;"
1807 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1808 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1809 "leaf address {type leafref{ path \"/interface[name = current()/../]/ip\";}}}",
1810 LYS_IN_YANG));
1811 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1812 logbuf_assert("Invalid leafref path predicate \"[name = current()/../]\" - at least one node-identifier is expected in rel-path-keyexpr.");
1813
1814 assert_non_null(mod = lys_parse_mem(ctx, "module xx {namespace urn:xx;prefix xx;"
1815 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1816 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1817 "leaf address {type leafref{ path \"/interface[name = current()/../$node]/ip\";}}}",
1818 LYS_IN_YANG));
1819 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1820 logbuf_assert("Invalid node identifier in leafref path predicate - character 22 (of [name = current()/../$node]).");
1821
1822 assert_non_null(mod = lys_parse_mem(ctx, "module yy {namespace urn:yy;prefix yy;"
1823 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1824 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1825 "leaf address {type leafref{ path \"/interface[name=current()/../x:ifname]/ip\";}}}",
1826 LYS_IN_YANG));
1827 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1828 logbuf_assert("Invalid leafref path predicate \"[name=current()/../x:ifname]\" - unable to find module of the node \"ifname\" in rel-path_keyexpr.");
1829
1830 assert_non_null(mod = lys_parse_mem(ctx, "module zz {namespace urn:zz;prefix zz;"
1831 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1832 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1833 "leaf address {type leafref{ path \"/interface[name=current()/../xxx]/ip\";}}}",
1834 LYS_IN_YANG));
1835 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1836 logbuf_assert("Invalid leafref path predicate \"[name=current()/../xxx]\" - unable to find node \"current()/../xxx\" in the rel-path_keyexpr.");
1837
1838 assert_non_null(mod = lys_parse_mem(ctx, "module zza {namespace urn:zza;prefix zza;"
1839 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1840 "leaf ifname{type leafref{ path \"../interface/name\";}}container c;"
1841 "leaf address {type leafref{ path \"/interface[name=current()/../c]/ip\";}}}",
1842 LYS_IN_YANG));
1843 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1844 logbuf_assert("Invalid leafref path predicate \"[name=current()/../c]\" - rel-path_keyexpr \"current()/../c\" refers container instead of leaf.");
1845
1846 assert_non_null(mod = lys_parse_mem(ctx, "module zzb {namespace urn:zzb;prefix zzb;"
1847 "list interface{key name;leaf name{type string;}leaf ip {type string;}container c;}"
1848 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1849 "leaf address {type leafref{ path \"/interface[c=current()/../ifname]/ip\";}}}",
1850 LYS_IN_YANG));
1851 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1852 logbuf_assert("Invalid leafref path predicate \"[c=current()/../ifname]\" - predicate's key node \"c\" not found.");
1853
Radek Krejci412ddfa2018-11-23 11:44:11 +01001854 /* circular chain */
1855 assert_non_null(mod = lys_parse_mem(ctx, "module aaa {namespace urn:aaa;prefix aaa;"
1856 "leaf ref1 {type leafref {path /ref2;}}"
1857 "leaf ref2 {type leafref {path /ref3;}}"
Radek Krejci0c3f1ad2018-11-23 14:19:38 +01001858 "leaf ref3 {type leafref {path /ref4;}}"
1859 "leaf ref4 {type leafref {path /ref1;}}}", LYS_IN_YANG));
Radek Krejci412ddfa2018-11-23 11:44:11 +01001860 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1861 logbuf_assert("Invalid leafref path \"/ref1\" - circular chain of leafrefs detected.");
1862
Radek Krejcia3045382018-11-22 14:30:31 +01001863 *state = NULL;
1864 ly_ctx_destroy(ctx, NULL);
1865}
1866
Radek Krejci43699232018-11-23 14:59:46 +01001867static void
1868test_type_empty(void **state)
1869{
1870 *state = test_type_empty;
1871
1872 struct ly_ctx *ctx;
1873 struct lys_module *mod;
1874
1875 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1876
1877 /* invalid */
1878 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
1879 "leaf l {type empty; default x;}}", LYS_IN_YANG));
1880 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1881 logbuf_assert("Leaf of type \"empty\" must not have a default value (x).");
1882
1883 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;typedef mytype {type empty; default x;}"
1884 "leaf l {type mytype;}}", LYS_IN_YANG));
1885 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1886 logbuf_assert("Invalid type \"mytype\" - \"empty\" type must not have a default value (x).");
1887
1888 *state = NULL;
1889 ly_ctx_destroy(ctx, NULL);
1890}
1891
Radek Krejcicdfecd92018-11-26 11:27:32 +01001892
1893static void
1894test_type_union(void **state)
1895{
1896 *state = test_type_union;
1897
1898 struct ly_ctx *ctx;
1899 struct lys_module *mod;
1900 struct lysc_type *type;
1901
1902 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1903
1904 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a; typedef mybasetype {type string;}"
1905 "typedef mytype {type union {type int8; type mybasetype;}}"
1906 "leaf l {type mytype;}}", LYS_IN_YANG));
1907 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1908 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1909 assert_non_null(type);
1910 assert_int_equal(2, type->refcount);
1911 assert_int_equal(LY_TYPE_UNION, type->basetype);
1912 assert_non_null(((struct lysc_type_union*)type)->types);
1913 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
1914 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[0]->basetype);
1915 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
1916
1917 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; typedef mybasetype {type string;}"
1918 "typedef mytype {type union {type int8; type mybasetype;}}"
1919 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}}", LYS_IN_YANG));
1920 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1921 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1922 assert_non_null(type);
1923 assert_int_equal(1, type->refcount);
1924 assert_int_equal(LY_TYPE_UNION, type->basetype);
1925 assert_non_null(((struct lysc_type_union*)type)->types);
1926 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
1927 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
1928 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[1]->basetype);
1929 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
1930
1931 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c; typedef mybasetype {type string;}"
1932 "typedef mytype {type union {type leafref {path ../target;} type mybasetype;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01001933 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
1934 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type int8;}}",
Radek Krejcicdfecd92018-11-26 11:27:32 +01001935 LYS_IN_YANG));
1936 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1937 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1938 assert_non_null(type);
1939 assert_int_equal(1, type->refcount);
1940 assert_int_equal(LY_TYPE_UNION, type->basetype);
1941 assert_non_null(((struct lysc_type_union*)type)->types);
1942 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
1943 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
1944 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
1945 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
1946 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
1947 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
1948
Radek Krejci6be5ff12018-11-26 13:18:15 +01001949 /* invalid unions */
1950 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;typedef mytype {type union;}"
1951 "leaf l {type mytype;}}", LYS_IN_YANG));
1952 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1953 logbuf_assert("Missing type substatement for union type mytype.");
1954
1955 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type union;}}", LYS_IN_YANG));
1956 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1957 logbuf_assert("Missing type substatement for union type.");
1958
1959 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;typedef mytype {type union{type int8; type string;}}"
1960 "leaf l {type mytype {type string;}}}", LYS_IN_YANG));
1961 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1962 logbuf_assert("Invalid type substatement for the type not directly derived from union built-in type.");
1963
1964 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;typedef mytype {type union{type int8; type string;}}"
1965 "typedef mytype2 {type mytype {type string;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1966 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1967 logbuf_assert("Invalid type substatement for the type \"mytype2\" not directly derived from union built-in type.");
1968
Radek Krejcicdfecd92018-11-26 11:27:32 +01001969 *state = NULL;
1970 ly_ctx_destroy(ctx, NULL);
1971}
1972
1973static void
1974test_type_dflt(void **state)
1975{
1976 *state = test_type_union;
1977
1978 struct ly_ctx *ctx;
1979 struct lys_module *mod;
1980 struct lysc_type *type;
1981
1982 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1983
1984 /* default is not inherited from union's types */
1985 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; typedef mybasetype {type string;default hello;units xxx;}"
1986 "leaf l {type union {type decimal64 {fraction-digits 2;} type mybasetype;}}}", LYS_IN_YANG));
1987 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1988 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1989 assert_non_null(type);
1990 assert_int_equal(1, type->refcount);
1991 assert_int_equal(LY_TYPE_UNION, type->basetype);
1992 assert_non_null(((struct lysc_type_union*)type)->types);
1993 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
1994 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
1995 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
1996 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
1997 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->units);
1998
1999 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mybasetype {type string;default hello;units xxx;}"
2000 "leaf l {type mybasetype;}}", LYS_IN_YANG));
2001 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2002 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2003 assert_non_null(type);
2004 assert_int_equal(2, type->refcount);
2005 assert_int_equal(LY_TYPE_STRING, type->basetype);
2006 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2007 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2008
2009 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mybasetype {type string;default hello;units xxx;}"
2010 "leaf l {type mybasetype; default goodbye;units yyy;}}", LYS_IN_YANG));
2011 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2012 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2013 assert_non_null(type);
2014 assert_int_equal(2, type->refcount);
2015 assert_int_equal(LY_TYPE_STRING, type->basetype);
2016 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2017 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2018
Radek Krejci6be5ff12018-11-26 13:18:15 +01002019 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; typedef mybasetype {type string;default hello;units xxx;}"
2020 "typedef mytype {type mybasetype;}leaf l1 {type mytype; default goodbye;units yyy;}"
2021 "leaf l2 {type mytype;}}", LYS_IN_YANG));
2022 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2023 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2024 assert_non_null(type);
2025 assert_int_equal(4, type->refcount);
2026 assert_int_equal(LY_TYPE_STRING, type->basetype);
2027 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2028 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2029 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
2030 assert_non_null(type);
2031 assert_int_equal(4, type->refcount);
2032 assert_int_equal(LY_TYPE_STRING, type->basetype);
2033 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data->next)->dflt);
2034 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data->next)->units);
2035
2036 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e; typedef mybasetype {type string;}"
2037 "typedef mytype {type mybasetype; default hello;units xxx;}leaf l {type mytype;}}", LYS_IN_YANG));
2038 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2039 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2040 assert_non_null(type);
2041 assert_int_equal(3, type->refcount);
2042 assert_int_equal(LY_TYPE_STRING, type->basetype);
2043 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2044 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2045
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002046 /* mandatory leaf does not takes default value from type */
2047 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;typedef mytype {type string; default hello;units xxx;}"
2048 "leaf l {type mytype; mandatory true;}}", LYS_IN_YANG));
2049 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2050 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2051 assert_non_null(type);
2052 assert_int_equal(LY_TYPE_STRING, type->basetype);
2053 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2054 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2055
Radek Krejcicdfecd92018-11-26 11:27:32 +01002056 *state = NULL;
2057 ly_ctx_destroy(ctx, NULL);
2058}
2059
Radek Krejci665421c2018-12-05 08:03:39 +01002060static void
2061test_status(void **state)
2062{
2063 *state = test_status;
2064
2065 struct ly_ctx *ctx;
2066 struct lys_module *mod;
2067
2068 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2069
2070 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2071 "container c {status deprecated; leaf l {status current; type string;}}}", LYS_IN_YANG));
2072 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2073 logbuf_assert("A \"current\" status is in conflict with the parent's \"deprecated\" status.");
2074
2075 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
2076 "container c {status obsolete; leaf l {status current; type string;}}}", LYS_IN_YANG));
2077 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2078 logbuf_assert("A \"current\" status is in conflict with the parent's \"obsolete\" status.");
2079
2080 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
2081 "container c {status obsolete; leaf l {status deprecated; type string;}}}", LYS_IN_YANG));
2082 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2083 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
2084
2085 *state = NULL;
2086 ly_ctx_destroy(ctx, NULL);
2087}
2088
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002089int main(void)
2090{
2091 const struct CMUnitTest tests[] = {
Radek Krejci4f28eda2018-11-12 11:46:16 +01002092 cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown),
2093 cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown),
2094 cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown),
Radek Krejci0f07bed2018-11-13 14:01:40 +01002095 cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown),
2096 cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown),
Radek Krejcicda74152018-11-13 15:27:32 +01002097 cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown),
Radek Krejci8b764662018-11-14 14:15:13 +01002098 cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown),
2099 cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown),
Radek Krejci6cba4292018-11-15 17:33:29 +01002100 cmocka_unit_test_setup_teardown(test_type_dec64, logger_setup, logger_teardown),
Radek Krejci16c0f822018-11-16 10:46:10 +01002101 cmocka_unit_test_setup_teardown(test_type_instanceid, logger_setup, logger_teardown),
Radek Krejci555cb5b2018-11-16 14:54:33 +01002102 cmocka_unit_test_setup_teardown(test_type_identityref, logger_setup, logger_teardown),
Radek Krejcia3045382018-11-22 14:30:31 +01002103 cmocka_unit_test_setup_teardown(test_type_leafref, logger_setup, logger_teardown),
Radek Krejci43699232018-11-23 14:59:46 +01002104 cmocka_unit_test_setup_teardown(test_type_empty, logger_setup, logger_teardown),
Radek Krejcicdfecd92018-11-26 11:27:32 +01002105 cmocka_unit_test_setup_teardown(test_type_union, logger_setup, logger_teardown),
2106 cmocka_unit_test_setup_teardown(test_type_dflt, logger_setup, logger_teardown),
Radek Krejci665421c2018-12-05 08:03:39 +01002107 cmocka_unit_test_setup_teardown(test_status, logger_setup, logger_teardown),
Radek Krejci4f28eda2018-11-12 11:46:16 +01002108 cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown),
Radek Krejci0e5d8382018-11-28 16:37:53 +01002109 cmocka_unit_test_setup_teardown(test_node_leaflist, logger_setup, logger_teardown),
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002110 cmocka_unit_test_setup_teardown(test_node_list, logger_setup, logger_teardown),
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002111 };
2112
2113 return cmocka_run_group_tests(tests, NULL, NULL);
2114}