blob: c9424d9c9302e2645fd1846a9a034971ee0a73c4 [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 Krejci056d0a82018-12-06 16:57:25 +0100643static void
644test_node_choice(void **state)
645{
646 *state = test_node_choice;
647
648 struct ly_ctx *ctx;
649 struct lys_module *mod;
650 struct lysc_node_choice *ch;
651 struct lysc_node_case *cs;
652
653 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
654
655 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
Radek Krejcia9026eb2018-12-12 16:04:47 +0100656 "choice ch {default a:b; case a {leaf a {type string;}}leaf b {type string;}}}", LYS_IN_YANG));
Radek Krejci056d0a82018-12-06 16:57:25 +0100657 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
658 ch = (struct lysc_node_choice*)mod->compiled->data;
659 assert_non_null(ch);
660 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, ch->flags);
661 cs = ch->cases;
662 assert_non_null(cs);
663 assert_string_equal("a", cs->name);
664 assert_ptr_equal(ch, cs->parent);
665 assert_non_null(cs->child);
666 assert_string_equal("a", cs->child->name);
667 assert_ptr_equal(cs, cs->child->parent);
668 cs = (struct lysc_node_case*)cs->next;
669 assert_non_null(cs);
670 assert_string_equal("b", cs->name);
671 assert_ptr_equal(ch, cs->parent);
672 assert_non_null(cs->child);
673 assert_string_equal("b", cs->child->name);
674 assert_ptr_equal(cs, cs->child->parent);
675 assert_ptr_equal(ch->cases->child, cs->child->prev);
676 assert_ptr_equal(ch->cases->child->next, cs->child);
677 assert_ptr_equal(ch->cases->child->prev, cs->child);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100678 assert_ptr_equal(ch->dflt, cs);
Radek Krejci056d0a82018-12-06 16:57:25 +0100679
680 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
681 "choice ch {case a {leaf x {type string;}}leaf x {type string;}}}", LYS_IN_YANG));
682 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
683 logbuf_assert("Duplicate identifier \"x\" of data definition statement.");
684 assert_non_null(mod = lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa;"
685 "choice ch {case a {leaf y {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
686 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
687 logbuf_assert("Duplicate identifier \"y\" of data definition statement.");
688 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
689 "choice ch {case a {leaf x {type string;}}leaf a {type string;}}}", LYS_IN_YANG));
690 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
691 logbuf_assert("Duplicate identifier \"a\" of case statement.");
692 assert_non_null(mod = lys_parse_mem(ctx, "module bb2 {namespace urn:bb2;prefix bb;"
693 "choice ch {case b {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
694 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
695 logbuf_assert("Duplicate identifier \"b\" of case statement.");
696
Radek Krejcia9026eb2018-12-12 16:04:47 +0100697 assert_non_null(mod = lys_parse_mem(ctx, "module ca {namespace urn:ca;prefix ca;"
698 "choice ch {default c;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
699 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
700 logbuf_assert("Default case \"c\" not found.");
701 assert_non_null(mod = lys_parse_mem(ctx, "module cb {namespace urn:cb;prefix cb; import a {prefix a;}"
702 "choice ch {default a:a;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
703 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
704 logbuf_assert("Invalid default case referencing a case from different YANG module (by prefix \"a\").");
705 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
706 "choice ch {default a;case a {leaf x {mandatory true;type string;}}}}", LYS_IN_YANG));
707 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
708 logbuf_assert("Mandatory node \"x\" under the default case \"a\".");
709 /* TODO check with mandatory nodes from augment placed into the case */
710
Radek Krejci056d0a82018-12-06 16:57:25 +0100711 *state = NULL;
712 ly_ctx_destroy(ctx, NULL);
713}
714
Radek Krejci0f07bed2018-11-13 14:01:40 +0100715/**
716 * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types,
717 * do not test the expression itself
718 */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100719static void
Radek Krejci0f07bed2018-11-13 14:01:40 +0100720test_type_range(void **state)
Radek Krejci4f28eda2018-11-12 11:46:16 +0100721{
Radek Krejci0f07bed2018-11-13 14:01:40 +0100722 *state = test_type_range;
723
724 struct ly_ctx *ctx;
725 struct lys_module *mod;
726 struct lysc_type *type;
727
728 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
729
730 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));
731 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
732 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
733 assert_non_null(type);
734 assert_int_equal(LY_TYPE_INT8, type->basetype);
735 assert_non_null(((struct lysc_type_num*)type)->range);
736 assert_non_null(((struct lysc_type_num*)type)->range->parts);
737 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
738 assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64);
739 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
740 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64);
741 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64);
742
743 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));
744 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
745 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
746 assert_non_null(type);
747 assert_int_equal(LY_TYPE_INT16, type->basetype);
748 assert_non_null(((struct lysc_type_num*)type)->range);
749 assert_non_null(((struct lysc_type_num*)type)->range->parts);
750 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
751 assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64);
752 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
753 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64);
754 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64);
755
756 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));
757 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
758 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
759 assert_non_null(type);
760 assert_int_equal(LY_TYPE_INT32, type->basetype);
761 assert_non_null(((struct lysc_type_num*)type)->range);
762 assert_non_null(((struct lysc_type_num*)type)->range->parts);
763 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
764 assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64);
765 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
766 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64);
767 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64);
768
769 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));
770 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
771 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
772 assert_non_null(type);
773 assert_int_equal(LY_TYPE_INT64, type->basetype);
774 assert_non_null(((struct lysc_type_num*)type)->range);
775 assert_non_null(((struct lysc_type_num*)type)->range->parts);
776 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
777 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64);
778 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
779 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64);
780 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64);
781
782 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));
783 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
784 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
785 assert_non_null(type);
786 assert_int_equal(LY_TYPE_UINT8, type->basetype);
787 assert_non_null(((struct lysc_type_num*)type)->range);
788 assert_non_null(((struct lysc_type_num*)type)->range->parts);
789 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
790 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
791 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
792 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
793 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
794
795 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));
796 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
797 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
798 assert_non_null(type);
799 assert_int_equal(LY_TYPE_UINT16, type->basetype);
800 assert_non_null(((struct lysc_type_num*)type)->range);
801 assert_non_null(((struct lysc_type_num*)type)->range->parts);
802 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
803 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
804 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
805 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
806 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
807
808 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));
809 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
810 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
811 assert_non_null(type);
812 assert_int_equal(LY_TYPE_UINT32, type->basetype);
813 assert_non_null(((struct lysc_type_num*)type)->range);
814 assert_non_null(((struct lysc_type_num*)type)->range->parts);
815 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
816 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
817 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
818 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
819 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
820
821 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));
822 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
823 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
824 assert_non_null(type);
825 assert_int_equal(LY_TYPE_UINT64, type->basetype);
826 assert_non_null(((struct lysc_type_num*)type)->range);
827 assert_non_null(((struct lysc_type_num*)type)->range->parts);
828 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
829 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
830 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
831 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
832 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
833
834 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}"
835 "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG));
836 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
837 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
838 assert_non_null(type);
839 assert_int_equal(3, type->refcount);
840 assert_int_equal(LY_TYPE_UINT8, type->basetype);
841 assert_non_null(((struct lysc_type_num*)type)->range);
842 assert_non_null(((struct lysc_type_num*)type)->range->parts);
843 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
844
845 *state = NULL;
846 ly_ctx_destroy(ctx, NULL);
847}
848
849static void
850test_type_length(void **state)
851{
852 *state = test_type_length;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100853
854 struct ly_ctx *ctx;
855 struct lys_module *mod;
856 struct lysc_type *type;
857
858 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
859
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100860 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 +0100861 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
862 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
863 assert_non_null(type);
864 assert_non_null(((struct lysc_type_bin*)type)->length);
865 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100866 assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag);
867 assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100868 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
869 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
870 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
871
872 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type binary {length max;}}}", LYS_IN_YANG));
873 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
874 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
875 assert_non_null(type);
876 assert_non_null(((struct lysc_type_bin*)type)->length);
877 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
878 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
Radek Krejci0fe20752018-11-27 11:33:24 +0100879 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
880 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100881
882 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));
883 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
884 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
885 assert_non_null(type);
886 assert_non_null(((struct lysc_type_bin*)type)->length);
887 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
888 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
889 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci0fe20752018-11-27 11:33:24 +0100890 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100891
892 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type binary {length 5;}}}", LYS_IN_YANG));
893 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
894 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
895 assert_non_null(type);
896 assert_non_null(((struct lysc_type_bin*)type)->length);
897 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
898 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
899 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
900 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
901
902 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));
903 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
904 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
905 assert_non_null(type);
906 assert_non_null(((struct lysc_type_bin*)type)->length);
907 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
908 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
909 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
910 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
911
912 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));
913 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
914 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
915 assert_non_null(type);
916 assert_non_null(((struct lysc_type_bin*)type)->length);
917 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
918 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
919 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
920 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
921 assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
922 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
923
924 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));
925 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
926 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
927 assert_non_null(type);
928 assert_non_null(((struct lysc_type_bin*)type)->length);
929 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
930 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
931 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
932 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
933 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
934 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
935
Radek Krejcib31c8992018-11-12 16:29:16 +0100936 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}"
937 "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG));
938 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
939 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
940 assert_non_null(type);
941 assert_non_null(((struct lysc_type_bin*)type)->length);
942 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
943 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
944 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
945 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
946
947 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}"
948 "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG));
949 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
950 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
951 assert_non_null(type);
952 assert_non_null(((struct lysc_type_bin*)type)->length);
953 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
954 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
955 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
956 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
957
958 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}"
959 "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG));
960 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
961 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
962 assert_non_null(type);
963 assert_non_null(((struct lysc_type_bin*)type)->length);
964 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
965 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
966 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
967 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
968 assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
969 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
970
971 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 +0100972 "leaf l {type mytype {length \"10..80\";}}leaf ll {type mytype;}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +0100973 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
974 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
975 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100976 assert_int_equal(1, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +0100977 assert_non_null(((struct lysc_type_bin*)type)->length);
978 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
979 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
980 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100981 assert_int_equal(80, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejcib31c8992018-11-12 16:29:16 +0100982 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
983 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100984 assert_int_equal(2, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +0100985 assert_non_null(((struct lysc_type_bin*)type)->length);
986 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
987 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
988 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
989 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
990
Radek Krejci56aa27c2018-11-13 14:21:59 +0100991 assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}"
992 "typedef mytype2 {type mytype {pattern '[0-9]*';}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
Radek Krejci9a191e62018-11-13 13:19:56 +0100993 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
994 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
995 assert_non_null(type);
996 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejci56aa27c2018-11-13 14:21:59 +0100997 assert_int_equal(1, type->refcount);
Radek Krejcicda74152018-11-13 15:27:32 +0100998 assert_non_null(((struct lysc_type_str*)type)->length);
999 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1000 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1001 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1002 assert_int_equal(100, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
Radek Krejci9a191e62018-11-13 13:19:56 +01001003
Radek Krejci5969f272018-11-23 10:03:58 +01001004 assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;typedef mytype {type string {length 10;}}"
1005 "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG));
1006 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1007 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1008 assert_non_null(type);
1009 assert_int_equal(LY_TYPE_STRING, type->basetype);
1010 assert_int_equal(1, type->refcount);
1011 assert_non_null(((struct lysc_type_str*)type)->length);
1012 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1013 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1014 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1015 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
1016
Radek Krejci4f28eda2018-11-12 11:46:16 +01001017 /* invalid values */
1018 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG));
1019 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1020 logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations.");
1021 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG));
1022 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1023 logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\".");
1024 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));
1025 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1026 logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10).");
1027 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));
1028 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1029 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
1030 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));
1031 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1032 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
1033 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG));
1034 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1035 logbuf_assert("Invalid length restriction - unexpected data (x).");
Radek Krejcib31c8992018-11-12 16:29:16 +01001036 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));
1037 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1038 logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | ).");
1039 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG));
1040 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1041 logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50).");
1042 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG));
1043 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1044 logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..).");
1045 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG));
1046 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1047 logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound.");
1048 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG));
1049 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1050 logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |).");
Radek Krejci6489bbe2018-11-12 17:05:19 +01001051 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));
1052 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1053 logbuf_assert("Invalid length restriction - values are not in ascending order (15).");
Radek Krejcib31c8992018-11-12 16:29:16 +01001054
1055 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}"
1056 "leaf l {type mytype {length 11;}}}", LYS_IN_YANG));
1057 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1058 logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting.");
1059 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}"
1060 "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG));
1061 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1062 logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting.");
1063 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}"
1064 "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG));
1065 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1066 logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting.");
1067 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}"
1068 "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG));
1069 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1070 logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting.");
1071 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}"
1072 "leaf l {type mytype {length 15;}}}", LYS_IN_YANG));
1073 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1074 logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting.");
1075 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}"
1076 "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG));
1077 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1078 logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting.");
Radek Krejci6489bbe2018-11-12 17:05:19 +01001079 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}"
1080 "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG));
1081 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1082 logbuf_assert("Invalid length restriction - the derived restriction (10..35) is not equally or more limiting.");
Radek Krejcib31c8992018-11-12 16:29:16 +01001083
Radek Krejci495903e2018-11-13 11:30:45 +01001084 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));
1085 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1086 logbuf_assert("Invalid type restrictions for binary type.");
1087
Radek Krejci4f28eda2018-11-12 11:46:16 +01001088 *state = NULL;
1089 ly_ctx_destroy(ctx, NULL);
1090}
1091
Radek Krejcicda74152018-11-13 15:27:32 +01001092static void
1093test_type_pattern(void **state)
1094{
1095 *state = test_type_pattern;
1096
1097 struct ly_ctx *ctx;
1098 struct lys_module *mod;
1099 struct lysc_type *type;
1100
1101 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1102
Radek Krejci027d5802018-11-14 16:57:28 +01001103 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 +01001104 "pattern .* {error-app-tag errortag;error-message error;}"
1105 "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG));
1106 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1107 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1108 assert_non_null(type);
1109 assert_non_null(((struct lysc_type_str*)type)->patterns);
1110 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1111 assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag);
1112 assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg);
1113 assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted);
1114 assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag);
1115 assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg);
1116 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted);
1117
1118 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}"
1119 "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
1120 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1121 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1122 assert_non_null(type);
1123 assert_int_equal(LY_TYPE_STRING, type->basetype);
1124 assert_int_equal(1, type->refcount);
1125 assert_non_null(((struct lysc_type_str*)type)->patterns);
1126 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1127 assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1128 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount);
1129
Radek Krejci04bc1e92018-11-14 14:28:13 +01001130 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}"
1131 "leaf l {type mytype {length 10;}}}", LYS_IN_YANG));
1132 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1133 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1134 assert_non_null(type);
1135 assert_int_equal(LY_TYPE_STRING, type->basetype);
1136 assert_int_equal(1, type->refcount);
1137 assert_non_null(((struct lysc_type_str*)type)->patterns);
1138 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1139 assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1140
Radek Krejcicda74152018-11-13 15:27:32 +01001141 /* test substitutions */
Radek Krejci04bc1e92018-11-14 14:28:13 +01001142 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 +01001143 "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG));
1144 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1145 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1146 assert_non_null(type);
1147 assert_non_null(((struct lysc_type_str*)type)->patterns);
1148 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1149 /* TODO check some data "^Å™$" */
1150
1151 *state = NULL;
1152 ly_ctx_destroy(ctx, NULL);
1153}
1154
Radek Krejci8b764662018-11-14 14:15:13 +01001155static void
1156test_type_enum(void **state)
1157{
1158 *state = test_type_enum;
1159
1160 struct ly_ctx *ctx;
1161 struct lys_module *mod;
1162 struct lysc_type *type;
1163
1164 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1165
Radek Krejci027d5802018-11-14 16:57:28 +01001166 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 +01001167 "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}"
1168 "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG));
1169 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1170 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1171 assert_non_null(type);
1172 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1173 assert_non_null(((struct lysc_type_enum*)type)->enums);
1174 assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1175 assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures);
1176 assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name);
1177 assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value);
1178 assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name);
1179 assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value);
1180 assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name);
1181 assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value);
1182 assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name);
1183 assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value);
1184 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name);
1185 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value);
1186 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name);
1187 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value);
1188
Radek Krejci027d5802018-11-14 16:57:28 +01001189 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 {"
1190 "enum 11; enum min {value -2147483648;}enum x$&;"
Radek Krejci8b764662018-11-14 14:15:13 +01001191 "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}",
1192 LYS_IN_YANG));
1193 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1194 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1195 assert_non_null(type);
1196 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1197 assert_non_null(((struct lysc_type_enum*)type)->enums);
1198 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1199 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name);
1200 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value);
1201 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name);
1202 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value);
1203
1204
1205 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001206 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {"
1207 "enum one {if-feature f;}}}}", LYS_IN_YANG));
1208 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 +01001209 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1210 "enum one {value -2147483649;}}}}", LYS_IN_YANG));
1211 logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1.");
1212 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1213 "enum one {value 2147483648;}}}}", LYS_IN_YANG));
1214 logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1.");
1215 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1216 "enum one; enum one;}}}", LYS_IN_YANG));
1217 logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1.");
1218 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1219 "enum '';}}}", LYS_IN_YANG));
1220 logbuf_assert("Enum name must not be zero-length. Line number 1.");
1221 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1222 "enum ' x';}}}", LYS_IN_YANG));
1223 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1.");
1224 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1225 "enum 'x ';}}}", LYS_IN_YANG));
1226 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1.");
1227 assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1228 "enum 'inva\nlid';}}}", LYS_IN_YANG));
1229 logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5).");
1230
1231 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG));
1232 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1233 logbuf_assert("Missing enum substatement for enumeration type.");
1234
Radek Krejci027d5802018-11-14 16:57:28 +01001235 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 +01001236 "leaf l {type mytype {enum two;}}}", LYS_IN_YANG));
1237 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1238 logbuf_assert("Invalid enumeration - derived type adds new item \"two\".");
1239
Radek Krejci027d5802018-11-14 16:57:28 +01001240 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 +01001241 "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG));
1242 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1243 logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type.");
1244 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;}}}",
1245 LYS_IN_YANG));
1246 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1247 logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647.");
1248
1249 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;}}}}",
1250 LYS_IN_YANG));
1251 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1252 logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\".");
1253
Radek Krejci04bc1e92018-11-14 14:28:13 +01001254 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}"
1255 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1256 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001257 logbuf_assert("Missing enum substatement for enumeration type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001258
Radek Krejci027d5802018-11-14 16:57:28 +01001259 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}"
1260 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1261 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1262 logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules.");
1263
Radek Krejci8b764662018-11-14 14:15:13 +01001264 *state = NULL;
1265 ly_ctx_destroy(ctx, NULL);
1266}
1267
1268static void
1269test_type_bits(void **state)
1270{
1271 *state = test_type_bits;
1272
1273 struct ly_ctx *ctx;
1274 struct lys_module *mod;
1275 struct lysc_type *type;
1276
1277 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1278
Radek Krejci027d5802018-11-14 16:57:28 +01001279 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 +01001280 "bit automin; bit one {if-feature f; position 1;}"
1281 "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG));
1282 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1283 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1284 assert_non_null(type);
1285 assert_int_equal(LY_TYPE_BITS, type->basetype);
1286 assert_non_null(((struct lysc_type_bits*)type)->bits);
1287 assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1288 assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures);
1289 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1290 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1291 assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name);
1292 assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position);
1293 assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name);
1294 assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position);
1295 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name);
1296 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position);
1297 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name);
1298 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position);
1299
Radek Krejci027d5802018-11-14 16:57:28 +01001300 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 {"
1301 "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 +01001302 LYS_IN_YANG));
1303 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1304 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1305 assert_non_null(type);
1306 assert_int_equal(LY_TYPE_BITS, type->basetype);
1307 assert_non_null(((struct lysc_type_bits*)type)->bits);
Radek Krejci027d5802018-11-14 16:57:28 +01001308 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1309 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1310 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1311 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name);
1312 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position);
1313 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name);
1314 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position);
Radek Krejci8b764662018-11-14 14:15:13 +01001315
1316
1317 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001318 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {"
1319 "bit one {if-feature f;}}}}", LYS_IN_YANG));
1320 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 +01001321 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1322 "bit one {position -1;}}}}", LYS_IN_YANG));
1323 logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1.");
1324 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1325 "bit one {value 4294967296;}}}}", LYS_IN_YANG));
1326 logbuf_assert("Invalid value \"4294967296\" of \"value\". Line number 1.");
1327 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1328 "bit one; bit one;}}}", LYS_IN_YANG));
1329 logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1.");
1330 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1331 "bit '11';}}}", LYS_IN_YANG));
1332 logbuf_assert("Invalid identifier first character '1'. Line number 1.");
1333 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1334 "bit 'x1$1';}}}", LYS_IN_YANG));
1335 logbuf_assert("Invalid identifier character '$'. Line number 1.");
1336
1337 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG));
1338 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1339 logbuf_assert("Missing bit substatement for bits type.");
1340
Radek Krejci027d5802018-11-14 16:57:28 +01001341 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 +01001342 "leaf l {type mytype {bit two;}}}", LYS_IN_YANG));
1343 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1344 logbuf_assert("Invalid bits - derived type adds new item \"two\".");
1345
Radek Krejci027d5802018-11-14 16:57:28 +01001346 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 +01001347 "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG));
1348 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1349 logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type.");
1350 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;}}}",
1351 LYS_IN_YANG));
1352 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1353 logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295.");
1354
1355 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;}}}}",
1356 LYS_IN_YANG));
1357 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1358 logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\".");
1359
Radek Krejci04bc1e92018-11-14 14:28:13 +01001360 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}"
1361 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1362 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001363 logbuf_assert("Missing bit substatement for bits type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001364
Radek Krejci027d5802018-11-14 16:57:28 +01001365 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}"
1366 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1367 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1368 logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules.");
1369
Radek Krejci8b764662018-11-14 14:15:13 +01001370 *state = NULL;
1371 ly_ctx_destroy(ctx, NULL);
1372}
1373
Radek Krejci6cba4292018-11-15 17:33:29 +01001374static void
1375test_type_dec64(void **state)
1376{
1377 *state = test_type_dec64;
1378
1379 struct ly_ctx *ctx;
1380 struct lys_module *mod;
1381 struct lysc_type *type;
1382
1383 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1384
1385 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type decimal64 {"
1386 "fraction-digits 2;range min..max;}}}", LYS_IN_YANG));
1387 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1388 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1389 assert_non_null(type);
1390 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1391 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1392 assert_non_null(((struct lysc_type_dec*)type)->range);
1393 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1394 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1395 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1396 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1397
1398 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type decimal64 {"
1399 "fraction-digits 2;range '3.14 | 5.1 | 10';}}leaf l {type mytype;}}", LYS_IN_YANG));
1400 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1401 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1402 assert_non_null(type);
1403 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1404 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1405 assert_non_null(((struct lysc_type_dec*)type)->range);
1406 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1407 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1408 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1409 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1410 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].min_64);
1411 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].max_64);
1412 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].min_64);
1413 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].max_64);
1414
1415 /* invalid cases */
1416 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 0;}}}", LYS_IN_YANG));
1417 logbuf_assert("Invalid value \"0\" of \"fraction-digits\". Line number 1.");
1418 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits -1;}}}", LYS_IN_YANG));
1419 logbuf_assert("Invalid value \"-1\" of \"fraction-digits\". Line number 1.");
1420 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 19;}}}", LYS_IN_YANG));
1421 logbuf_assert("Value \"19\" is out of \"fraction-digits\" bounds. Line number 1.");
1422
1423 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64;}}", LYS_IN_YANG));
1424 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1425 logbuf_assert("Missing fraction-digits substatement for decimal64 type.");
1426
Radek Krejci643c8242018-11-15 17:51:11 +01001427 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));
1428 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001429 logbuf_assert("Missing fraction-digits substatement for decimal64 type mytype.");
Radek Krejci643c8242018-11-15 17:51:11 +01001430
Radek Krejci6cba4292018-11-15 17:33:29 +01001431 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type decimal64 {fraction-digits 2;"
1432 "range '3.142';}}}", LYS_IN_YANG));
1433 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1434 logbuf_assert("Range boundary \"3.142\" of decimal64 type exceeds defined number (2) of fraction digits.");
1435
1436 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; leaf l {type decimal64 {fraction-digits 2;"
1437 "range '4 | 3.14';}}}", LYS_IN_YANG));
1438 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1439 logbuf_assert("Invalid range restriction - values are not in ascending order (3.14).");
1440
Radek Krejci643c8242018-11-15 17:51:11 +01001441 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; typedef mytype {type decimal64 {fraction-digits 2;}}"
1442 "leaf l {type mytype {fraction-digits 3;}}}", LYS_IN_YANG));
1443 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1444 logbuf_assert("Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
1445
1446 assert_non_null(mod = lys_parse_mem(ctx, "module de {namespace urn:de;prefix de; typedef mytype {type decimal64 {fraction-digits 2;}}"
1447 "typedef mytype2 {type mytype {fraction-digits 3;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1448 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1449 logbuf_assert("Invalid fraction-digits substatement for type \"mytype2\" not directly derived from decimal64 built-in type.");
1450
Radek Krejci6cba4292018-11-15 17:33:29 +01001451 *state = NULL;
1452 ly_ctx_destroy(ctx, NULL);
1453}
1454
Radek Krejci16c0f822018-11-16 10:46:10 +01001455static void
1456test_type_instanceid(void **state)
1457{
1458 *state = test_type_instanceid;
1459
1460 struct ly_ctx *ctx;
1461 struct lys_module *mod;
1462 struct lysc_type *type;
1463
1464 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1465
1466 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;typedef mytype {type instance-identifier {require-instance false;}}"
1467 "leaf l1 {type instance-identifier {require-instance true;}}"
1468 "leaf l2 {type mytype;} leaf l3 {type instance-identifier;}}", LYS_IN_YANG));
1469 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1470 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1471 assert_non_null(type);
1472 assert_int_equal(LY_TYPE_INST, type->basetype);
1473 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1474
1475 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1476 assert_non_null(type);
1477 assert_int_equal(LY_TYPE_INST, type->basetype);
1478 assert_int_equal(0, ((struct lysc_type_instanceid*)type)->require_instance);
1479
1480 type = ((struct lysc_node_leaf*)mod->compiled->data->next->next)->type;
1481 assert_non_null(type);
1482 assert_int_equal(LY_TYPE_INST, type->basetype);
1483 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1484
1485 /* invalid cases */
1486 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {require-instance yes;}}}", LYS_IN_YANG));
1487 logbuf_assert("Invalid value \"yes\" of \"require-instance\". Line number 1.");
1488
1489 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));
1490 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1491 logbuf_assert("Invalid type restrictions for instance-identifier type.");
1492
1493 *state = NULL;
1494 ly_ctx_destroy(ctx, NULL);
1495}
1496
Radek Krejci555cb5b2018-11-16 14:54:33 +01001497static void
1498test_type_identityref(void **state)
1499{
1500 *state = test_type_identityref;
1501
1502 struct ly_ctx *ctx;
1503 struct lys_module *mod;
1504 struct lysc_type *type;
1505
1506 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1507
1508 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;}"
1509 "typedef mytype {type identityref {base i;}}"
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001510 "leaf l1 {type mytype;} leaf l2 {type identityref {base a:k; base j;}}}", LYS_IN_YANG));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001511 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1512 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1513 assert_non_null(type);
1514 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1515 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1516 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1517 assert_string_equal("i", ((struct lysc_type_identityref*)type)->bases[0]->name);
1518
1519 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1520 assert_non_null(type);
1521 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1522 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1523 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1524 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1525 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1526
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001527 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import a {prefix a;}"
1528 "leaf l {type identityref {base a:k; base a:j;}}}", LYS_IN_YANG));
1529 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1530 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1531 assert_non_null(type);
1532 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1533 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1534 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1535 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1536 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1537
Radek Krejci555cb5b2018-11-16 14:54:33 +01001538 /* invalid cases */
1539 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type identityref;}}", LYS_IN_YANG));
1540 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1541 logbuf_assert("Missing base substatement for identityref type.");
1542
1543 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; typedef mytype {type identityref;}"
1544 "leaf l {type mytype;}}", LYS_IN_YANG));
1545 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1546 logbuf_assert("Missing base substatement for identityref type mytype.");
1547
1548 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; identity i; typedef mytype {type identityref {base i;}}"
1549 "leaf l {type mytype {base i;}}}", LYS_IN_YANG));
1550 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001551 logbuf_assert("Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001552
1553 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; identity i; typedef mytype {type identityref {base i;}}"
1554 "typedef mytype2 {type mytype {base i;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1555 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001556 logbuf_assert("Invalid base substatement for the type \"mytype2\" not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001557
1558 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; identity i; identity j;"
1559 "leaf l {type identityref {base i;base j;}}}", LYS_IN_YANG));
1560 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1561 logbuf_assert("Multiple bases in identityref type are allowed only in YANG 1.1 modules.");
1562
Radek Krejci322614f2018-11-16 15:05:44 +01001563 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));
1564 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1565 logbuf_assert("Unable to find base (j) of identityref.");
1566
1567 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));
1568 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1569 logbuf_assert("Invalid prefix used for base (x:j) of identityref.");
1570
Radek Krejci555cb5b2018-11-16 14:54:33 +01001571 *state = NULL;
1572 ly_ctx_destroy(ctx, NULL);
1573}
1574
Radek Krejcia3045382018-11-22 14:30:31 +01001575static void
1576test_type_leafref(void **state)
1577{
1578 *state = test_type_leafref;
1579
1580 struct ly_ctx *ctx;
1581 struct lys_module *mod;
1582 struct lysc_type *type;
1583 const char *path, *name, *prefix;
1584 size_t prefix_len, name_len;
1585 int parent_times, has_predicate;
1586
1587 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1588
1589 /* lys_path_token() */
1590 path = "invalid_path";
1591 parent_times = 0;
1592 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1593 path = "..";
1594 parent_times = 0;
1595 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1596 path = "..[";
1597 parent_times = 0;
1598 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1599 path = "../";
1600 parent_times = 0;
1601 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1602 path = "/";
1603 parent_times = 0;
1604 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1605
1606 path = "../../pref:id/xxx[predicate]/invalid!!!";
1607 parent_times = 0;
1608 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1609 assert_string_equal("/xxx[predicate]/invalid!!!", path);
1610 assert_int_equal(4, prefix_len);
1611 assert_int_equal(0, strncmp("pref", prefix, prefix_len));
1612 assert_int_equal(2, name_len);
1613 assert_int_equal(0, strncmp("id", name, name_len));
1614 assert_int_equal(2, parent_times);
1615 assert_int_equal(0, has_predicate);
1616 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1617 assert_string_equal("[predicate]/invalid!!!", path);
1618 assert_int_equal(0, prefix_len);
1619 assert_null(prefix);
1620 assert_int_equal(3, name_len);
1621 assert_int_equal(0, strncmp("xxx", name, name_len));
1622 assert_int_equal(1, has_predicate);
1623 path += 11;
1624 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1625 assert_string_equal("!!!", path);
1626 assert_int_equal(0, prefix_len);
1627 assert_null(prefix);
1628 assert_int_equal(7, name_len);
1629 assert_int_equal(0, strncmp("invalid", name, name_len));
1630
1631 path = "/absolute/prefix:path";
1632 parent_times = 0;
1633 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1634 assert_string_equal("/prefix:path", path);
1635 assert_int_equal(0, prefix_len);
1636 assert_null(prefix);
1637 assert_int_equal(8, name_len);
1638 assert_int_equal(0, strncmp("absolute", name, name_len));
1639 assert_int_equal(-1, parent_times);
1640 assert_int_equal(0, has_predicate);
1641 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1642 assert_int_equal(0, *path);
1643 assert_int_equal(6, prefix_len);
1644 assert_int_equal(0, strncmp("prefix", prefix, prefix_len));
1645 assert_int_equal(4, name_len);
1646 assert_int_equal(0, strncmp("path", name, name_len));
1647 assert_int_equal(0, has_predicate);
1648
1649 /* complete leafref paths */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001650 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 +01001651 "leaf ref1 {type leafref {path /a:target1;}} leaf ref2 {type leafref {path /a/target2; require-instance false;}}"
1652 "leaf target1 {type string;}container a {leaf target2 {type uint8;}}}", 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(LY_TYPE_LEAFREF, type->basetype);
1657 assert_string_equal("/a:target1", ((struct lysc_type_leafref*)type)->path);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001658 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001659 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1660 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001661 assert_int_equal(1, ((struct lysc_type_leafref*)type)->require_instance);
1662 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1663 assert_non_null(type);
1664 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1665 assert_string_equal("/a/target2", ((struct lysc_type_leafref*)type)->path);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001666 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1667 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1668 assert_int_equal(LY_TYPE_UINT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001669 assert_int_equal(0, ((struct lysc_type_leafref*)type)->require_instance);
1670
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001671 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 +01001672 "typedef mytype2 {type mytype;} typedef mytype3 {type leafref {path /target;}} leaf ref {type mytype2;}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01001673 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type string;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001674 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1675 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1676 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001677 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001678 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1679 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1680 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001681 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1682 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001683 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1684
1685 /* prefixes are reversed to check using correct context of the path! */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001686 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 +01001687 "typedef mytype3 {type c:mytype {require-instance false;}}"
1688 "leaf ref1 {type b:mytype3;}leaf ref2 {type c:mytype2;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001689 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1690 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1691 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001692 assert_int_equal(1, type->refcount);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001693 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1694 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1695 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001696 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1697 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001698 assert_int_equal(0, ((struct lysc_type_leafref* )type)->require_instance);
1699 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1700 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001701 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001702 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1703 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1704 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1705 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1706
Radek Krejci4ce68932018-11-28 12:53:36 +01001707 /* non-prefixed nodes in path are supposed to be from the module where the leafref type is instantiated */
1708 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; import b {prefix b;}"
1709 "leaf ref {type b:mytype3;}leaf target {type int8;}}", LYS_IN_YANG));
1710 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1711 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1712 assert_non_null(type);
1713 assert_int_equal(1, type->refcount);
1714 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1715 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1716 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1717 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1718 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
1719 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1720
Radek Krejci58d171e2018-11-23 13:50:55 +01001721 /* conditional leafrefs */
Radek Krejci4ce68932018-11-28 12:53:36 +01001722 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 +01001723 "leaf ref1 {if-feature 'f1 and f2';type leafref {path /target;}}"
1724 "leaf target {if-feature f1; type boolean;}}", LYS_IN_YANG));
1725 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1726 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1727 assert_non_null(type);
1728 assert_int_equal(1, type->refcount);
1729 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1730 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1731 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1732 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1733 assert_int_equal(LY_TYPE_BOOL, ((struct lysc_type_leafref*)type)->realtype->basetype);
1734
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001735 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;"
1736 "list interface{key name;leaf name{type string;}list address {key ip;leaf ip {type string;}}}"
1737 "container default-address{leaf ifname{type leafref{ path \"../../interface/name\";}}"
Radek Krejcibade82a2018-12-05 10:13:48 +01001738 "leaf address {type leafref{ path \"../../interface[ name = current()/../ifname ]/address/ip\";}}}}",
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001739 LYS_IN_YANG));
1740 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01001741 type = ((struct lysc_node_leaf*)(*lysc_node_children_p(mod->compiled->data->prev))->prev)->type;
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001742 assert_non_null(type);
1743 assert_int_equal(1, type->refcount);
1744 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
Radek Krejcibade82a2018-12-05 10:13:48 +01001745 assert_string_equal("../../interface[ name = current()/../ifname ]/address/ip", ((struct lysc_type_leafref* )type)->path);
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001746 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1747 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1748 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001749
Radek Krejci20e8a182018-12-07 11:43:21 +01001750 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;"
1751 "leaf source {type leafref {path \"/endpoint-parent[id=current()/../field]/endpoint/name\";}}"
1752 "leaf field {type int32;}list endpoint-parent {key id;leaf id {type int32;}"
1753 "list endpoint {key name;leaf name {type string;}}}}", LYS_IN_YANG));
1754 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1755 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1756 assert_non_null(type);
1757 assert_int_equal(1, type->refcount);
1758 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1759 assert_string_equal("/endpoint-parent[id=current()/../field]/endpoint/name", ((struct lysc_type_leafref* )type)->path);
1760 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1761 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1762 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
1763
Radek Krejcia3045382018-11-22 14:30:31 +01001764 /* invalid paths */
1765 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container a {leaf target2 {type uint8;}}"
1766 "leaf ref1 {type leafref {path ../a/invalid;}}}", LYS_IN_YANG));
1767 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1768 logbuf_assert("Invalid leafref path - unable to find \"../a/invalid\".");
1769 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;container a {leaf target2 {type uint8;}}"
1770 "leaf ref1 {type leafref {path ../../toohigh;}}}", LYS_IN_YANG));
1771 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1772 logbuf_assert("Invalid leafref path \"../../toohigh\" - too many \"..\" in the path.");
1773 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;container a {leaf target2 {type uint8;}}"
1774 "leaf ref1 {type leafref {path /a:invalid;}}}", LYS_IN_YANG));
1775 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1776 logbuf_assert("Invalid leafref path - unable to find module connected with the prefix of the node \"/a:invalid\".");
1777 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;}}"
1778 "leaf ref1 {type leafref {path '/a[target2 = current()/../target1]/target2';}}}", LYS_IN_YANG));
1779 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1780 logbuf_assert("Invalid leafref path - node \"/a\" is expected to be a list, but it is container.");
1781 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;container a {leaf target2 {type uint8;}}"
1782 "leaf ref1 {type leafref {path /a!invalid;}}}", LYS_IN_YANG));
1783 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1784 logbuf_assert("Invalid leafref path at character 3 (/a!invalid).");
1785 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;container a {leaf target2 {type uint8;}}"
1786 "leaf ref1 {type leafref {path /a;}}}", LYS_IN_YANG));
1787 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1788 logbuf_assert("Invalid leafref path \"/a\" - target node is container instead of leaf or leaf-list.");
1789 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;container a {leaf target2 {type uint8; status deprecated;}}"
1790 "leaf ref1 {type leafref {path /a/target2;}}}", LYS_IN_YANG));
1791 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1792 logbuf_assert("A current definition \"ref1\" is not allowed to reference deprecated definition \"target2\".");
Radek Krejci2f4a0292018-11-22 15:41:53 +01001793 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
1794 "leaf ref1 {type leafref;}}", LYS_IN_YANG));
1795 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1796 logbuf_assert("Missing path substatement for leafref type.");
1797 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;typedef mytype {type leafref;}"
1798 "leaf ref1 {type mytype;}}", LYS_IN_YANG));
1799 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1800 logbuf_assert("Missing path substatement for leafref type mytype.");
Radek Krejci58d171e2018-11-23 13:50:55 +01001801 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;feature f;"
1802 "leaf ref {type leafref {path /target;}}leaf target {if-feature f;type string;}}", LYS_IN_YANG));
1803 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1804 logbuf_assert("Invalid leafref path \"/target\" - set of features applicable to the leafref target is not a subset of features "
1805 "applicable to the leafref itself.");
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001806 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
1807 "leaf ref {type leafref {path /target;}}leaf target {type string;config false;}}", LYS_IN_YANG));
1808 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1809 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 +01001810
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001811 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
1812 "leaf ref {type leafref {path /target; require-instance true;}}leaf target {type string;}}", LYS_IN_YANG));
1813 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1814 logbuf_assert("Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
1815 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type leafref {path /target;require-instance false;}}"
1816 "leaf ref {type mytype;}leaf target {type string;}}", LYS_IN_YANG));
1817 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1818 logbuf_assert("Leafref type \"mytype\" can be restricted by require-instance statement only in YANG 1.1 modules.");
1819
Radek Krejcibade82a2018-12-05 10:13:48 +01001820 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;"
1821 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1822 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1823 "leaf address {type leafref{ path \"/interface[name is current()/../ifname]/ip\";}}}",
1824 LYS_IN_YANG));
1825 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1826 logbuf_assert("Invalid leafref path predicate \"[name i\" - missing \"=\" after node-identifier.");
1827
1828 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;"
1829 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1830 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1831 "leaf address {type leafref{ path \"/interface[name=current()/../ifname/ip\";}}}",
1832 LYS_IN_YANG));
1833 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1834 logbuf_assert("Invalid leafref path predicate \"[name=current()/../ifname/ip\" - missing predicate termination.");
1835
1836 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;"
1837 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1838 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1839 "leaf address {type leafref{ path \"/interface[x:name=current()/../ifname]/ip\";}}}",
1840 LYS_IN_YANG));
1841 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1842 logbuf_assert("Invalid leafref path predicate \"[x:name=current()/../ifname]\" - prefix \"x\" not defined in module \"pp\".");
1843
1844 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;"
1845 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1846 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1847 "leaf address {type leafref{ path \"/interface[id=current()/../ifname]/ip\";}}}",
1848 LYS_IN_YANG));
1849 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1850 logbuf_assert("Invalid leafref path predicate \"[id=current()/../ifname]\" - predicate's key node \"id\" not found.");
1851
1852 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;"
1853 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1854 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1855 "leaf address {type leafref{ path \"/interface[name=current() / .. / ifname][name=current()/../test]/ip\";}}}",
1856 LYS_IN_YANG));
1857 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1858 logbuf_assert("Invalid leafref path predicate \"[name=current()/../test]\" - multiple equality tests for the key \"name\".");
1859
1860 assert_non_null(mod = lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;"
1861 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1862 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1863 "leaf address {type leafref{ path \"/interface[name = ../ifname]/ip\";}}}",
1864 LYS_IN_YANG));
1865 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1866 logbuf_assert("Invalid leafref path predicate \"[name = ../ifname]\" - missing current-function-invocation.");
1867
1868 assert_non_null(mod = lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;"
1869 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1870 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1871 "leaf address {type leafref{ path \"/interface[name = current()../ifname]/ip\";}}}",
1872 LYS_IN_YANG));
1873 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1874 logbuf_assert("Invalid leafref path predicate \"[name = current()../ifname]\" - missing \"/\" after current-function-invocation.");
1875
1876 assert_non_null(mod = lys_parse_mem(ctx, "module uu {namespace urn:uu;prefix uu;"
1877 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1878 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1879 "leaf address {type leafref{ path \"/interface[name = current()/..ifname]/ip\";}}}",
1880 LYS_IN_YANG));
1881 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1882 logbuf_assert("Invalid leafref path predicate \"[name = current()/..ifname]\" - missing \"/\" in \"../\" rel-path-keyexpr pattern.");
1883
1884 assert_non_null(mod = lys_parse_mem(ctx, "module vv {namespace urn:vv;prefix vv;"
1885 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1886 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1887 "leaf address {type leafref{ path \"/interface[name = current()/ifname]/ip\";}}}",
1888 LYS_IN_YANG));
1889 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1890 logbuf_assert("Invalid leafref path predicate \"[name = current()/ifname]\" - at least one \"..\" is expected in rel-path-keyexpr.");
1891
1892 assert_non_null(mod = lys_parse_mem(ctx, "module ww {namespace urn:ww;prefix ww;"
1893 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1894 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1895 "leaf address {type leafref{ path \"/interface[name = current()/../]/ip\";}}}",
1896 LYS_IN_YANG));
1897 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1898 logbuf_assert("Invalid leafref path predicate \"[name = current()/../]\" - at least one node-identifier is expected in rel-path-keyexpr.");
1899
1900 assert_non_null(mod = lys_parse_mem(ctx, "module xx {namespace urn:xx;prefix xx;"
1901 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1902 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1903 "leaf address {type leafref{ path \"/interface[name = current()/../$node]/ip\";}}}",
1904 LYS_IN_YANG));
1905 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1906 logbuf_assert("Invalid node identifier in leafref path predicate - character 22 (of [name = current()/../$node]).");
1907
1908 assert_non_null(mod = lys_parse_mem(ctx, "module yy {namespace urn:yy;prefix yy;"
1909 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1910 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1911 "leaf address {type leafref{ path \"/interface[name=current()/../x:ifname]/ip\";}}}",
1912 LYS_IN_YANG));
1913 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1914 logbuf_assert("Invalid leafref path predicate \"[name=current()/../x:ifname]\" - unable to find module of the node \"ifname\" in rel-path_keyexpr.");
1915
1916 assert_non_null(mod = lys_parse_mem(ctx, "module zz {namespace urn:zz;prefix zz;"
1917 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1918 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1919 "leaf address {type leafref{ path \"/interface[name=current()/../xxx]/ip\";}}}",
1920 LYS_IN_YANG));
1921 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1922 logbuf_assert("Invalid leafref path predicate \"[name=current()/../xxx]\" - unable to find node \"current()/../xxx\" in the rel-path_keyexpr.");
1923
1924 assert_non_null(mod = lys_parse_mem(ctx, "module zza {namespace urn:zza;prefix zza;"
1925 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1926 "leaf ifname{type leafref{ path \"../interface/name\";}}container c;"
1927 "leaf address {type leafref{ path \"/interface[name=current()/../c]/ip\";}}}",
1928 LYS_IN_YANG));
1929 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1930 logbuf_assert("Invalid leafref path predicate \"[name=current()/../c]\" - rel-path_keyexpr \"current()/../c\" refers container instead of leaf.");
1931
1932 assert_non_null(mod = lys_parse_mem(ctx, "module zzb {namespace urn:zzb;prefix zzb;"
1933 "list interface{key name;leaf name{type string;}leaf ip {type string;}container c;}"
1934 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1935 "leaf address {type leafref{ path \"/interface[c=current()/../ifname]/ip\";}}}",
1936 LYS_IN_YANG));
1937 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1938 logbuf_assert("Invalid leafref path predicate \"[c=current()/../ifname]\" - predicate's key node \"c\" not found.");
1939
Radek Krejci412ddfa2018-11-23 11:44:11 +01001940 /* circular chain */
1941 assert_non_null(mod = lys_parse_mem(ctx, "module aaa {namespace urn:aaa;prefix aaa;"
1942 "leaf ref1 {type leafref {path /ref2;}}"
1943 "leaf ref2 {type leafref {path /ref3;}}"
Radek Krejci0c3f1ad2018-11-23 14:19:38 +01001944 "leaf ref3 {type leafref {path /ref4;}}"
1945 "leaf ref4 {type leafref {path /ref1;}}}", LYS_IN_YANG));
Radek Krejci412ddfa2018-11-23 11:44:11 +01001946 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1947 logbuf_assert("Invalid leafref path \"/ref1\" - circular chain of leafrefs detected.");
1948
Radek Krejcia3045382018-11-22 14:30:31 +01001949 *state = NULL;
1950 ly_ctx_destroy(ctx, NULL);
1951}
1952
Radek Krejci43699232018-11-23 14:59:46 +01001953static void
1954test_type_empty(void **state)
1955{
1956 *state = test_type_empty;
1957
1958 struct ly_ctx *ctx;
1959 struct lys_module *mod;
1960
1961 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1962
1963 /* invalid */
1964 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
1965 "leaf l {type empty; default x;}}", LYS_IN_YANG));
1966 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1967 logbuf_assert("Leaf of type \"empty\" must not have a default value (x).");
1968
1969 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;typedef mytype {type empty; default x;}"
1970 "leaf l {type mytype;}}", LYS_IN_YANG));
1971 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1972 logbuf_assert("Invalid type \"mytype\" - \"empty\" type must not have a default value (x).");
1973
1974 *state = NULL;
1975 ly_ctx_destroy(ctx, NULL);
1976}
1977
Radek Krejcicdfecd92018-11-26 11:27:32 +01001978
1979static void
1980test_type_union(void **state)
1981{
1982 *state = test_type_union;
1983
1984 struct ly_ctx *ctx;
1985 struct lys_module *mod;
1986 struct lysc_type *type;
1987
1988 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1989
1990 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a; typedef mybasetype {type string;}"
1991 "typedef mytype {type union {type int8; type mybasetype;}}"
1992 "leaf l {type mytype;}}", LYS_IN_YANG));
1993 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1994 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1995 assert_non_null(type);
1996 assert_int_equal(2, type->refcount);
1997 assert_int_equal(LY_TYPE_UNION, type->basetype);
1998 assert_non_null(((struct lysc_type_union*)type)->types);
1999 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2000 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[0]->basetype);
2001 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2002
2003 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; typedef mybasetype {type string;}"
2004 "typedef mytype {type union {type int8; type mybasetype;}}"
2005 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}}", LYS_IN_YANG));
2006 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2007 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2008 assert_non_null(type);
2009 assert_int_equal(1, type->refcount);
2010 assert_int_equal(LY_TYPE_UNION, type->basetype);
2011 assert_non_null(((struct lysc_type_union*)type)->types);
2012 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2013 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2014 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[1]->basetype);
2015 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2016
2017 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c; typedef mybasetype {type string;}"
2018 "typedef mytype {type union {type leafref {path ../target;} type mybasetype;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002019 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
2020 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type int8;}}",
Radek Krejcicdfecd92018-11-26 11:27:32 +01002021 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(1, type->refcount);
2026 assert_int_equal(LY_TYPE_UNION, type->basetype);
2027 assert_non_null(((struct lysc_type_union*)type)->types);
2028 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2029 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2030 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
2031 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2032 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
2033 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
2034
Radek Krejci6be5ff12018-11-26 13:18:15 +01002035 /* invalid unions */
2036 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;typedef mytype {type union;}"
2037 "leaf l {type mytype;}}", LYS_IN_YANG));
2038 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2039 logbuf_assert("Missing type substatement for union type mytype.");
2040
2041 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type union;}}", LYS_IN_YANG));
2042 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2043 logbuf_assert("Missing type substatement for union type.");
2044
2045 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;typedef mytype {type union{type int8; type string;}}"
2046 "leaf l {type mytype {type string;}}}", LYS_IN_YANG));
2047 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2048 logbuf_assert("Invalid type substatement for the type not directly derived from union built-in type.");
2049
2050 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;typedef mytype {type union{type int8; type string;}}"
2051 "typedef mytype2 {type mytype {type string;}}leaf l {type mytype2;}}", LYS_IN_YANG));
2052 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2053 logbuf_assert("Invalid type substatement for the type \"mytype2\" not directly derived from union built-in type.");
2054
Radek Krejcicdfecd92018-11-26 11:27:32 +01002055 *state = NULL;
2056 ly_ctx_destroy(ctx, NULL);
2057}
2058
2059static void
2060test_type_dflt(void **state)
2061{
2062 *state = test_type_union;
2063
2064 struct ly_ctx *ctx;
2065 struct lys_module *mod;
2066 struct lysc_type *type;
2067
2068 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2069
2070 /* default is not inherited from union's types */
2071 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; typedef mybasetype {type string;default hello;units xxx;}"
2072 "leaf l {type union {type decimal64 {fraction-digits 2;} type mybasetype;}}}", LYS_IN_YANG));
2073 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2074 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2075 assert_non_null(type);
2076 assert_int_equal(1, type->refcount);
2077 assert_int_equal(LY_TYPE_UNION, type->basetype);
2078 assert_non_null(((struct lysc_type_union*)type)->types);
2079 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2080 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2081 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2082 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2083 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->units);
2084
2085 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mybasetype {type string;default hello;units xxx;}"
2086 "leaf l {type mybasetype;}}", LYS_IN_YANG));
2087 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2088 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2089 assert_non_null(type);
2090 assert_int_equal(2, type->refcount);
2091 assert_int_equal(LY_TYPE_STRING, type->basetype);
2092 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2093 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2094
2095 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mybasetype {type string;default hello;units xxx;}"
2096 "leaf l {type mybasetype; default goodbye;units yyy;}}", LYS_IN_YANG));
2097 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2098 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2099 assert_non_null(type);
2100 assert_int_equal(2, type->refcount);
2101 assert_int_equal(LY_TYPE_STRING, type->basetype);
2102 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2103 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2104
Radek Krejci6be5ff12018-11-26 13:18:15 +01002105 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; typedef mybasetype {type string;default hello;units xxx;}"
2106 "typedef mytype {type mybasetype;}leaf l1 {type mytype; default goodbye;units yyy;}"
2107 "leaf l2 {type mytype;}}", LYS_IN_YANG));
2108 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2109 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2110 assert_non_null(type);
2111 assert_int_equal(4, type->refcount);
2112 assert_int_equal(LY_TYPE_STRING, type->basetype);
2113 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2114 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2115 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
2116 assert_non_null(type);
2117 assert_int_equal(4, type->refcount);
2118 assert_int_equal(LY_TYPE_STRING, type->basetype);
2119 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data->next)->dflt);
2120 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data->next)->units);
2121
2122 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e; typedef mybasetype {type string;}"
2123 "typedef mytype {type mybasetype; default hello;units xxx;}leaf l {type mytype;}}", LYS_IN_YANG));
2124 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2125 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2126 assert_non_null(type);
2127 assert_int_equal(3, type->refcount);
2128 assert_int_equal(LY_TYPE_STRING, type->basetype);
2129 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2130 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2131
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002132 /* mandatory leaf does not takes default value from type */
2133 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;typedef mytype {type string; default hello;units xxx;}"
2134 "leaf l {type mytype; mandatory true;}}", LYS_IN_YANG));
2135 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2136 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2137 assert_non_null(type);
2138 assert_int_equal(LY_TYPE_STRING, type->basetype);
2139 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2140 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2141
Radek Krejcicdfecd92018-11-26 11:27:32 +01002142 *state = NULL;
2143 ly_ctx_destroy(ctx, NULL);
2144}
2145
Radek Krejci665421c2018-12-05 08:03:39 +01002146static void
2147test_status(void **state)
2148{
2149 *state = test_status;
2150
2151 struct ly_ctx *ctx;
2152 struct lys_module *mod;
2153
2154 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2155
2156 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2157 "container c {status deprecated; leaf l {status current; type string;}}}", LYS_IN_YANG));
2158 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2159 logbuf_assert("A \"current\" status is in conflict with the parent's \"deprecated\" status.");
2160
2161 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
2162 "container c {status obsolete; leaf l {status current; type string;}}}", LYS_IN_YANG));
2163 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2164 logbuf_assert("A \"current\" status is in conflict with the parent's \"obsolete\" status.");
2165
2166 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
2167 "container c {status obsolete; leaf l {status deprecated; type string;}}}", LYS_IN_YANG));
2168 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2169 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
2170
2171 *state = NULL;
2172 ly_ctx_destroy(ctx, NULL);
2173}
2174
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002175int main(void)
2176{
2177 const struct CMUnitTest tests[] = {
Radek Krejci4f28eda2018-11-12 11:46:16 +01002178 cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown),
2179 cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown),
2180 cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown),
Radek Krejci0f07bed2018-11-13 14:01:40 +01002181 cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown),
2182 cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown),
Radek Krejcicda74152018-11-13 15:27:32 +01002183 cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown),
Radek Krejci8b764662018-11-14 14:15:13 +01002184 cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown),
2185 cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown),
Radek Krejci6cba4292018-11-15 17:33:29 +01002186 cmocka_unit_test_setup_teardown(test_type_dec64, logger_setup, logger_teardown),
Radek Krejci16c0f822018-11-16 10:46:10 +01002187 cmocka_unit_test_setup_teardown(test_type_instanceid, logger_setup, logger_teardown),
Radek Krejci555cb5b2018-11-16 14:54:33 +01002188 cmocka_unit_test_setup_teardown(test_type_identityref, logger_setup, logger_teardown),
Radek Krejcia3045382018-11-22 14:30:31 +01002189 cmocka_unit_test_setup_teardown(test_type_leafref, logger_setup, logger_teardown),
Radek Krejci43699232018-11-23 14:59:46 +01002190 cmocka_unit_test_setup_teardown(test_type_empty, logger_setup, logger_teardown),
Radek Krejcicdfecd92018-11-26 11:27:32 +01002191 cmocka_unit_test_setup_teardown(test_type_union, logger_setup, logger_teardown),
2192 cmocka_unit_test_setup_teardown(test_type_dflt, logger_setup, logger_teardown),
Radek Krejci665421c2018-12-05 08:03:39 +01002193 cmocka_unit_test_setup_teardown(test_status, logger_setup, logger_teardown),
Radek Krejci4f28eda2018-11-12 11:46:16 +01002194 cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown),
Radek Krejci0e5d8382018-11-28 16:37:53 +01002195 cmocka_unit_test_setup_teardown(test_node_leaflist, logger_setup, logger_teardown),
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002196 cmocka_unit_test_setup_teardown(test_node_list, logger_setup, logger_teardown),
Radek Krejci056d0a82018-12-06 16:57:25 +01002197 cmocka_unit_test_setup_teardown(test_node_choice, logger_setup, logger_teardown),
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002198 };
2199
2200 return cmocka_run_group_tests(tests, NULL, NULL);
2201}