blob: cba30ee78bdc665b3e8f6c5f09001f1ba30f3688 [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);
Radek Krejci86d106e2018-10-18 09:53:19 +0200153 lysp_module_free(mod.parsed);
Radek Krejci76b3e962018-12-14 17:01:25 +0100154
155 /* data definition name collision in top level */
156 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module aa {namespace urn:aa;prefix aa;"
157 "leaf a {type string;} container a{presence x;}}", &mod.parsed));
158 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
159 logbuf_assert("Duplicate identifier \"a\" of data definition statement.");
160 assert_null(mod.compiled);
161 lysp_module_free(mod.parsed);
162
Radek Krejci313d9902018-11-08 09:42:58 +0100163 ly_ctx_destroy(ctx.ctx, NULL);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200164}
165
Radek Krejci151a5b72018-10-19 14:21:44 +0200166static void
167test_feature(void **state)
168{
Radek Krejcid05cbd92018-12-05 14:26:40 +0100169 *state = test_feature;
Radek Krejci151a5b72018-10-19 14:21:44 +0200170
Radek Krejci313d9902018-11-08 09:42:58 +0100171 struct ly_parser_ctx ctx = {0};
Radek Krejci1aefdf72018-11-01 11:01:39 +0100172 struct lys_module mod = {0}, *modp;
Radek Krejci151a5b72018-10-19 14:21:44 +0200173 const char *str;
174 struct lysc_feature *f, *f1;
175
176 str = "module a {namespace urn:a;prefix a;yang-version 1.1;\n"
177 "feature f1 {description test1;reference test2;status current;} feature f2; feature f3;\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100178 "feature orfeature {if-feature \"f1 or f2\";}\n"
179 "feature andfeature {if-feature \"f1 and f2\";}\n"
Radek Krejci151a5b72018-10-19 14:21:44 +0200180 "feature f6 {if-feature \"not f1\";}\n"
Radek Krejcidde18c52018-10-24 14:43:04 +0200181 "feature f7 {if-feature \"(f2 and f3) or (not f1)\";}\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100182 "feature f8 {if-feature \"f1 or f2 or f3 or orfeature or andfeature\";}\n"
183 "feature f9 {if-feature \"not not f1\";}}";
Radek Krejci151a5b72018-10-19 14:21:44 +0200184
Radek Krejci313d9902018-11-08 09:42:58 +0100185 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
186 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100187 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
Radek Krejci151a5b72018-10-19 14:21:44 +0200188 assert_non_null(mod.compiled);
189 assert_non_null(mod.compiled->features);
Radek Krejci87616bb2018-10-31 13:30:52 +0100190 assert_int_equal(9, LY_ARRAY_SIZE(mod.compiled->features));
Radek Krejci151a5b72018-10-19 14:21:44 +0200191 /* all features are disabled by default */
192 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
193 assert_int_equal(0, lysc_feature_value(f));
194 }
195 /* enable f1 */
196 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200197 f1 = &mod.compiled->features[0];
Radek Krejci151a5b72018-10-19 14:21:44 +0200198 assert_int_equal(1, lysc_feature_value(f1));
199
Radek Krejci87616bb2018-10-31 13:30:52 +0100200 /* enable orfeature */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200201 f = &mod.compiled->features[3];
Radek Krejci151a5b72018-10-19 14:21:44 +0200202 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100203 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "orfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200204 assert_int_equal(1, lysc_feature_value(f));
205
Radek Krejci87616bb2018-10-31 13:30:52 +0100206 /* enable andfeature - no possible since f2 is disabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200207 f = &mod.compiled->features[4];
Radek Krejci151a5b72018-10-19 14:21:44 +0200208 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100209 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
210 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci151a5b72018-10-19 14:21:44 +0200211 assert_int_equal(0, lysc_feature_value(f));
212
213 /* first enable f2, so f5 can be enabled then */
214 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f2"));
Radek Krejci87616bb2018-10-31 13:30:52 +0100215 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "andfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200216 assert_int_equal(1, lysc_feature_value(f));
217
218 /* f1 is enabled, so f6 cannot be enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200219 f = &mod.compiled->features[5];
Radek Krejci151a5b72018-10-19 14:21:44 +0200220 assert_int_equal(0, lysc_feature_value(f));
221 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "f6"));
222 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
223 assert_int_equal(0, lysc_feature_value(f));
224
Radek Krejci87616bb2018-10-31 13:30:52 +0100225 /* so disable f1 - andfeature will became also disabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200226 assert_int_equal(1, lysc_feature_value(f1));
Radek Krejci151a5b72018-10-19 14:21:44 +0200227 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
228 assert_int_equal(0, lysc_feature_value(f1));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200229 assert_int_equal(0, lysc_feature_value(&mod.compiled->features[4]));
Radek Krejci87616bb2018-10-31 13:30:52 +0100230 /* while orfeature is stille enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200231 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[3]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200232 /* and finally f6 can be enabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200233 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f6"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200234 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[5]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200235
236 /* complex evaluation of f7: f1 and f3 are disabled, while f2 is enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200237 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[6].iffeatures[0]));
Radek Krejcidde18c52018-10-24 14:43:04 +0200238 /* long evaluation of f8 to need to reallocate internal stack for operators */
239 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[7].iffeatures[0]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200240
Radek Krejci87616bb2018-10-31 13:30:52 +0100241 /* double negation of disabled f1 -> disabled */
242 assert_int_equal(0, lysc_iffeature_value(&mod.compiled->features[8].iffeatures[0]));
243
Radek Krejci38920282018-11-01 09:24:16 +0100244 /* disable all features */
245 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "*"));
246 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
247 assert_int_equal(0, lys_feature_value(&mod, f->name));
248 }
249 /* re-setting already set feature */
250 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
251 assert_int_equal(0, lys_feature_value(&mod, "f1"));
252
253 /* enabling feature that cannot be enabled due to its if-features */
Radek Krejci1aefdf72018-11-01 11:01:39 +0100254 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
255 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
256 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejcica3db002018-11-01 10:31:01 +0100257 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "*"));
258 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci1aefdf72018-11-01 11:01:39 +0100259 /* test if not changed */
260 assert_int_equal(1, lys_feature_value(&mod, "f1"));
261 assert_int_equal(0, lys_feature_value(&mod, "f2"));
Radek Krejci38920282018-11-01 09:24:16 +0100262
Radek Krejci1aefdf72018-11-01 11:01:39 +0100263 /* invalid reference */
Radek Krejci38920282018-11-01 09:24:16 +0100264 assert_int_equal(LY_EINVAL, lys_feature_enable(&mod, "xxx"));
265 logbuf_assert("Feature \"xxx\" not found in module \"a\".");
266
Radek Krejci151a5b72018-10-19 14:21:44 +0200267 lysc_module_free(mod.compiled, NULL);
268 lysp_module_free(mod.parsed);
Radek Krejci87616bb2018-10-31 13:30:52 +0100269
270 /* some invalid expressions */
Radek Krejci313d9902018-11-08 09:42:58 +0100271 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 +0100272 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100273 logbuf_assert("Invalid value \"f1\" of if-feature - unable to find feature \"f1\".");
274 lysp_module_free(mod.parsed);
275
Radek Krejci313d9902018-11-08 09:42:58 +0100276 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 +0100277 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100278 logbuf_assert("Invalid value \"f and\" of if-feature - unexpected end of expression.");
279 lysp_module_free(mod.parsed);
280
Radek Krejci313d9902018-11-08 09:42:58 +0100281 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 +0100282 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100283 logbuf_assert("Invalid value \"or\" of if-feature - unexpected end of expression.");
284 lysp_module_free(mod.parsed);
285
Radek Krejci313d9902018-11-08 09:42:58 +0100286 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 +0100287 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100288 logbuf_assert("Invalid value \"(f1\" of if-feature - non-matching opening and closing parentheses.");
289 lysp_module_free(mod.parsed);
290
Radek Krejci313d9902018-11-08 09:42:58 +0100291 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 +0100292 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100293 logbuf_assert("Invalid value \"f1)\" of if-feature - non-matching opening and closing parentheses.");
294 lysp_module_free(mod.parsed);
295
Radek Krejci313d9902018-11-08 09:42:58 +0100296 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 +0100297 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100298 logbuf_assert("Invalid value \"---\" of if-feature - unable to find feature \"---\".");
299 lysp_module_free(mod.parsed);
300
Radek Krejci313d9902018-11-08 09:42:58 +0100301 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 +0100302 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci87616bb2018-10-31 13:30:52 +0100303 logbuf_assert("Invalid value \"not f1\" of if-feature - YANG 1.1 expression in YANG 1.0 module.");
304 lysp_module_free(mod.parsed);
305
Radek Krejcid05cbd92018-12-05 14:26:40 +0100306 assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f1;}", &mod.parsed));
307 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
308 logbuf_assert("Duplicate identifier \"f1\" of feature statement.");
309 lysp_module_free(mod.parsed);
310
311 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "submodule sb {belongs-to b {prefix b;} feature f1;}");
312 assert_non_null(modp = lys_parse_mem(ctx.ctx, "module b{namespace urn:b; prefix b; include sb;feature f1;}", LYS_IN_YANG));
313 assert_int_equal(LY_EVALID, lys_compile(modp, 0));
314 logbuf_assert("Duplicate identifier \"f1\" of feature statement.");
315
Radek Krejci1aefdf72018-11-01 11:01:39 +0100316 /* import reference */
Radek Krejci313d9902018-11-08 09:42:58 +0100317 assert_non_null(modp = lys_parse_mem(ctx.ctx, str, LYS_IN_YANG));
Radek Krejci1aefdf72018-11-01 11:01:39 +0100318 assert_int_equal(LY_SUCCESS, lys_compile(modp, 0));
319 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f1"));
Radek Krejcid05cbd92018-12-05 14:26:40 +0100320 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 +0100321 assert_int_equal(LY_SUCCESS, lys_compile(modp, 0));
322 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f2"));
323 assert_int_equal(0, lys_feature_value(modp, "f1"));
324 assert_int_equal(1, lys_feature_value(modp, "f2"));
325
Radek Krejcid05cbd92018-12-05 14:26:40 +0100326 *state = NULL;
Radek Krejci313d9902018-11-08 09:42:58 +0100327 ly_ctx_destroy(ctx.ctx, NULL);
Radek Krejci151a5b72018-10-19 14:21:44 +0200328}
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200329
Radek Krejci478020e2018-10-30 16:02:14 +0100330static void
331test_identity(void **state)
332{
Radek Krejci7f2a5362018-11-28 13:05:37 +0100333 *state = test_identity;
Radek Krejci478020e2018-10-30 16:02:14 +0100334
335 struct ly_ctx *ctx;
Radek Krejci1aefdf72018-11-01 11:01:39 +0100336 struct lys_module *mod1, *mod2;
Radek Krejci478020e2018-10-30 16:02:14 +0100337 const char *mod1_str = "module a {namespace urn:a;prefix a; identity a1;}";
Radek Krejci027d5802018-11-14 16:57:28 +0100338 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 +0100339
340 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
341 assert_non_null(mod1 = lys_parse_mem(ctx, mod1_str, LYS_IN_YANG));
342 assert_non_null(mod2 = lys_parse_mem(ctx, mod2_str, LYS_IN_YANG));
Radek Krejci7f2a5362018-11-28 13:05:37 +0100343 assert_int_equal(LY_SUCCESS, lys_compile(mod1, 0));
Radek Krejcif8f882a2018-10-31 14:51:15 +0100344 assert_int_equal(LY_SUCCESS, lys_compile(mod2, 0));
Radek Krejci478020e2018-10-30 16:02:14 +0100345
346 assert_non_null(mod1->compiled);
347 assert_non_null(mod1->compiled->identities);
348 assert_non_null(mod2->compiled);
349 assert_non_null(mod2->compiled->identities);
350
351 assert_non_null(mod1->compiled->identities[0].derived);
352 assert_int_equal(1, LY_ARRAY_SIZE(mod1->compiled->identities[0].derived));
353 assert_ptr_equal(mod1->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
354 assert_non_null(mod2->compiled->identities[0].derived);
355 assert_int_equal(2, LY_ARRAY_SIZE(mod2->compiled->identities[0].derived));
356 assert_ptr_equal(mod2->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
357 assert_ptr_equal(mod2->compiled->identities[0].derived[1], &mod2->compiled->identities[3]);
358 assert_non_null(mod2->compiled->identities[1].derived);
359 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived));
360 assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[2]);
361 assert_non_null(mod2->compiled->identities[2].derived);
362 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[2].derived));
363 assert_ptr_equal(mod2->compiled->identities[2].derived[0], &mod2->compiled->identities[3]);
364
Radek Krejcid05cbd92018-12-05 14:26:40 +0100365 assert_non_null(mod1 = lys_parse_mem(ctx, "module c{namespace urn:c; prefix c; identity i1;identity i1;}", LYS_IN_YANG));
366 assert_int_equal(LY_EVALID, lys_compile(mod1, 0));
367 logbuf_assert("Duplicate identifier \"i1\" of identity statement.");
368
369 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule sd {belongs-to d {prefix d;} identity i1;}");
370 assert_non_null(mod1 = lys_parse_mem(ctx, "module d{namespace urn:d; prefix d; include sd;identity i1;}", LYS_IN_YANG));
371 assert_int_equal(LY_EVALID, lys_compile(mod1, 0));
372 logbuf_assert("Duplicate identifier \"i1\" of identity statement.");
373
Radek Krejci7f2a5362018-11-28 13:05:37 +0100374 *state = NULL;
Radek Krejci478020e2018-10-30 16:02:14 +0100375 ly_ctx_destroy(ctx, NULL);
376}
377
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100378static void
379test_node_container(void **state)
380{
381 (void) state; /* unused */
382
383 struct ly_ctx *ctx;
384 struct lys_module *mod;
385 struct lysc_node_container *cont;
386
387 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
388 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;container c;}", LYS_IN_YANG));
389 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
390 assert_non_null(mod->compiled);
391 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
392 assert_int_equal(LYS_CONTAINER, cont->nodetype);
393 assert_string_equal("c", cont->name);
394 assert_true(cont->flags & LYS_CONFIG_W);
395 assert_true(cont->flags & LYS_STATUS_CURR);
396
Radek Krejci98094b32018-11-02 16:21:47 +0100397 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 +0100398 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
Radek Krejci98094b32018-11-02 16:21:47 +0100399 logbuf_assert("Missing explicit \"deprecated\" status that was already specified in parent, inheriting.");
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100400 assert_non_null(mod->compiled);
401 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
402 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100403 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100404 assert_non_null((cont = (struct lysc_node_container*)cont->child));
405 assert_int_equal(LYS_CONTAINER, cont->nodetype);
406 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100407 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100408 assert_string_equal("child", cont->name);
409
410 ly_ctx_destroy(ctx, NULL);
411}
412
Radek Krejci0e5d8382018-11-28 16:37:53 +0100413static void
414test_node_leaflist(void **state)
415{
416 *state = test_node_leaflist;
417
418 struct ly_ctx *ctx;
419 struct lys_module *mod;
420 struct lysc_type *type;
421 struct lysc_node_leaflist *ll;
422
423 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
424
425 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;"
426 "typedef mytype {type union {type leafref {path ../target;} type string;}}"
427 "leaf-list ll1 {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
428 "leaf-list ll2 {type leafref {path ../target;}}"
429 "leaf target {type int8;}}",
430 LYS_IN_YANG));
431 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
432 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
433 assert_non_null(type);
434 assert_int_equal(1, type->refcount);
435 assert_int_equal(LY_TYPE_UNION, type->basetype);
436 assert_non_null(((struct lysc_type_union*)type)->types);
437 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
438 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
439 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
440 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
441 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
442 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
443 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
444 assert_non_null(type);
445 assert_int_equal(1, type->refcount);
446 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
447 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
448 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
449
Radek Krejci6bb080b2018-11-28 17:23:41 +0100450 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 +0100451 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
452 assert_non_null(mod->compiled);
453 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
454 assert_int_equal(0, ll->min);
455 assert_int_equal((uint32_t)-1, ll->max);
456
Radek Krejci6bb080b2018-11-28 17:23:41 +0100457 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 +0100458 "leaf-list ll1 {type mytype;default 1; default 1; config false;}"
Radek Krejcia6d57732018-11-29 13:40:37 +0100459 "leaf-list ll2 {type mytype; ordered-by user;}}", LYS_IN_YANG));
Radek Krejci6bb080b2018-11-28 17:23:41 +0100460 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
461 assert_non_null(mod->compiled);
462 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
463 assert_non_null(ll->dflts);
464 assert_int_equal(3, ll->type->refcount);
465 assert_int_equal(2, LY_ARRAY_SIZE(ll->dflts));
466 assert_string_equal("1", ll->dflts[0]);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100467 assert_string_equal("1", ll->dflts[1]);
Radek Krejcia6d57732018-11-29 13:40:37 +0100468 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, ll->flags);
Radek Krejci6bb080b2018-11-28 17:23:41 +0100469 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data->next));
470 assert_non_null(ll->dflts);
471 assert_int_equal(3, ll->type->refcount);
472 assert_int_equal(1, LY_ARRAY_SIZE(ll->dflts));
473 assert_string_equal("10", ll->dflts[0]);
Radek Krejcia6d57732018-11-29 13:40:37 +0100474 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, ll->flags);
475
476 /* ordered-by is ignored for state data, RPC/action output parameters and notification content
477 * TODO test also, RPC output parameters and notification content */
478 assert_non_null(mod = lys_parse_mem(ctx, "module d {yang-version 1.1;namespace urn:d;prefix d;"
479 "leaf-list ll {config false; type string; ordered-by user;}}", LYS_IN_YANG));
480 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
481 /* but warning is present: */
482 logbuf_assert("The ordered-by statement is ignored in lists representing state data, RPC/action output parameters or notification content ().");
483 assert_non_null(mod->compiled);
484 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
485 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, ll->flags);
Radek Krejci6bb080b2018-11-28 17:23:41 +0100486
487 /* invalid */
488 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf-list ll {type empty;}}", LYS_IN_YANG));
489 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
490 logbuf_assert("Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules.");
491
492 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));
493 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
494 logbuf_assert("Leaf-list of type \"empty\" must not have a default value (x).");
495
496 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;"
497 "leaf-list ll {config false;type string; default one;default two;default one;}}", LYS_IN_YANG));
498 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
499 assert_non_null(mod->compiled);
500 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
501 assert_non_null(ll->dflts);
502 assert_int_equal(3, LY_ARRAY_SIZE(ll->dflts));
503 assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;"
504 "leaf-list ll {type string; default one;default two;default one;}}", LYS_IN_YANG));
505 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
506 logbuf_assert("Configuration leaf-list has multiple defaults of the same value \"one\".");
507
Radek Krejci0e5d8382018-11-28 16:37:53 +0100508 *state = NULL;
509 ly_ctx_destroy(ctx, NULL);
510}
511
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100512static void
513test_node_list(void **state)
514{
515 *state = test_node_list;
516
517 struct ly_ctx *ctx;
518 struct lys_module *mod;
519 struct lysc_node_list *list;
520
521 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
522
523 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
524 "list l1 {key \"x y\"; ordered-by user; leaf x {type string; when 1;}leaf y{type string;if-feature f;}}"
525 "list l2 {config false;leaf value {type string;}}}", LYS_IN_YANG));
526 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
527 list = (struct lysc_node_list*)mod->compiled->data;
528 assert_non_null(list);
529 assert_non_null(list->keys);
530 assert_int_equal(2, LY_ARRAY_SIZE(list->keys));
531 assert_string_equal("x", list->keys[0]->name);
532 assert_string_equal("y", list->keys[1]->name);
533 assert_non_null(list->child);
534 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, list->flags);
535 assert_true(list->child->flags & LYS_KEY);
536 assert_true(list->child->next->flags & LYS_KEY);
537 list = (struct lysc_node_list*)mod->compiled->data->next;
538 assert_non_null(list);
539 assert_null(list->keys);
540 assert_non_null(list->child);
541 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM, list->flags);
542 assert_false(list->child->flags & LYS_KEY);
543
544 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;"
545 "list l {key a; unique \"a c/b:b\"; unique \"c/e d\";"
Radek Krejci665421c2018-12-05 08:03:39 +0100546 "leaf a {type string; default x;} leaf d {type string;config false;}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100547 "container c {leaf b {type string;}leaf e{type string;config false;}}}}", LYS_IN_YANG));
548 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
549 list = (struct lysc_node_list*)mod->compiled->data;
550 assert_non_null(list);
551 assert_string_equal("l", list->name);
552 assert_non_null(list->keys);
553 assert_int_equal(1, LY_ARRAY_SIZE(list->keys));
554 assert_string_equal("a", list->keys[0]->name);
555 assert_true(list->keys[0]->flags & LYS_KEY);
Radek Krejci665421c2018-12-05 08:03:39 +0100556 assert_null(list->keys[0]->dflt);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100557 assert_non_null(list->uniques);
558 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques));
559 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0]));
560 assert_string_equal("a", list->uniques[0][0]->name);
561 assert_true(list->uniques[0][0]->flags & LYS_UNIQUE);
562 assert_string_equal("b", list->uniques[0][1]->name);
563 assert_true(list->uniques[0][1]->flags & LYS_UNIQUE);
564 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[1]));
565 assert_string_equal("e", list->uniques[1][0]->name);
566 assert_true(list->uniques[1][0]->flags & LYS_UNIQUE);
567 assert_string_equal("d", list->uniques[1][1]->name);
568 assert_true(list->uniques[1][1]->flags & LYS_UNIQUE);
569
Radek Krejci665421c2018-12-05 08:03:39 +0100570 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;"
571 "list l {key a;leaf a {type empty;}}}", LYS_IN_YANG));
572 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
573 list = (struct lysc_node_list*)mod->compiled->data;
574 assert_non_null(list);
575 assert_string_equal("l", list->name);
576 assert_non_null(list->keys);
577 assert_int_equal(1, LY_ARRAY_SIZE(list->keys));
578 assert_string_equal("a", list->keys[0]->name);
579 assert_true(list->keys[0]->flags & LYS_KEY);
580 assert_int_equal(LY_TYPE_EMPTY, list->keys[0]->type->basetype);
581
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100582 /* invalid */
583 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;list l;}", LYS_IN_YANG));
584 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
585 logbuf_assert("Missing key in list representing configuration data.");
586
587 assert_non_null(mod = lys_parse_mem(ctx, "module bb {yang-version 1.1; namespace urn:bb;prefix bb;"
588 "list l {key x; leaf x {type string; when 1;}}}", LYS_IN_YANG));
589 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
590 logbuf_assert("List's key \"x\" must not have any \"when\" statement.");
591
592 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;feature f;"
593 "list l {key x; leaf x {type string; if-feature f;}}}", LYS_IN_YANG));
594 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
595 logbuf_assert("List's key \"x\" must not have any \"if-feature\" statement.");
596
597 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;"
598 "list l {key x; leaf x {type string; config false;}}}", LYS_IN_YANG));
599 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
600 logbuf_assert("Key of the configuration list must not be status leaf.");
601
602 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;"
603 "list l {config false;key x; leaf x {type string; config true;}}}", LYS_IN_YANG));
604 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
605 logbuf_assert("Configuration node cannot be child of any state data node.");
606
607 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;"
608 "list l {key x; leaf-list x {type string;}}}", LYS_IN_YANG));
609 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
610 logbuf_assert("The list's key \"x\" not found.");
611
612 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;"
613 "list l {key x; unique y;leaf x {type string;} leaf-list y {type string;}}}", LYS_IN_YANG));
614 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
615 logbuf_assert("Unique's descendant-schema-nodeid \"y\" refers to a leaf-list node instead of a leaf.");
616
617 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
618 "list l {key x; unique \"x y\";leaf x {type string;} leaf y {config false; type string;}}}", LYS_IN_YANG));
619 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
620 logbuf_assert("Unique statement \"x y\" refers to leafs with different config type.");
621
Radek Krejci665421c2018-12-05 08:03:39 +0100622 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;"
623 "list l {key x; unique a:x;leaf x {type string;}}}", LYS_IN_YANG));
624 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
625 logbuf_assert("Invalid descendant-schema-nodeid value \"a:x\" - prefix \"a\" not defined in module \"ii\".");
626
627 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;"
628 "list l {key x; unique c/x;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
629 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
630 logbuf_assert("Invalid descendant-schema-nodeid value \"c/x\" - target node not found.");
631
632 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
633 "list l {key x; unique c^y;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
634 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
635 logbuf_assert("Invalid descendant-schema-nodeid value \"c^\" - missing \"/\" as node-identifier separator.");
636
637 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
638 "list l {key \"x y x\";leaf x {type string;}leaf y {type string;}}}", LYS_IN_YANG));
639 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
640 logbuf_assert("Duplicated key identifier \"x\".");
641
642 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;"
643 "list l {key x;leaf x {type empty;}}}", LYS_IN_YANG));
644 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
645 logbuf_assert("Key of a list can be of type \"empty\" only in YANG 1.1 modules.");
646
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100647 *state = NULL;
648 ly_ctx_destroy(ctx, NULL);
649}
650
Radek Krejci056d0a82018-12-06 16:57:25 +0100651static void
652test_node_choice(void **state)
653{
654 *state = test_node_choice;
655
656 struct ly_ctx *ctx;
657 struct lys_module *mod;
658 struct lysc_node_choice *ch;
659 struct lysc_node_case *cs;
660
661 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
662
663 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100664 "choice ch {default a:b; case a {leaf a1 {type string;}leaf a2 {type string;}}"
665 "leaf b {type string;}}}", LYS_IN_YANG));
Radek Krejci056d0a82018-12-06 16:57:25 +0100666 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
667 ch = (struct lysc_node_choice*)mod->compiled->data;
668 assert_non_null(ch);
Radek Krejci01342af2019-01-03 15:18:08 +0100669 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, ch->flags);
Radek Krejci056d0a82018-12-06 16:57:25 +0100670 cs = ch->cases;
671 assert_non_null(cs);
672 assert_string_equal("a", cs->name);
673 assert_ptr_equal(ch, cs->parent);
674 assert_non_null(cs->child);
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100675 assert_string_equal("a1", cs->child->name);
676 assert_non_null(cs->child->next);
677 assert_string_equal("a2", cs->child->next->name);
Radek Krejci056d0a82018-12-06 16:57:25 +0100678 assert_ptr_equal(cs, cs->child->parent);
679 cs = (struct lysc_node_case*)cs->next;
680 assert_non_null(cs);
681 assert_string_equal("b", cs->name);
Radek Krejci01342af2019-01-03 15:18:08 +0100682 assert_int_equal(LYS_STATUS_CURR | LYS_SET_DFLT, cs->flags);
Radek Krejci056d0a82018-12-06 16:57:25 +0100683 assert_ptr_equal(ch, cs->parent);
684 assert_non_null(cs->child);
685 assert_string_equal("b", cs->child->name);
686 assert_ptr_equal(cs, cs->child->parent);
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100687 assert_ptr_equal(ch->cases->child->next, cs->child->prev);
688 assert_ptr_equal(ch->cases->child->next->next, cs->child);
Radek Krejci056d0a82018-12-06 16:57:25 +0100689 assert_ptr_equal(ch->cases->child->prev, cs->child);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100690 assert_ptr_equal(ch->dflt, cs);
Radek Krejci056d0a82018-12-06 16:57:25 +0100691
692 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
693 "choice ch {case a {leaf x {type string;}}leaf x {type string;}}}", LYS_IN_YANG));
694 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
695 logbuf_assert("Duplicate identifier \"x\" of data definition statement.");
696 assert_non_null(mod = lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa;"
697 "choice ch {case a {leaf y {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
698 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
699 logbuf_assert("Duplicate identifier \"y\" of data definition statement.");
700 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
701 "choice ch {case a {leaf x {type string;}}leaf a {type string;}}}", LYS_IN_YANG));
702 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
703 logbuf_assert("Duplicate identifier \"a\" of case statement.");
704 assert_non_null(mod = lys_parse_mem(ctx, "module bb2 {namespace urn:bb2;prefix bb;"
705 "choice ch {case b {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
706 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
707 logbuf_assert("Duplicate identifier \"b\" of case statement.");
708
Radek Krejcia9026eb2018-12-12 16:04:47 +0100709 assert_non_null(mod = lys_parse_mem(ctx, "module ca {namespace urn:ca;prefix ca;"
710 "choice ch {default c;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
711 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
712 logbuf_assert("Default case \"c\" not found.");
713 assert_non_null(mod = lys_parse_mem(ctx, "module cb {namespace urn:cb;prefix cb; import a {prefix a;}"
714 "choice ch {default a:a;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
715 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
716 logbuf_assert("Invalid default case referencing a case from different YANG module (by prefix \"a\").");
717 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
718 "choice ch {default a;case a {leaf x {mandatory true;type string;}}}}", LYS_IN_YANG));
719 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
720 logbuf_assert("Mandatory node \"x\" under the default case \"a\".");
721 /* TODO check with mandatory nodes from augment placed into the case */
722
Radek Krejci056d0a82018-12-06 16:57:25 +0100723 *state = NULL;
724 ly_ctx_destroy(ctx, NULL);
725}
726
Radek Krejci9800fb82018-12-13 14:26:23 +0100727static void
728test_node_anydata(void **state)
729{
730 *state = test_node_anydata;
731
732 struct ly_ctx *ctx;
733 struct lys_module *mod;
734 struct lysc_node_anydata *any;
735
736 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
737
738 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;"
739 "anydata any {config false;mandatory true;}}", LYS_IN_YANG));
740 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
741 any = (struct lysc_node_anydata*)mod->compiled->data;
742 assert_non_null(any);
743 assert_int_equal(LYS_ANYDATA, any->nodetype);
744 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE, any->flags);
745
746 logbuf_clean();
747 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;"
748 "anyxml any;}", LYS_IN_YANG));
749 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
750 any = (struct lysc_node_anydata*)mod->compiled->data;
751 assert_non_null(any);
752 assert_int_equal(LYS_ANYXML, any->nodetype);
753 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, any->flags);
754 logbuf_assert("Use of anyxml to define configuration data is not recommended."); /* warning */
755
756 /* invalid */
757 assert_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;anydata any;}", LYS_IN_YANG));
758 logbuf_assert("Invalid keyword \"anydata\" as a child of \"module\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
759
760 *state = NULL;
761 ly_ctx_destroy(ctx, NULL);
762}
763
Radek Krejci0f07bed2018-11-13 14:01:40 +0100764/**
765 * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types,
766 * do not test the expression itself
767 */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100768static void
Radek Krejci0f07bed2018-11-13 14:01:40 +0100769test_type_range(void **state)
Radek Krejci4f28eda2018-11-12 11:46:16 +0100770{
Radek Krejci0f07bed2018-11-13 14:01:40 +0100771 *state = test_type_range;
772
773 struct ly_ctx *ctx;
774 struct lys_module *mod;
775 struct lysc_type *type;
776
777 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
778
779 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));
780 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
781 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
782 assert_non_null(type);
783 assert_int_equal(LY_TYPE_INT8, type->basetype);
784 assert_non_null(((struct lysc_type_num*)type)->range);
785 assert_non_null(((struct lysc_type_num*)type)->range->parts);
786 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
787 assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64);
788 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
789 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64);
790 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64);
791
792 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));
793 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
794 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
795 assert_non_null(type);
796 assert_int_equal(LY_TYPE_INT16, type->basetype);
797 assert_non_null(((struct lysc_type_num*)type)->range);
798 assert_non_null(((struct lysc_type_num*)type)->range->parts);
799 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
800 assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64);
801 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
802 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64);
803 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64);
804
805 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));
806 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
807 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
808 assert_non_null(type);
809 assert_int_equal(LY_TYPE_INT32, type->basetype);
810 assert_non_null(((struct lysc_type_num*)type)->range);
811 assert_non_null(((struct lysc_type_num*)type)->range->parts);
812 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
813 assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64);
814 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
815 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64);
816 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64);
817
818 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));
819 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
820 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
821 assert_non_null(type);
822 assert_int_equal(LY_TYPE_INT64, type->basetype);
823 assert_non_null(((struct lysc_type_num*)type)->range);
824 assert_non_null(((struct lysc_type_num*)type)->range->parts);
825 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
826 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64);
827 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
828 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64);
829 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64);
830
831 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));
832 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
833 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
834 assert_non_null(type);
835 assert_int_equal(LY_TYPE_UINT8, type->basetype);
836 assert_non_null(((struct lysc_type_num*)type)->range);
837 assert_non_null(((struct lysc_type_num*)type)->range->parts);
838 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
839 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
840 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
841 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
842 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
843
844 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));
845 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
846 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
847 assert_non_null(type);
848 assert_int_equal(LY_TYPE_UINT16, type->basetype);
849 assert_non_null(((struct lysc_type_num*)type)->range);
850 assert_non_null(((struct lysc_type_num*)type)->range->parts);
851 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
852 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
853 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
854 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
855 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
856
857 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));
858 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
859 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
860 assert_non_null(type);
861 assert_int_equal(LY_TYPE_UINT32, type->basetype);
862 assert_non_null(((struct lysc_type_num*)type)->range);
863 assert_non_null(((struct lysc_type_num*)type)->range->parts);
864 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
865 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
866 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
867 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
868 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
869
870 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));
871 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
872 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
873 assert_non_null(type);
874 assert_int_equal(LY_TYPE_UINT64, type->basetype);
875 assert_non_null(((struct lysc_type_num*)type)->range);
876 assert_non_null(((struct lysc_type_num*)type)->range->parts);
877 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
878 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
879 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
880 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
881 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
882
883 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}"
884 "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG));
885 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
886 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
887 assert_non_null(type);
888 assert_int_equal(3, type->refcount);
889 assert_int_equal(LY_TYPE_UINT8, type->basetype);
890 assert_non_null(((struct lysc_type_num*)type)->range);
891 assert_non_null(((struct lysc_type_num*)type)->range->parts);
892 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
893
Radek Krejcif1394042019-01-08 10:53:34 +0100894 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;"
895 "typedef mytype {type uint8 {range 1..100{description \"one to hundred\";reference A;}}}"
896 "leaf l {type mytype {range 1..10 {description \"one to ten\";reference B;}}}}", LYS_IN_YANG));
897 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
898 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
899 assert_non_null(type);
900 assert_int_equal(1, type->refcount);
901 assert_int_equal(LY_TYPE_UINT8, type->basetype);
902 assert_non_null(((struct lysc_type_num*)type)->range);
903 assert_string_equal("one to ten", ((struct lysc_type_num*)type)->range->dsc);
904 assert_string_equal("B", ((struct lysc_type_num*)type)->range->ref);
905 assert_non_null(((struct lysc_type_num*)type)->range->parts);
906 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
907 assert_int_equal(1, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
908 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
909
Radek Krejci0f07bed2018-11-13 14:01:40 +0100910 *state = NULL;
911 ly_ctx_destroy(ctx, NULL);
912}
913
914static void
915test_type_length(void **state)
916{
917 *state = test_type_length;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100918
919 struct ly_ctx *ctx;
920 struct lys_module *mod;
921 struct lysc_type *type;
922
923 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
924
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100925 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 +0100926 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
927 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
928 assert_non_null(type);
929 assert_non_null(((struct lysc_type_bin*)type)->length);
930 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
Radek Krejcic5ddcc02018-11-12 13:28:18 +0100931 assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag);
932 assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100933 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
934 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
935 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
936
937 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type binary {length max;}}}", 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));
Radek Krejci0fe20752018-11-27 11:33:24 +0100944 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
945 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100946
947 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));
948 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
949 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
950 assert_non_null(type);
951 assert_non_null(((struct lysc_type_bin*)type)->length);
952 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
953 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
954 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci0fe20752018-11-27 11:33:24 +0100955 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100956
957 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type binary {length 5;}}}", LYS_IN_YANG));
958 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
959 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
960 assert_non_null(type);
961 assert_non_null(((struct lysc_type_bin*)type)->length);
962 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
963 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
964 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
965 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
966
967 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));
968 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
969 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
970 assert_non_null(type);
971 assert_non_null(((struct lysc_type_bin*)type)->length);
972 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
973 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
974 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
975 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
976
977 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));
978 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
979 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
980 assert_non_null(type);
981 assert_non_null(((struct lysc_type_bin*)type)->length);
982 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
983 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
984 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
985 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
986 assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
987 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
988
989 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));
990 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
991 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
992 assert_non_null(type);
993 assert_non_null(((struct lysc_type_bin*)type)->length);
994 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
995 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
996 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
997 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
998 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
999 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
1000
Radek Krejcib31c8992018-11-12 16:29:16 +01001001 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}"
1002 "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG));
1003 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1004 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1005 assert_non_null(type);
1006 assert_non_null(((struct lysc_type_bin*)type)->length);
1007 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1008 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1009 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1010 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1011
1012 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}"
1013 "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG));
1014 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1015 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1016 assert_non_null(type);
1017 assert_non_null(((struct lysc_type_bin*)type)->length);
1018 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1019 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1020 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1021 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1022
1023 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}"
1024 "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG));
1025 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1026 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1027 assert_non_null(type);
1028 assert_non_null(((struct lysc_type_bin*)type)->length);
1029 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1030 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1031 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1032 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1033 assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
1034 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
1035
1036 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 +01001037 "leaf l {type mytype {length \"10..80\";}}leaf ll {type mytype;}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +01001038 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1039 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1040 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001041 assert_int_equal(1, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +01001042 assert_non_null(((struct lysc_type_bin*)type)->length);
1043 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1044 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1045 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001046 assert_int_equal(80, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejcib31c8992018-11-12 16:29:16 +01001047 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1048 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001049 assert_int_equal(2, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +01001050 assert_non_null(((struct lysc_type_bin*)type)->length);
1051 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1052 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1053 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1054 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1055
Radek Krejci56aa27c2018-11-13 14:21:59 +01001056 assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}"
1057 "typedef mytype2 {type mytype {pattern '[0-9]*';}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
Radek Krejci9a191e62018-11-13 13:19:56 +01001058 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1059 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1060 assert_non_null(type);
1061 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001062 assert_int_equal(1, type->refcount);
Radek Krejcicda74152018-11-13 15:27:32 +01001063 assert_non_null(((struct lysc_type_str*)type)->length);
1064 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1065 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1066 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1067 assert_int_equal(100, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
Radek Krejci9a191e62018-11-13 13:19:56 +01001068
Radek Krejci5969f272018-11-23 10:03:58 +01001069 assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;typedef mytype {type string {length 10;}}"
1070 "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG));
1071 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1072 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1073 assert_non_null(type);
1074 assert_int_equal(LY_TYPE_STRING, type->basetype);
1075 assert_int_equal(1, type->refcount);
1076 assert_non_null(((struct lysc_type_str*)type)->length);
1077 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1078 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1079 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1080 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
1081
Radek Krejci4f28eda2018-11-12 11:46:16 +01001082 /* invalid values */
1083 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG));
1084 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1085 logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations.");
1086 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG));
1087 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1088 logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\".");
1089 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));
1090 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1091 logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10).");
1092 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));
1093 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1094 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
1095 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));
1096 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1097 logbuf_assert("Invalid length restriction - values are not in ascending order (10).");
1098 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG));
1099 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1100 logbuf_assert("Invalid length restriction - unexpected data (x).");
Radek Krejcib31c8992018-11-12 16:29:16 +01001101 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));
1102 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1103 logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | ).");
1104 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG));
1105 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1106 logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50).");
1107 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG));
1108 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1109 logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..).");
1110 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG));
1111 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1112 logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound.");
1113 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG));
1114 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1115 logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |).");
Radek Krejci6489bbe2018-11-12 17:05:19 +01001116 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));
1117 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1118 logbuf_assert("Invalid length restriction - values are not in ascending order (15).");
Radek Krejcib31c8992018-11-12 16:29:16 +01001119
1120 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}"
1121 "leaf l {type mytype {length 11;}}}", LYS_IN_YANG));
1122 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1123 logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting.");
1124 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}"
1125 "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG));
1126 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1127 logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting.");
1128 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}"
1129 "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG));
1130 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1131 logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting.");
1132 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}"
1133 "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG));
1134 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1135 logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting.");
1136 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}"
1137 "leaf l {type mytype {length 15;}}}", LYS_IN_YANG));
1138 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1139 logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting.");
1140 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}"
1141 "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG));
1142 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1143 logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting.");
Radek Krejci6489bbe2018-11-12 17:05:19 +01001144 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}"
1145 "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG));
1146 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1147 logbuf_assert("Invalid length restriction - the derived restriction (10..35) is not equally or more limiting.");
Radek Krejcib31c8992018-11-12 16:29:16 +01001148
Radek Krejci495903e2018-11-13 11:30:45 +01001149 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));
1150 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1151 logbuf_assert("Invalid type restrictions for binary type.");
1152
Radek Krejci4f28eda2018-11-12 11:46:16 +01001153 *state = NULL;
1154 ly_ctx_destroy(ctx, NULL);
1155}
1156
Radek Krejcicda74152018-11-13 15:27:32 +01001157static void
1158test_type_pattern(void **state)
1159{
1160 *state = test_type_pattern;
1161
1162 struct ly_ctx *ctx;
1163 struct lys_module *mod;
1164 struct lysc_type *type;
1165
1166 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1167
Radek Krejci027d5802018-11-14 16:57:28 +01001168 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 +01001169 "pattern .* {error-app-tag errortag;error-message error;}"
1170 "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG));
1171 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1172 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1173 assert_non_null(type);
1174 assert_non_null(((struct lysc_type_str*)type)->patterns);
1175 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1176 assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag);
1177 assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg);
1178 assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted);
1179 assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag);
1180 assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg);
1181 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted);
1182
1183 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}"
1184 "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
1185 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1186 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1187 assert_non_null(type);
1188 assert_int_equal(LY_TYPE_STRING, type->basetype);
1189 assert_int_equal(1, type->refcount);
1190 assert_non_null(((struct lysc_type_str*)type)->patterns);
1191 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1192 assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1193 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount);
1194
Radek Krejci04bc1e92018-11-14 14:28:13 +01001195 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}"
1196 "leaf l {type mytype {length 10;}}}", LYS_IN_YANG));
1197 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1198 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1199 assert_non_null(type);
1200 assert_int_equal(LY_TYPE_STRING, type->basetype);
1201 assert_int_equal(1, type->refcount);
1202 assert_non_null(((struct lysc_type_str*)type)->patterns);
1203 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1204 assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1205
Radek Krejcicda74152018-11-13 15:27:32 +01001206 /* test substitutions */
Radek Krejci04bc1e92018-11-14 14:28:13 +01001207 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 +01001208 "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG));
1209 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1210 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1211 assert_non_null(type);
1212 assert_non_null(((struct lysc_type_str*)type)->patterns);
1213 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1214 /* TODO check some data "^Å™$" */
1215
1216 *state = NULL;
1217 ly_ctx_destroy(ctx, NULL);
1218}
1219
Radek Krejci8b764662018-11-14 14:15:13 +01001220static void
1221test_type_enum(void **state)
1222{
1223 *state = test_type_enum;
1224
1225 struct ly_ctx *ctx;
1226 struct lys_module *mod;
1227 struct lysc_type *type;
1228
1229 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1230
Radek Krejci027d5802018-11-14 16:57:28 +01001231 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 +01001232 "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}"
1233 "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG));
1234 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1235 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1236 assert_non_null(type);
1237 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1238 assert_non_null(((struct lysc_type_enum*)type)->enums);
1239 assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1240 assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures);
1241 assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name);
1242 assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value);
1243 assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name);
1244 assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value);
1245 assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name);
1246 assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value);
1247 assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name);
1248 assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value);
1249 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name);
1250 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value);
1251 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name);
1252 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value);
1253
Radek Krejci027d5802018-11-14 16:57:28 +01001254 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 {"
1255 "enum 11; enum min {value -2147483648;}enum x$&;"
Radek Krejci8b764662018-11-14 14:15:13 +01001256 "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}",
1257 LYS_IN_YANG));
1258 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1259 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1260 assert_non_null(type);
1261 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1262 assert_non_null(((struct lysc_type_enum*)type)->enums);
1263 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1264 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name);
1265 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value);
1266 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name);
1267 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value);
1268
1269
1270 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001271 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {"
1272 "enum one {if-feature f;}}}}", LYS_IN_YANG));
1273 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 +01001274 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1275 "enum one {value -2147483649;}}}}", LYS_IN_YANG));
1276 logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1.");
1277 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1278 "enum one {value 2147483648;}}}}", LYS_IN_YANG));
1279 logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1.");
1280 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1281 "enum one; enum one;}}}", LYS_IN_YANG));
1282 logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1.");
1283 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1284 "enum '';}}}", LYS_IN_YANG));
1285 logbuf_assert("Enum name must not be zero-length. Line number 1.");
1286 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1287 "enum ' x';}}}", LYS_IN_YANG));
1288 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1.");
1289 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1290 "enum 'x ';}}}", LYS_IN_YANG));
1291 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1.");
1292 assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1293 "enum 'inva\nlid';}}}", LYS_IN_YANG));
1294 logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5).");
1295
1296 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG));
1297 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1298 logbuf_assert("Missing enum substatement for enumeration type.");
1299
Radek Krejci027d5802018-11-14 16:57:28 +01001300 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 +01001301 "leaf l {type mytype {enum two;}}}", LYS_IN_YANG));
1302 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1303 logbuf_assert("Invalid enumeration - derived type adds new item \"two\".");
1304
Radek Krejci027d5802018-11-14 16:57:28 +01001305 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 +01001306 "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG));
1307 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1308 logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type.");
1309 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;}}}",
1310 LYS_IN_YANG));
1311 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1312 logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647.");
1313
1314 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;}}}}",
1315 LYS_IN_YANG));
1316 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1317 logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\".");
1318
Radek Krejci04bc1e92018-11-14 14:28:13 +01001319 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}"
1320 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1321 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001322 logbuf_assert("Missing enum substatement for enumeration type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001323
Radek Krejci027d5802018-11-14 16:57:28 +01001324 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}"
1325 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
1326 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1327 logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules.");
1328
Radek Krejci8b764662018-11-14 14:15:13 +01001329 *state = NULL;
1330 ly_ctx_destroy(ctx, NULL);
1331}
1332
1333static void
1334test_type_bits(void **state)
1335{
1336 *state = test_type_bits;
1337
1338 struct ly_ctx *ctx;
1339 struct lys_module *mod;
1340 struct lysc_type *type;
1341
1342 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1343
Radek Krejci027d5802018-11-14 16:57:28 +01001344 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 +01001345 "bit automin; bit one {if-feature f; position 1;}"
1346 "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG));
1347 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1348 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1349 assert_non_null(type);
1350 assert_int_equal(LY_TYPE_BITS, type->basetype);
1351 assert_non_null(((struct lysc_type_bits*)type)->bits);
1352 assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1353 assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures);
1354 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1355 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1356 assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name);
1357 assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position);
1358 assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name);
1359 assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position);
1360 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name);
1361 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position);
1362 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name);
1363 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position);
1364
Radek Krejci027d5802018-11-14 16:57:28 +01001365 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 {"
1366 "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 +01001367 LYS_IN_YANG));
1368 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1369 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1370 assert_non_null(type);
1371 assert_int_equal(LY_TYPE_BITS, type->basetype);
1372 assert_non_null(((struct lysc_type_bits*)type)->bits);
Radek Krejci027d5802018-11-14 16:57:28 +01001373 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1374 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1375 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1376 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name);
1377 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position);
1378 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name);
1379 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position);
Radek Krejci8b764662018-11-14 14:15:13 +01001380
1381
1382 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001383 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {"
1384 "bit one {if-feature f;}}}}", LYS_IN_YANG));
1385 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 +01001386 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1387 "bit one {position -1;}}}}", LYS_IN_YANG));
1388 logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1.");
1389 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1390 "bit one {value 4294967296;}}}}", LYS_IN_YANG));
1391 logbuf_assert("Invalid value \"4294967296\" of \"value\". Line number 1.");
1392 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1393 "bit one; bit one;}}}", LYS_IN_YANG));
1394 logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1.");
1395 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1396 "bit '11';}}}", LYS_IN_YANG));
1397 logbuf_assert("Invalid identifier first character '1'. Line number 1.");
1398 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1399 "bit 'x1$1';}}}", LYS_IN_YANG));
1400 logbuf_assert("Invalid identifier character '$'. Line number 1.");
1401
1402 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG));
1403 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1404 logbuf_assert("Missing bit substatement for bits type.");
1405
Radek Krejci027d5802018-11-14 16:57:28 +01001406 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 +01001407 "leaf l {type mytype {bit two;}}}", LYS_IN_YANG));
1408 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1409 logbuf_assert("Invalid bits - derived type adds new item \"two\".");
1410
Radek Krejci027d5802018-11-14 16:57:28 +01001411 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 +01001412 "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG));
1413 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1414 logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type.");
1415 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;}}}",
1416 LYS_IN_YANG));
1417 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1418 logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295.");
1419
1420 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;}}}}",
1421 LYS_IN_YANG));
1422 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1423 logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\".");
1424
Radek Krejci04bc1e92018-11-14 14:28:13 +01001425 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}"
1426 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1427 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001428 logbuf_assert("Missing bit substatement for bits type mytype.");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001429
Radek Krejci027d5802018-11-14 16:57:28 +01001430 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}"
1431 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
1432 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1433 logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules.");
1434
Radek Krejci8b764662018-11-14 14:15:13 +01001435 *state = NULL;
1436 ly_ctx_destroy(ctx, NULL);
1437}
1438
Radek Krejci6cba4292018-11-15 17:33:29 +01001439static void
1440test_type_dec64(void **state)
1441{
1442 *state = test_type_dec64;
1443
1444 struct ly_ctx *ctx;
1445 struct lys_module *mod;
1446 struct lysc_type *type;
1447
1448 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1449
1450 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type decimal64 {"
1451 "fraction-digits 2;range min..max;}}}", LYS_IN_YANG));
1452 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1453 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1454 assert_non_null(type);
1455 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1456 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1457 assert_non_null(((struct lysc_type_dec*)type)->range);
1458 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1459 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1460 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1461 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1462
1463 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type decimal64 {"
1464 "fraction-digits 2;range '3.14 | 5.1 | 10';}}leaf l {type mytype;}}", LYS_IN_YANG));
1465 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1466 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1467 assert_non_null(type);
1468 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1469 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1470 assert_non_null(((struct lysc_type_dec*)type)->range);
1471 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1472 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1473 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1474 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1475 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].min_64);
1476 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].max_64);
1477 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].min_64);
1478 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].max_64);
1479
1480 /* invalid cases */
1481 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 0;}}}", LYS_IN_YANG));
1482 logbuf_assert("Invalid value \"0\" of \"fraction-digits\". Line number 1.");
1483 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits -1;}}}", LYS_IN_YANG));
1484 logbuf_assert("Invalid value \"-1\" of \"fraction-digits\". Line number 1.");
1485 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 19;}}}", LYS_IN_YANG));
1486 logbuf_assert("Value \"19\" is out of \"fraction-digits\" bounds. Line number 1.");
1487
1488 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64;}}", LYS_IN_YANG));
1489 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1490 logbuf_assert("Missing fraction-digits substatement for decimal64 type.");
1491
Radek Krejci643c8242018-11-15 17:51:11 +01001492 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));
1493 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001494 logbuf_assert("Missing fraction-digits substatement for decimal64 type mytype.");
Radek Krejci643c8242018-11-15 17:51:11 +01001495
Radek Krejci6cba4292018-11-15 17:33:29 +01001496 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type decimal64 {fraction-digits 2;"
1497 "range '3.142';}}}", LYS_IN_YANG));
1498 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1499 logbuf_assert("Range boundary \"3.142\" of decimal64 type exceeds defined number (2) of fraction digits.");
1500
1501 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; leaf l {type decimal64 {fraction-digits 2;"
1502 "range '4 | 3.14';}}}", LYS_IN_YANG));
1503 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1504 logbuf_assert("Invalid range restriction - values are not in ascending order (3.14).");
1505
Radek Krejci643c8242018-11-15 17:51:11 +01001506 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; typedef mytype {type decimal64 {fraction-digits 2;}}"
1507 "leaf l {type mytype {fraction-digits 3;}}}", LYS_IN_YANG));
1508 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1509 logbuf_assert("Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
1510
1511 assert_non_null(mod = lys_parse_mem(ctx, "module de {namespace urn:de;prefix de; typedef mytype {type decimal64 {fraction-digits 2;}}"
1512 "typedef mytype2 {type mytype {fraction-digits 3;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1513 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1514 logbuf_assert("Invalid fraction-digits substatement for type \"mytype2\" not directly derived from decimal64 built-in type.");
1515
Radek Krejci6cba4292018-11-15 17:33:29 +01001516 *state = NULL;
1517 ly_ctx_destroy(ctx, NULL);
1518}
1519
Radek Krejci16c0f822018-11-16 10:46:10 +01001520static void
1521test_type_instanceid(void **state)
1522{
1523 *state = test_type_instanceid;
1524
1525 struct ly_ctx *ctx;
1526 struct lys_module *mod;
1527 struct lysc_type *type;
1528
1529 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1530
1531 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;typedef mytype {type instance-identifier {require-instance false;}}"
1532 "leaf l1 {type instance-identifier {require-instance true;}}"
1533 "leaf l2 {type mytype;} leaf l3 {type instance-identifier;}}", LYS_IN_YANG));
1534 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1535 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1536 assert_non_null(type);
1537 assert_int_equal(LY_TYPE_INST, type->basetype);
1538 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1539
1540 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1541 assert_non_null(type);
1542 assert_int_equal(LY_TYPE_INST, type->basetype);
1543 assert_int_equal(0, ((struct lysc_type_instanceid*)type)->require_instance);
1544
1545 type = ((struct lysc_node_leaf*)mod->compiled->data->next->next)->type;
1546 assert_non_null(type);
1547 assert_int_equal(LY_TYPE_INST, type->basetype);
1548 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1549
1550 /* invalid cases */
1551 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {require-instance yes;}}}", LYS_IN_YANG));
1552 logbuf_assert("Invalid value \"yes\" of \"require-instance\". Line number 1.");
1553
1554 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));
1555 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1556 logbuf_assert("Invalid type restrictions for instance-identifier type.");
1557
1558 *state = NULL;
1559 ly_ctx_destroy(ctx, NULL);
1560}
1561
Radek Krejci555cb5b2018-11-16 14:54:33 +01001562static void
1563test_type_identityref(void **state)
1564{
1565 *state = test_type_identityref;
1566
1567 struct ly_ctx *ctx;
1568 struct lys_module *mod;
1569 struct lysc_type *type;
1570
1571 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1572
1573 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;}"
1574 "typedef mytype {type identityref {base i;}}"
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001575 "leaf l1 {type mytype;} leaf l2 {type identityref {base a:k; base j;}}}", LYS_IN_YANG));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001576 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1577 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1578 assert_non_null(type);
1579 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1580 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1581 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1582 assert_string_equal("i", ((struct lysc_type_identityref*)type)->bases[0]->name);
1583
1584 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1585 assert_non_null(type);
1586 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1587 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1588 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1589 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1590 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1591
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001592 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import a {prefix a;}"
1593 "leaf l {type identityref {base a:k; base a:j;}}}", LYS_IN_YANG));
1594 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1595 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1596 assert_non_null(type);
1597 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1598 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1599 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1600 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1601 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1602
Radek Krejci555cb5b2018-11-16 14:54:33 +01001603 /* invalid cases */
1604 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type identityref;}}", LYS_IN_YANG));
1605 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1606 logbuf_assert("Missing base substatement for identityref type.");
1607
1608 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; typedef mytype {type identityref;}"
1609 "leaf l {type mytype;}}", LYS_IN_YANG));
1610 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1611 logbuf_assert("Missing base substatement for identityref type mytype.");
1612
1613 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; identity i; typedef mytype {type identityref {base i;}}"
1614 "leaf l {type mytype {base i;}}}", LYS_IN_YANG));
1615 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001616 logbuf_assert("Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001617
1618 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; identity i; typedef mytype {type identityref {base i;}}"
1619 "typedef mytype2 {type mytype {base i;}}leaf l {type mytype2;}}", LYS_IN_YANG));
1620 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
Radek Krejcicdfecd92018-11-26 11:27:32 +01001621 logbuf_assert("Invalid base substatement for the type \"mytype2\" not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001622
1623 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; identity i; identity j;"
1624 "leaf l {type identityref {base i;base j;}}}", LYS_IN_YANG));
1625 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1626 logbuf_assert("Multiple bases in identityref type are allowed only in YANG 1.1 modules.");
1627
Radek Krejci322614f2018-11-16 15:05:44 +01001628 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));
1629 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1630 logbuf_assert("Unable to find base (j) of identityref.");
1631
1632 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));
1633 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1634 logbuf_assert("Invalid prefix used for base (x:j) of identityref.");
1635
Radek Krejci555cb5b2018-11-16 14:54:33 +01001636 *state = NULL;
1637 ly_ctx_destroy(ctx, NULL);
1638}
1639
Radek Krejcia3045382018-11-22 14:30:31 +01001640static void
1641test_type_leafref(void **state)
1642{
1643 *state = test_type_leafref;
1644
1645 struct ly_ctx *ctx;
1646 struct lys_module *mod;
1647 struct lysc_type *type;
1648 const char *path, *name, *prefix;
1649 size_t prefix_len, name_len;
1650 int parent_times, has_predicate;
1651
1652 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1653
1654 /* lys_path_token() */
1655 path = "invalid_path";
1656 parent_times = 0;
1657 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1658 path = "..";
1659 parent_times = 0;
1660 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1661 path = "..[";
1662 parent_times = 0;
1663 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1664 path = "../";
1665 parent_times = 0;
1666 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1667 path = "/";
1668 parent_times = 0;
1669 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1670
1671 path = "../../pref:id/xxx[predicate]/invalid!!!";
1672 parent_times = 0;
1673 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1674 assert_string_equal("/xxx[predicate]/invalid!!!", path);
1675 assert_int_equal(4, prefix_len);
1676 assert_int_equal(0, strncmp("pref", prefix, prefix_len));
1677 assert_int_equal(2, name_len);
1678 assert_int_equal(0, strncmp("id", name, name_len));
1679 assert_int_equal(2, parent_times);
1680 assert_int_equal(0, has_predicate);
1681 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1682 assert_string_equal("[predicate]/invalid!!!", path);
1683 assert_int_equal(0, prefix_len);
1684 assert_null(prefix);
1685 assert_int_equal(3, name_len);
1686 assert_int_equal(0, strncmp("xxx", name, name_len));
1687 assert_int_equal(1, has_predicate);
1688 path += 11;
1689 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1690 assert_string_equal("!!!", path);
1691 assert_int_equal(0, prefix_len);
1692 assert_null(prefix);
1693 assert_int_equal(7, name_len);
1694 assert_int_equal(0, strncmp("invalid", name, name_len));
1695
1696 path = "/absolute/prefix:path";
1697 parent_times = 0;
1698 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1699 assert_string_equal("/prefix:path", path);
1700 assert_int_equal(0, prefix_len);
1701 assert_null(prefix);
1702 assert_int_equal(8, name_len);
1703 assert_int_equal(0, strncmp("absolute", name, name_len));
1704 assert_int_equal(-1, parent_times);
1705 assert_int_equal(0, has_predicate);
1706 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1707 assert_int_equal(0, *path);
1708 assert_int_equal(6, prefix_len);
1709 assert_int_equal(0, strncmp("prefix", prefix, prefix_len));
1710 assert_int_equal(4, name_len);
1711 assert_int_equal(0, strncmp("path", name, name_len));
1712 assert_int_equal(0, has_predicate);
1713
1714 /* complete leafref paths */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001715 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 +01001716 "leaf ref1 {type leafref {path /a:target1;}} leaf ref2 {type leafref {path /a/target2; require-instance false;}}"
1717 "leaf target1 {type string;}container a {leaf target2 {type uint8;}}}", LYS_IN_YANG));
1718 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1719 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1720 assert_non_null(type);
1721 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1722 assert_string_equal("/a:target1", ((struct lysc_type_leafref*)type)->path);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001723 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001724 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1725 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001726 assert_int_equal(1, ((struct lysc_type_leafref*)type)->require_instance);
1727 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1728 assert_non_null(type);
1729 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1730 assert_string_equal("/a/target2", ((struct lysc_type_leafref*)type)->path);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001731 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_UINT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001734 assert_int_equal(0, ((struct lysc_type_leafref*)type)->require_instance);
1735
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001736 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 +01001737 "typedef mytype2 {type mytype;} typedef mytype3 {type leafref {path /target;}} leaf ref {type mytype2;}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01001738 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type string;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001739 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1740 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1741 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001742 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001743 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1744 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1745 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001746 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1747 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001748 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1749
1750 /* prefixes are reversed to check using correct context of the path! */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001751 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 +01001752 "typedef mytype3 {type c:mytype {require-instance false;}}"
1753 "leaf ref1 {type b:mytype3;}leaf ref2 {type c:mytype2;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001754 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1755 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1756 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001757 assert_int_equal(1, type->refcount);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001758 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1759 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1760 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001761 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1762 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001763 assert_int_equal(0, ((struct lysc_type_leafref* )type)->require_instance);
1764 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1765 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001766 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001767 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1768 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1769 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1770 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1771
Radek Krejci4ce68932018-11-28 12:53:36 +01001772 /* non-prefixed nodes in path are supposed to be from the module where the leafref type is instantiated */
1773 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; import b {prefix b;}"
1774 "leaf ref {type b:mytype3;}leaf target {type int8;}}", LYS_IN_YANG));
1775 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1776 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1777 assert_non_null(type);
1778 assert_int_equal(1, type->refcount);
1779 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1780 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1781 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1782 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1783 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
1784 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1785
Radek Krejci58d171e2018-11-23 13:50:55 +01001786 /* conditional leafrefs */
Radek Krejci4ce68932018-11-28 12:53:36 +01001787 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 +01001788 "leaf ref1 {if-feature 'f1 and f2';type leafref {path /target;}}"
1789 "leaf target {if-feature f1; type boolean;}}", LYS_IN_YANG));
1790 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1791 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1792 assert_non_null(type);
1793 assert_int_equal(1, type->refcount);
1794 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1795 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1796 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1797 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1798 assert_int_equal(LY_TYPE_BOOL, ((struct lysc_type_leafref*)type)->realtype->basetype);
1799
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001800 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;"
1801 "list interface{key name;leaf name{type string;}list address {key ip;leaf ip {type string;}}}"
1802 "container default-address{leaf ifname{type leafref{ path \"../../interface/name\";}}"
Radek Krejcibade82a2018-12-05 10:13:48 +01001803 "leaf address {type leafref{ path \"../../interface[ name = current()/../ifname ]/address/ip\";}}}}",
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001804 LYS_IN_YANG));
1805 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01001806 type = ((struct lysc_node_leaf*)(*lysc_node_children_p(mod->compiled->data->prev))->prev)->type;
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001807 assert_non_null(type);
1808 assert_int_equal(1, type->refcount);
1809 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
Radek Krejcibade82a2018-12-05 10:13:48 +01001810 assert_string_equal("../../interface[ name = current()/../ifname ]/address/ip", ((struct lysc_type_leafref* )type)->path);
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001811 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1812 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1813 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001814
Radek Krejci20e8a182018-12-07 11:43:21 +01001815 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;"
1816 "leaf source {type leafref {path \"/endpoint-parent[id=current()/../field]/endpoint/name\";}}"
1817 "leaf field {type int32;}list endpoint-parent {key id;leaf id {type int32;}"
1818 "list endpoint {key name;leaf name {type string;}}}}", LYS_IN_YANG));
1819 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
1820 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1821 assert_non_null(type);
1822 assert_int_equal(1, type->refcount);
1823 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1824 assert_string_equal("/endpoint-parent[id=current()/../field]/endpoint/name", ((struct lysc_type_leafref* )type)->path);
1825 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1826 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1827 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
1828
Radek Krejcia3045382018-11-22 14:30:31 +01001829 /* invalid paths */
1830 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container a {leaf target2 {type uint8;}}"
1831 "leaf ref1 {type leafref {path ../a/invalid;}}}", LYS_IN_YANG));
1832 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1833 logbuf_assert("Invalid leafref path - unable to find \"../a/invalid\".");
1834 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;container a {leaf target2 {type uint8;}}"
1835 "leaf ref1 {type leafref {path ../../toohigh;}}}", LYS_IN_YANG));
1836 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1837 logbuf_assert("Invalid leafref path \"../../toohigh\" - too many \"..\" in the path.");
1838 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;container a {leaf target2 {type uint8;}}"
1839 "leaf ref1 {type leafref {path /a:invalid;}}}", LYS_IN_YANG));
1840 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1841 logbuf_assert("Invalid leafref path - unable to find module connected with the prefix of the node \"/a:invalid\".");
1842 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;}}"
1843 "leaf ref1 {type leafref {path '/a[target2 = current()/../target1]/target2';}}}", LYS_IN_YANG));
1844 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1845 logbuf_assert("Invalid leafref path - node \"/a\" is expected to be a list, but it is container.");
1846 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;container a {leaf target2 {type uint8;}}"
1847 "leaf ref1 {type leafref {path /a!invalid;}}}", LYS_IN_YANG));
1848 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1849 logbuf_assert("Invalid leafref path at character 3 (/a!invalid).");
1850 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;container a {leaf target2 {type uint8;}}"
1851 "leaf ref1 {type leafref {path /a;}}}", LYS_IN_YANG));
1852 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1853 logbuf_assert("Invalid leafref path \"/a\" - target node is container instead of leaf or leaf-list.");
1854 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;container a {leaf target2 {type uint8; status deprecated;}}"
1855 "leaf ref1 {type leafref {path /a/target2;}}}", LYS_IN_YANG));
1856 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1857 logbuf_assert("A current definition \"ref1\" is not allowed to reference deprecated definition \"target2\".");
Radek Krejci2f4a0292018-11-22 15:41:53 +01001858 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
1859 "leaf ref1 {type leafref;}}", LYS_IN_YANG));
1860 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1861 logbuf_assert("Missing path substatement for leafref type.");
1862 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;typedef mytype {type leafref;}"
1863 "leaf ref1 {type mytype;}}", LYS_IN_YANG));
1864 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1865 logbuf_assert("Missing path substatement for leafref type mytype.");
Radek Krejci58d171e2018-11-23 13:50:55 +01001866 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;feature f;"
1867 "leaf ref {type leafref {path /target;}}leaf target {if-feature f;type string;}}", LYS_IN_YANG));
1868 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1869 logbuf_assert("Invalid leafref path \"/target\" - set of features applicable to the leafref target is not a subset of features "
1870 "applicable to the leafref itself.");
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001871 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
1872 "leaf ref {type leafref {path /target;}}leaf target {type string;config false;}}", LYS_IN_YANG));
1873 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1874 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 +01001875
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001876 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
1877 "leaf ref {type leafref {path /target; require-instance true;}}leaf target {type string;}}", LYS_IN_YANG));
1878 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1879 logbuf_assert("Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
1880 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type leafref {path /target;require-instance false;}}"
1881 "leaf ref {type mytype;}leaf target {type string;}}", LYS_IN_YANG));
1882 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1883 logbuf_assert("Leafref type \"mytype\" can be restricted by require-instance statement only in YANG 1.1 modules.");
1884
Radek Krejcibade82a2018-12-05 10:13:48 +01001885 assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;"
1886 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1887 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1888 "leaf address {type leafref{ path \"/interface[name is current()/../ifname]/ip\";}}}",
1889 LYS_IN_YANG));
1890 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1891 logbuf_assert("Invalid leafref path predicate \"[name i\" - missing \"=\" after node-identifier.");
1892
1893 assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;"
1894 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1895 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1896 "leaf address {type leafref{ path \"/interface[name=current()/../ifname/ip\";}}}",
1897 LYS_IN_YANG));
1898 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1899 logbuf_assert("Invalid leafref path predicate \"[name=current()/../ifname/ip\" - missing predicate termination.");
1900
1901 assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;"
1902 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1903 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1904 "leaf address {type leafref{ path \"/interface[x:name=current()/../ifname]/ip\";}}}",
1905 LYS_IN_YANG));
1906 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1907 logbuf_assert("Invalid leafref path predicate \"[x:name=current()/../ifname]\" - prefix \"x\" not defined in module \"pp\".");
1908
1909 assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;"
1910 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1911 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1912 "leaf address {type leafref{ path \"/interface[id=current()/../ifname]/ip\";}}}",
1913 LYS_IN_YANG));
1914 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1915 logbuf_assert("Invalid leafref path predicate \"[id=current()/../ifname]\" - predicate's key node \"id\" not found.");
1916
1917 assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;"
1918 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1919 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1920 "leaf address {type leafref{ path \"/interface[name=current() / .. / ifname][name=current()/../test]/ip\";}}}",
1921 LYS_IN_YANG));
1922 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1923 logbuf_assert("Invalid leafref path predicate \"[name=current()/../test]\" - multiple equality tests for the key \"name\".");
1924
1925 assert_non_null(mod = lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;"
1926 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1927 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1928 "leaf address {type leafref{ path \"/interface[name = ../ifname]/ip\";}}}",
1929 LYS_IN_YANG));
1930 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1931 logbuf_assert("Invalid leafref path predicate \"[name = ../ifname]\" - missing current-function-invocation.");
1932
1933 assert_non_null(mod = lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;"
1934 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1935 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1936 "leaf address {type leafref{ path \"/interface[name = current()../ifname]/ip\";}}}",
1937 LYS_IN_YANG));
1938 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1939 logbuf_assert("Invalid leafref path predicate \"[name = current()../ifname]\" - missing \"/\" after current-function-invocation.");
1940
1941 assert_non_null(mod = lys_parse_mem(ctx, "module uu {namespace urn:uu;prefix uu;"
1942 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1943 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1944 "leaf address {type leafref{ path \"/interface[name = current()/..ifname]/ip\";}}}",
1945 LYS_IN_YANG));
1946 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1947 logbuf_assert("Invalid leafref path predicate \"[name = current()/..ifname]\" - missing \"/\" in \"../\" rel-path-keyexpr pattern.");
1948
1949 assert_non_null(mod = lys_parse_mem(ctx, "module vv {namespace urn:vv;prefix vv;"
1950 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1951 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1952 "leaf address {type leafref{ path \"/interface[name = current()/ifname]/ip\";}}}",
1953 LYS_IN_YANG));
1954 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1955 logbuf_assert("Invalid leafref path predicate \"[name = current()/ifname]\" - at least one \"..\" is expected in rel-path-keyexpr.");
1956
1957 assert_non_null(mod = lys_parse_mem(ctx, "module ww {namespace urn:ww;prefix ww;"
1958 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1959 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1960 "leaf address {type leafref{ path \"/interface[name = current()/../]/ip\";}}}",
1961 LYS_IN_YANG));
1962 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1963 logbuf_assert("Invalid leafref path predicate \"[name = current()/../]\" - at least one node-identifier is expected in rel-path-keyexpr.");
1964
1965 assert_non_null(mod = lys_parse_mem(ctx, "module xx {namespace urn:xx;prefix xx;"
1966 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1967 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
1968 "leaf address {type leafref{ path \"/interface[name = current()/../$node]/ip\";}}}",
1969 LYS_IN_YANG));
1970 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1971 logbuf_assert("Invalid node identifier in leafref path predicate - character 22 (of [name = current()/../$node]).");
1972
1973 assert_non_null(mod = lys_parse_mem(ctx, "module yy {namespace urn:yy;prefix yy;"
1974 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1975 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1976 "leaf address {type leafref{ path \"/interface[name=current()/../x:ifname]/ip\";}}}",
1977 LYS_IN_YANG));
1978 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1979 logbuf_assert("Invalid leafref path predicate \"[name=current()/../x:ifname]\" - unable to find module of the node \"ifname\" in rel-path_keyexpr.");
1980
1981 assert_non_null(mod = lys_parse_mem(ctx, "module zz {namespace urn:zz;prefix zz;"
1982 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1983 "leaf ifname{type leafref{ path \"../interface/name\";}}"
1984 "leaf address {type leafref{ path \"/interface[name=current()/../xxx]/ip\";}}}",
1985 LYS_IN_YANG));
1986 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1987 logbuf_assert("Invalid leafref path predicate \"[name=current()/../xxx]\" - unable to find node \"current()/../xxx\" in the rel-path_keyexpr.");
1988
1989 assert_non_null(mod = lys_parse_mem(ctx, "module zza {namespace urn:zza;prefix zza;"
1990 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
1991 "leaf ifname{type leafref{ path \"../interface/name\";}}container c;"
1992 "leaf address {type leafref{ path \"/interface[name=current()/../c]/ip\";}}}",
1993 LYS_IN_YANG));
1994 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
1995 logbuf_assert("Invalid leafref path predicate \"[name=current()/../c]\" - rel-path_keyexpr \"current()/../c\" refers container instead of leaf.");
1996
1997 assert_non_null(mod = lys_parse_mem(ctx, "module zzb {namespace urn:zzb;prefix zzb;"
1998 "list interface{key name;leaf name{type string;}leaf ip {type string;}container c;}"
1999 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2000 "leaf address {type leafref{ path \"/interface[c=current()/../ifname]/ip\";}}}",
2001 LYS_IN_YANG));
2002 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2003 logbuf_assert("Invalid leafref path predicate \"[c=current()/../ifname]\" - predicate's key node \"c\" not found.");
2004
Radek Krejci412ddfa2018-11-23 11:44:11 +01002005 /* circular chain */
2006 assert_non_null(mod = lys_parse_mem(ctx, "module aaa {namespace urn:aaa;prefix aaa;"
2007 "leaf ref1 {type leafref {path /ref2;}}"
2008 "leaf ref2 {type leafref {path /ref3;}}"
Radek Krejci0c3f1ad2018-11-23 14:19:38 +01002009 "leaf ref3 {type leafref {path /ref4;}}"
2010 "leaf ref4 {type leafref {path /ref1;}}}", LYS_IN_YANG));
Radek Krejci412ddfa2018-11-23 11:44:11 +01002011 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2012 logbuf_assert("Invalid leafref path \"/ref1\" - circular chain of leafrefs detected.");
2013
Radek Krejcia3045382018-11-22 14:30:31 +01002014 *state = NULL;
2015 ly_ctx_destroy(ctx, NULL);
2016}
2017
Radek Krejci43699232018-11-23 14:59:46 +01002018static void
2019test_type_empty(void **state)
2020{
2021 *state = test_type_empty;
2022
2023 struct ly_ctx *ctx;
2024 struct lys_module *mod;
2025
2026 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2027
2028 /* invalid */
2029 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2030 "leaf l {type empty; default x;}}", LYS_IN_YANG));
2031 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2032 logbuf_assert("Leaf of type \"empty\" must not have a default value (x).");
2033
2034 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;typedef mytype {type empty; default x;}"
2035 "leaf l {type mytype;}}", LYS_IN_YANG));
2036 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2037 logbuf_assert("Invalid type \"mytype\" - \"empty\" type must not have a default value (x).");
2038
2039 *state = NULL;
2040 ly_ctx_destroy(ctx, NULL);
2041}
2042
Radek Krejcicdfecd92018-11-26 11:27:32 +01002043
2044static void
2045test_type_union(void **state)
2046{
2047 *state = test_type_union;
2048
2049 struct ly_ctx *ctx;
2050 struct lys_module *mod;
2051 struct lysc_type *type;
2052
2053 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2054
2055 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a; typedef mybasetype {type string;}"
2056 "typedef mytype {type union {type int8; type mybasetype;}}"
2057 "leaf l {type mytype;}}", LYS_IN_YANG));
2058 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2059 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2060 assert_non_null(type);
2061 assert_int_equal(2, type->refcount);
2062 assert_int_equal(LY_TYPE_UNION, type->basetype);
2063 assert_non_null(((struct lysc_type_union*)type)->types);
2064 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2065 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[0]->basetype);
2066 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2067
2068 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; typedef mybasetype {type string;}"
2069 "typedef mytype {type union {type int8; type mybasetype;}}"
2070 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}}", LYS_IN_YANG));
2071 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2072 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2073 assert_non_null(type);
2074 assert_int_equal(1, type->refcount);
2075 assert_int_equal(LY_TYPE_UNION, type->basetype);
2076 assert_non_null(((struct lysc_type_union*)type)->types);
2077 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2078 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2079 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[1]->basetype);
2080 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2081
2082 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c; typedef mybasetype {type string;}"
2083 "typedef mytype {type union {type leafref {path ../target;} type mybasetype;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002084 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
2085 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type int8;}}",
Radek Krejcicdfecd92018-11-26 11:27:32 +01002086 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(1, type->refcount);
2091 assert_int_equal(LY_TYPE_UNION, type->basetype);
2092 assert_non_null(((struct lysc_type_union*)type)->types);
2093 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2094 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2095 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
2096 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2097 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
2098 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
2099
Radek Krejci6be5ff12018-11-26 13:18:15 +01002100 /* invalid unions */
2101 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;typedef mytype {type union;}"
2102 "leaf l {type mytype;}}", LYS_IN_YANG));
2103 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2104 logbuf_assert("Missing type substatement for union type mytype.");
2105
2106 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type union;}}", LYS_IN_YANG));
2107 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2108 logbuf_assert("Missing type substatement for union type.");
2109
2110 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;typedef mytype {type union{type int8; type string;}}"
2111 "leaf l {type mytype {type string;}}}", LYS_IN_YANG));
2112 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2113 logbuf_assert("Invalid type substatement for the type not directly derived from union built-in type.");
2114
2115 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;typedef mytype {type union{type int8; type string;}}"
2116 "typedef mytype2 {type mytype {type string;}}leaf l {type mytype2;}}", LYS_IN_YANG));
2117 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2118 logbuf_assert("Invalid type substatement for the type \"mytype2\" not directly derived from union built-in type.");
2119
Radek Krejcicdfecd92018-11-26 11:27:32 +01002120 *state = NULL;
2121 ly_ctx_destroy(ctx, NULL);
2122}
2123
2124static void
2125test_type_dflt(void **state)
2126{
2127 *state = test_type_union;
2128
2129 struct ly_ctx *ctx;
2130 struct lys_module *mod;
2131 struct lysc_type *type;
2132
2133 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2134
2135 /* default is not inherited from union's types */
2136 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; typedef mybasetype {type string;default hello;units xxx;}"
2137 "leaf l {type union {type decimal64 {fraction-digits 2;} type mybasetype;}}}", LYS_IN_YANG));
2138 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2139 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2140 assert_non_null(type);
2141 assert_int_equal(1, type->refcount);
2142 assert_int_equal(LY_TYPE_UNION, type->basetype);
2143 assert_non_null(((struct lysc_type_union*)type)->types);
2144 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2145 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2146 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2147 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2148 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->units);
2149
2150 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mybasetype {type string;default hello;units xxx;}"
2151 "leaf l {type mybasetype;}}", LYS_IN_YANG));
2152 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2153 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2154 assert_non_null(type);
2155 assert_int_equal(2, type->refcount);
2156 assert_int_equal(LY_TYPE_STRING, type->basetype);
2157 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2158 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2159
2160 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mybasetype {type string;default hello;units xxx;}"
2161 "leaf l {type mybasetype; default goodbye;units yyy;}}", LYS_IN_YANG));
2162 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2163 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2164 assert_non_null(type);
2165 assert_int_equal(2, type->refcount);
2166 assert_int_equal(LY_TYPE_STRING, type->basetype);
2167 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2168 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2169
Radek Krejci6be5ff12018-11-26 13:18:15 +01002170 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; typedef mybasetype {type string;default hello;units xxx;}"
2171 "typedef mytype {type mybasetype;}leaf l1 {type mytype; default goodbye;units yyy;}"
2172 "leaf l2 {type mytype;}}", LYS_IN_YANG));
2173 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2174 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2175 assert_non_null(type);
2176 assert_int_equal(4, type->refcount);
2177 assert_int_equal(LY_TYPE_STRING, type->basetype);
2178 assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2179 assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2180 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
2181 assert_non_null(type);
2182 assert_int_equal(4, type->refcount);
2183 assert_int_equal(LY_TYPE_STRING, type->basetype);
2184 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data->next)->dflt);
2185 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data->next)->units);
2186
2187 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e; typedef mybasetype {type string;}"
2188 "typedef mytype {type mybasetype; default hello;units xxx;}leaf l {type mytype;}}", LYS_IN_YANG));
2189 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2190 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2191 assert_non_null(type);
2192 assert_int_equal(3, type->refcount);
2193 assert_int_equal(LY_TYPE_STRING, type->basetype);
2194 assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2195 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2196
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002197 /* mandatory leaf does not takes default value from type */
2198 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;typedef mytype {type string; default hello;units xxx;}"
2199 "leaf l {type mytype; mandatory true;}}", LYS_IN_YANG));
2200 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2201 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2202 assert_non_null(type);
2203 assert_int_equal(LY_TYPE_STRING, type->basetype);
2204 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2205 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2206
Radek Krejcicdfecd92018-11-26 11:27:32 +01002207 *state = NULL;
2208 ly_ctx_destroy(ctx, NULL);
2209}
2210
Radek Krejci665421c2018-12-05 08:03:39 +01002211static void
2212test_status(void **state)
2213{
2214 *state = test_status;
2215
2216 struct ly_ctx *ctx;
2217 struct lys_module *mod;
2218
2219 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2220
2221 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2222 "container c {status deprecated; leaf l {status current; type string;}}}", LYS_IN_YANG));
2223 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2224 logbuf_assert("A \"current\" status is in conflict with the parent's \"deprecated\" status.");
2225
2226 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
2227 "container c {status obsolete; leaf l {status current; type string;}}}", LYS_IN_YANG));
2228 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2229 logbuf_assert("A \"current\" status is in conflict with the parent's \"obsolete\" status.");
2230
2231 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
2232 "container c {status obsolete; leaf l {status deprecated; type string;}}}", LYS_IN_YANG));
2233 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2234 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
2235
2236 *state = NULL;
2237 ly_ctx_destroy(ctx, NULL);
2238}
2239
Radek Krejcie86bf772018-12-14 11:39:53 +01002240static void
2241test_uses(void **state)
2242{
2243 *state = test_uses;
2244
2245 struct ly_ctx *ctx;
2246 struct lys_module *mod;
2247 struct lysc_node *parent, *child;
2248
2249 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2250
2251 assert_non_null(mod = lys_parse_mem(ctx, "module grp {namespace urn:grp;prefix g; typedef mytype {type string;}"
2252 "grouping grp {leaf x {type mytype;}}}", LYS_IN_YANG));
2253 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2254
2255
2256 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;import grp {prefix g;}"
2257 "grouping grp_a_top {leaf a1 {type int8;}}"
2258 "container a {uses grp_a; uses grp_a_top; uses g:grp; grouping grp_a {leaf a2 {type uint8;}}}}", LYS_IN_YANG));
2259 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2260 assert_non_null((parent = mod->compiled->data));
2261 assert_int_equal(LYS_CONTAINER, parent->nodetype);
2262 assert_non_null((child = ((struct lysc_node_container*)parent)->child));
2263 assert_string_equal("a2", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002264 assert_ptr_equal(mod, child->module);
Radek Krejcie86bf772018-12-14 11:39:53 +01002265 assert_non_null((child = child->next));
2266 assert_string_equal("a1", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002267 assert_ptr_equal(mod, child->module);
Radek Krejcie86bf772018-12-14 11:39:53 +01002268 assert_non_null((child = child->next));
2269 assert_string_equal("x", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002270 assert_ptr_equal(mod, child->module);
Radek Krejcie86bf772018-12-14 11:39:53 +01002271
Radek Krejcib1b59152019-01-07 13:21:56 +01002272 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule bsub {belongs-to b {prefix b;} grouping grp {leaf b {type string;}}}");
2273 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;include bsub;uses grp;}", LYS_IN_YANG));
2274 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2275 assert_non_null(mod->compiled->data);
2276 assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype);
2277 assert_string_equal("b", mod->compiled->data->name);
2278
Radek Krejci7f6a3812019-01-07 13:48:57 +01002279 logbuf_clean();
2280 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:ii;prefix ii;"
2281 "grouping grp {leaf l {type string;}leaf k {type string; status obsolete;}}"
2282 "uses grp {status deprecated;}}", LYS_IN_YANG));
2283 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2284 assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype);
2285 assert_string_equal("l", mod->compiled->data->name);
2286 assert_true(LYS_STATUS_DEPRC & mod->compiled->data->flags);
2287 assert_int_equal(LYS_LEAF, mod->compiled->data->next->nodetype);
2288 assert_string_equal("k", mod->compiled->data->next->name);
2289 assert_true(LYS_STATUS_OBSLT & mod->compiled->data->next->flags);
2290 logbuf_assert(""); /* no warning about inheriting deprecated flag from uses */
2291
Radek Krejcie86bf772018-12-14 11:39:53 +01002292 /* invalid */
2293 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;uses missinggrp;}", LYS_IN_YANG));
2294 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2295 logbuf_assert("Grouping \"missinggrp\" referenced by a uses statement not found.");
2296
2297 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;uses grp;"
2298 "grouping grp {leaf a{type string;}uses grp1;}"
2299 "grouping grp1 {leaf b {type string;}uses grp2;}"
2300 "grouping grp2 {leaf c {type string;}uses grp;}}", LYS_IN_YANG));
2301 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2302 logbuf_assert("Grouping \"grp\" references itself through a uses statement.");
2303
Radek Krejci76b3e962018-12-14 17:01:25 +01002304 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;uses a:missingprefix;}", LYS_IN_YANG));
2305 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2306 logbuf_assert("Invalid prefix used for grouping reference (a:missingprefix).");
2307
2308 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;grouping grp{leaf a{type string;}}"
2309 "leaf a {type string;}uses grp;}", LYS_IN_YANG));
2310 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2311 logbuf_assert("Duplicate identifier \"a\" of data definition statement.");
2312
Radek Krejci7f6a3812019-01-07 13:48:57 +01002313 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;grouping grp {leaf l {type string; status deprecated;}}"
2314 "uses grp {status obsolete;}}", LYS_IN_YANG));
2315 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2316 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
2317
Radek Krejcie86bf772018-12-14 11:39:53 +01002318 *state = NULL;
2319 ly_ctx_destroy(ctx, NULL);
2320}
2321
Radek Krejci01342af2019-01-03 15:18:08 +01002322static void
2323test_refine(void **state)
2324{
2325 *state = test_refine;
2326
2327 struct ly_ctx *ctx;
2328 struct lys_module *mod;
2329 struct lysc_node *parent, *child;
2330
2331 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2332
Radek Krejcif0089082019-01-07 16:42:01 +01002333 assert_non_null(mod = lys_parse_mem(ctx, "module grp {yang-version 1.1;namespace urn:grp;prefix g; feature f;typedef mytype {type string; default cheers!;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002334 "grouping grp {container c {leaf l {type mytype; default goodbye;}"
Radek Krejcif2271f12019-01-07 16:42:23 +01002335 "leaf-list ll {type mytype; default goodbye; max-elements 6;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002336 "choice ch {default a; leaf a {type int8;}leaf b{type uint8;}}"
Radek Krejci9a564c92019-01-07 14:53:57 +01002337 "leaf x {type mytype; mandatory true; must 1;}"
Radek Krejcif0089082019-01-07 16:42:01 +01002338 "anydata a {mandatory false; if-feature f;}"
Radek Krejcib1b59152019-01-07 13:21:56 +01002339 "container c {config false; leaf l {type string;}}}}}", LYS_IN_YANG));
Radek Krejci01342af2019-01-03 15:18:08 +01002340 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2341
Radek Krejcif0089082019-01-07 16:42:01 +01002342 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;import grp {prefix g;}feature fa;"
Radek Krejci01342af2019-01-03 15:18:08 +01002343 "uses g:grp {refine c/l {default hello; config false;}"
Radek Krejci6b22ab72019-01-07 15:39:20 +01002344 "refine c/ll {default hello;default world; min-elements 2; max-elements 5;}"
Radek Krejcif0089082019-01-07 16:42:01 +01002345 "refine c/ch {default b;config true; if-feature fa;}"
Radek Krejci9a564c92019-01-07 14:53:57 +01002346 "refine c/x {mandatory false; must ../ll;}"
Radek Krejcif0089082019-01-07 16:42:01 +01002347 "refine c/a {mandatory true; must 1; if-feature fa;}"
Radek Krejci9a54f1f2019-01-07 13:47:55 +01002348 "refine c/c {config true;presence indispensable;}}}", LYS_IN_YANG));
Radek Krejci01342af2019-01-03 15:18:08 +01002349 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
2350 assert_non_null((parent = mod->compiled->data));
2351 assert_int_equal(LYS_CONTAINER, parent->nodetype);
2352 assert_string_equal("c", parent->name);
2353 assert_non_null((child = ((struct lysc_node_container*)parent)->child));
2354 assert_int_equal(LYS_LEAF, child->nodetype);
2355 assert_string_equal("l", child->name);
2356 assert_string_equal("hello", ((struct lysc_node_leaf*)child)->dflt);
2357 assert_int_equal(LYS_CONFIG_R, child->flags & LYS_CONFIG_MASK);
2358 assert_non_null(child = child->next);
2359 assert_int_equal(LYS_LEAFLIST, child->nodetype);
2360 assert_string_equal("ll", child->name);
2361 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)child)->dflts));
2362 assert_string_equal("hello", ((struct lysc_node_leaflist*)child)->dflts[0]);
2363 assert_string_equal("world", ((struct lysc_node_leaflist*)child)->dflts[1]);
Radek Krejci6b22ab72019-01-07 15:39:20 +01002364 assert_int_equal(2, ((struct lysc_node_leaflist*)child)->min);
2365 assert_int_equal(5, ((struct lysc_node_leaflist*)child)->max);
Radek Krejci01342af2019-01-03 15:18:08 +01002366 assert_non_null(child = child->next);
2367 assert_int_equal(LYS_CHOICE, child->nodetype);
2368 assert_string_equal("ch", child->name);
2369 assert_string_equal("b", ((struct lysc_node_choice*)child)->dflt->name);
2370 assert_true(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->dflt->flags);
2371 assert_false(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->cases[0].flags);
Radek Krejcif0089082019-01-07 16:42:01 +01002372 assert_non_null(child->iffeatures);
2373 assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures));
Radek Krejci01342af2019-01-03 15:18:08 +01002374 assert_non_null(child = child->next);
2375 assert_int_equal(LYS_LEAF, child->nodetype);
2376 assert_string_equal("x", child->name);
2377 assert_false(LYS_MAND_TRUE & child->flags);
2378 assert_string_equal("cheers!", ((struct lysc_node_leaf*)child)->dflt);
Radek Krejci9a564c92019-01-07 14:53:57 +01002379 assert_non_null(((struct lysc_node_leaf*)child)->musts);
2380 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaf*)child)->musts));
Radek Krejcib1b59152019-01-07 13:21:56 +01002381 assert_non_null(child = child->next);
Radek Krejci7f6a3812019-01-07 13:48:57 +01002382 assert_int_equal(LYS_ANYDATA, child->nodetype);
2383 assert_string_equal("a", child->name);
2384 assert_true(LYS_MAND_TRUE & child->flags);
Radek Krejci9a564c92019-01-07 14:53:57 +01002385 assert_non_null(((struct lysc_node_anydata*)child)->musts);
2386 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_anydata*)child)->musts));
Radek Krejcif0089082019-01-07 16:42:01 +01002387 assert_non_null(child->iffeatures);
2388 assert_int_equal(2, LY_ARRAY_SIZE(child->iffeatures));
Radek Krejci7f6a3812019-01-07 13:48:57 +01002389 assert_non_null(child = child->next);
Radek Krejcib1b59152019-01-07 13:21:56 +01002390 assert_int_equal(LYS_CONTAINER, child->nodetype);
2391 assert_string_equal("c", child->name);
Radek Krejci7f6a3812019-01-07 13:48:57 +01002392 assert_true(LYS_PRESENCE & child->flags);
Radek Krejcib1b59152019-01-07 13:21:56 +01002393 assert_true(LYS_CONFIG_W & child->flags);
2394 assert_true(LYS_CONFIG_W & ((struct lysc_node_container*)child)->child->flags);
Radek Krejci01342af2019-01-03 15:18:08 +01002395
2396 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import grp {prefix g;}"
Radek Krejcib1b59152019-01-07 13:21:56 +01002397 "uses g:grp {status deprecated; refine c/x {default hello; mandatory false;}}}", LYS_IN_YANG));
Radek Krejci01342af2019-01-03 15:18:08 +01002398 assert_int_equal(LY_SUCCESS, lys_compile(mod, 0));
Radek Krejci7f6a3812019-01-07 13:48:57 +01002399 assert_non_null((child = ((struct lysc_node_container*)mod->compiled->data)->child->prev->prev->prev));
Radek Krejci01342af2019-01-03 15:18:08 +01002400 assert_int_equal(LYS_LEAF, child->nodetype);
2401 assert_string_equal("x", child->name);
2402 assert_false(LYS_MAND_TRUE & child->flags);
2403 assert_string_equal("hello", ((struct lysc_node_leaf*)child)->dflt);
2404
2405 /* invalid */
2406 assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;import grp {prefix g;}"
2407 "uses g:grp {refine c {default hello;}}}", LYS_IN_YANG));
2408 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2409 logbuf_assert("Invalid refine of default in \"c\" - container cannot hold default value(s).");
2410
2411 assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;import grp {prefix g;}"
2412 "uses g:grp {refine c/l {default hello; default world;}}}", LYS_IN_YANG));
2413 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2414 logbuf_assert("Invalid refine of default in \"c/l\" - leaf cannot hold 2 default values.");
2415
2416 assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;import grp {prefix g;}"
2417 "uses g:grp {refine c/ll {default hello; default world;}}}", LYS_IN_YANG));
2418 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2419 logbuf_assert("Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules.");
2420
2421 assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;import grp {prefix g;}"
2422 "uses g:grp {refine c/ll {mandatory true;}}}", LYS_IN_YANG));
2423 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2424 logbuf_assert("Invalid refine of mandatory in \"c/ll\" - leaf-list cannot hold mandatory statement.");
2425
2426 assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;import grp {prefix g;}"
2427 "uses g:grp {refine c/l {mandatory true;}}}", LYS_IN_YANG));
2428 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2429 logbuf_assert("Invalid refine of mandatory in \"c/l\" - leaf already has \"default\" statement.");
2430 assert_non_null(mod = lys_parse_mem(ctx, "module ef {namespace urn:ef;prefix ef;import grp {prefix g;}"
2431 "uses g:grp {refine c/ch {mandatory true;}}}", LYS_IN_YANG));
2432 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2433 logbuf_assert("Invalid refine of mandatory in \"c/ch\" - choice already has \"default\" statement.");
2434
2435 assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;import grp {prefix g;}"
2436 "uses g:grp {refine c/ch/a/a {mandatory true;}}}", LYS_IN_YANG));
2437 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2438 logbuf_assert("Invalid refine of mandatory in \"c/ch/a/a\" - leaf under the default case.");
2439
2440 assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;import grp {prefix g;}"
2441 "uses g:grp {refine c/x {default hello;}}}", LYS_IN_YANG));
2442 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2443 logbuf_assert("Invalid refine of default in \"c/x\" - the node is mandatory.");
2444
Radek Krejcib1b59152019-01-07 13:21:56 +01002445 assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;import grp {prefix g;}"
2446 "uses g:grp {refine c/c/l {config true;}}}", LYS_IN_YANG));
2447 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2448 logbuf_assert("Invalid refine of config in \"c/c/l\" - configuration node cannot be child of any state data node.");
2449
2450 assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;grouping grp {leaf l {type string; status deprecated;}}"
2451 "uses grp {status obsolete;}}", LYS_IN_YANG));
2452 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2453 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
2454
Radek Krejci9a54f1f2019-01-07 13:47:55 +01002455 assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;import grp {prefix g;}"
2456 "uses g:grp {refine c/x {presence nonsence;}}}", LYS_IN_YANG));
2457 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2458 logbuf_assert("Invalid refine of presence statement in \"c/x\" - leaf cannot hold the presence statement.");
2459
Radek Krejci9a564c92019-01-07 14:53:57 +01002460 assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;import grp {prefix g;}"
2461 "uses g:grp {refine c/ch {must 1;}}}", LYS_IN_YANG));
2462 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2463 logbuf_assert("Invalid refine of must statement in \"c/ch\" - choice cannot hold any must statement.");
2464
Radek Krejci6b22ab72019-01-07 15:39:20 +01002465 assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;import grp {prefix g;}"
2466 "uses g:grp {refine c/x {min-elements 1;}}}", LYS_IN_YANG));
2467 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2468 logbuf_assert("Invalid refine of min-elements statement in \"c/x\" - leaf cannot hold this statement.");
2469
Radek Krejcif2271f12019-01-07 16:42:23 +01002470 assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;import grp {prefix g;}"
2471 "uses g:grp {refine c/ll {min-elements 10;}}}", LYS_IN_YANG));
2472 assert_int_equal(LY_EVALID, lys_compile(mod, 0));
2473 logbuf_assert("Invalid refine of min-elements statement in \"c/ll\" - \"min-elements\" is bigger than \"max-elements\".");
2474
Radek Krejci01342af2019-01-03 15:18:08 +01002475 *state = NULL;
2476 ly_ctx_destroy(ctx, NULL);
2477}
Radek Krejcie86bf772018-12-14 11:39:53 +01002478
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002479int main(void)
2480{
2481 const struct CMUnitTest tests[] = {
Radek Krejci4f28eda2018-11-12 11:46:16 +01002482 cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown),
2483 cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown),
2484 cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown),
Radek Krejci0f07bed2018-11-13 14:01:40 +01002485 cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown),
2486 cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown),
Radek Krejcicda74152018-11-13 15:27:32 +01002487 cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown),
Radek Krejci8b764662018-11-14 14:15:13 +01002488 cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown),
2489 cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown),
Radek Krejci6cba4292018-11-15 17:33:29 +01002490 cmocka_unit_test_setup_teardown(test_type_dec64, logger_setup, logger_teardown),
Radek Krejci16c0f822018-11-16 10:46:10 +01002491 cmocka_unit_test_setup_teardown(test_type_instanceid, logger_setup, logger_teardown),
Radek Krejci555cb5b2018-11-16 14:54:33 +01002492 cmocka_unit_test_setup_teardown(test_type_identityref, logger_setup, logger_teardown),
Radek Krejcia3045382018-11-22 14:30:31 +01002493 cmocka_unit_test_setup_teardown(test_type_leafref, logger_setup, logger_teardown),
Radek Krejci43699232018-11-23 14:59:46 +01002494 cmocka_unit_test_setup_teardown(test_type_empty, logger_setup, logger_teardown),
Radek Krejcicdfecd92018-11-26 11:27:32 +01002495 cmocka_unit_test_setup_teardown(test_type_union, logger_setup, logger_teardown),
2496 cmocka_unit_test_setup_teardown(test_type_dflt, logger_setup, logger_teardown),
Radek Krejci665421c2018-12-05 08:03:39 +01002497 cmocka_unit_test_setup_teardown(test_status, logger_setup, logger_teardown),
Radek Krejci4f28eda2018-11-12 11:46:16 +01002498 cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown),
Radek Krejci0e5d8382018-11-28 16:37:53 +01002499 cmocka_unit_test_setup_teardown(test_node_leaflist, logger_setup, logger_teardown),
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002500 cmocka_unit_test_setup_teardown(test_node_list, logger_setup, logger_teardown),
Radek Krejci056d0a82018-12-06 16:57:25 +01002501 cmocka_unit_test_setup_teardown(test_node_choice, logger_setup, logger_teardown),
Radek Krejci9800fb82018-12-13 14:26:23 +01002502 cmocka_unit_test_setup_teardown(test_node_anydata, logger_setup, logger_teardown),
Radek Krejcie86bf772018-12-14 11:39:53 +01002503 cmocka_unit_test_setup_teardown(test_uses, logger_setup, logger_teardown),
Radek Krejci01342af2019-01-03 15:18:08 +01002504 cmocka_unit_test_setup_teardown(test_refine, logger_setup, logger_teardown),
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002505 };
2506
2507 return cmocka_run_group_tests(tests, NULL, NULL);
2508}