blob: 8bf96763742cbae048ec850f200c3926db825201 [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 Krejcidd4e8d42018-10-16 14:55:43 +020015#include <stdarg.h>
16#include <stddef.h>
17#include <setjmp.h>
18#include <cmocka.h>
19
20#include <stdio.h>
21#include <string.h>
22
Radek Krejci2d7a47b2019-05-16 13:34:10 +020023#include "../../src/common.h"
24#include "../../src/tree_schema_internal.h"
25#include "../../src/xpath.h"
Radek Krejcia1911222019-07-22 17:24:50 +020026#include "../../src/plugins_types.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020027
28void lysc_feature_free(struct ly_ctx *ctx, struct lysc_feature *feat);
David Sedlák1b623122019-08-05 15:27:49 +020029void lys_parser_ctx_free(struct lys_parser_ctx *ctx);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020030
31LY_ERR lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len,
32 int *parent_times, int *has_predicate);
Radek Krejcidd4e8d42018-10-16 14:55:43 +020033
34#define BUFSIZE 1024
35char logbuf[BUFSIZE] = {0};
36
37/* set to 0 to printing error messages to stderr instead of checking them in code */
38#define ENABLE_LOGGER_CHECKING 1
39
40#if ENABLE_LOGGER_CHECKING
41static void
42logger(LY_LOG_LEVEL level, const char *msg, const char *path)
43{
44 (void) level; /* unused */
45
Radek Krejci87616bb2018-10-31 13:30:52 +010046 if (path && path[0]) {
Radek Krejcidd4e8d42018-10-16 14:55:43 +020047 snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path);
48 } else {
49 strncpy(logbuf, msg, BUFSIZE - 1);
50 }
51}
52#endif
53
54static int
55logger_setup(void **state)
56{
57 (void) state; /* unused */
58#if ENABLE_LOGGER_CHECKING
59 ly_set_log_clb(logger, 1);
60#endif
61 return 0;
62}
63
Radek Krejci4f28eda2018-11-12 11:46:16 +010064static int
65logger_teardown(void **state)
66{
67 (void) state; /* unused */
68#if ENABLE_LOGGER_CHECKING
69 if (*state) {
70 fprintf(stderr, "%s\n", logbuf);
71 }
72#endif
73 return 0;
74}
75
Radek Krejcidd4e8d42018-10-16 14:55:43 +020076void
77logbuf_clean(void)
78{
79 logbuf[0] = '\0';
80}
81
82#if ENABLE_LOGGER_CHECKING
Radek Krejci16c0f822018-11-16 10:46:10 +010083# define logbuf_assert(str) assert_string_equal(logbuf, str);logbuf_clean()
Radek Krejcidd4e8d42018-10-16 14:55:43 +020084#else
85# define logbuf_assert(str)
86#endif
87
Radek Krejcid05cbd92018-12-05 14:26:40 +010088static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
89 const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format,
90 const char **module_data, void (**free_module_data)(void *model_data, void *user_data))
91{
92 *module_data = user_data;
93 *format = LYS_IN_YANG;
94 *free_module_data = NULL;
95 return LY_SUCCESS;
96}
97
Radek Krejcidd4e8d42018-10-16 14:55:43 +020098static void
David Sedlák1b623122019-08-05 15:27:49 +020099reset_mod(struct lys_module *module)
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100100{
David Sedlák1b623122019-08-05 15:27:49 +0200101 struct ly_ctx *ctx = module->ctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100102 lysc_module_free(module->compiled, NULL);
103 lysp_module_free(module->parsed);
104
David Sedlák1b623122019-08-05 15:27:49 +0200105 FREE_STRING(ctx, module->name);
106 FREE_STRING(ctx, module->ns);
107 FREE_STRING(ctx, module->prefix);
108 FREE_STRING(ctx, module->filepath);
109 FREE_STRING(ctx, module->org);
110 FREE_STRING(ctx, module->contact);
111 FREE_STRING(ctx, module->dsc);
112 FREE_STRING(ctx, module->ref);
113 FREE_ARRAY(ctx, module->off_features, lysc_feature_free);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100114
115 memset(module, 0, sizeof *module);
116 module->ctx = ctx;
Radek Krejci096235c2019-01-11 11:12:19 +0100117 module->implemented = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100118}
119
120static void
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200121test_module(void **state)
122{
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100123 *state = test_module;
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200124
125 const char *str;
David Sedlák1b623122019-08-05 15:27:49 +0200126 struct lys_parser_ctx *ctx = NULL;
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200127 struct lys_module mod = {0};
Radek Krejci151a5b72018-10-19 14:21:44 +0200128 struct lysc_feature *f;
129 struct lysc_iffeature *iff;
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200130
131 str = "module test {namespace urn:test; prefix t;"
Radek Krejci151a5b72018-10-19 14:21:44 +0200132 "feature f1;feature f2 {if-feature f1;}}";
David Sedlák1b623122019-08-05 15:27:49 +0200133 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &mod.ctx));
134 reset_mod(&mod);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200135
Radek Krejcif8f882a2018-10-31 14:51:15 +0100136 assert_int_equal(LY_EINVAL, lys_compile(NULL, 0));
137 logbuf_assert("Invalid argument mod (lys_compile()).");
138 assert_int_equal(LY_EINVAL, lys_compile(&mod, 0));
139 logbuf_assert("Invalid argument mod->parsed (lys_compile()).");
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100140 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, str, &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200141 lys_parser_ctx_free(ctx);
Radek Krejci096235c2019-01-11 11:12:19 +0100142 mod.implemented = 0;
143 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
144 assert_null(mod.compiled);
145 mod.implemented = 1;
Radek Krejcif8f882a2018-10-31 14:51:15 +0100146 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200147 assert_non_null(mod.compiled);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100148 assert_string_equal("test", mod.name);
149 assert_string_equal("urn:test", mod.ns);
150 assert_string_equal("t", mod.prefix);
Radek Krejci151a5b72018-10-19 14:21:44 +0200151 /* features */
152 assert_non_null(mod.compiled->features);
153 assert_int_equal(2, LY_ARRAY_SIZE(mod.compiled->features));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200154 f = &mod.compiled->features[1];
Radek Krejci151a5b72018-10-19 14:21:44 +0200155 assert_non_null(f->iffeatures);
156 assert_int_equal(1, LY_ARRAY_SIZE(f->iffeatures));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200157 iff = &f->iffeatures[0];
Radek Krejci151a5b72018-10-19 14:21:44 +0200158 assert_non_null(iff->expr);
159 assert_non_null(iff->features);
160 assert_int_equal(1, LY_ARRAY_SIZE(iff->features));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200161 assert_ptr_equal(&mod.compiled->features[0], iff->features[0]);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200162
Radek Krejci86d106e2018-10-18 09:53:19 +0200163 lysc_module_free(mod.compiled, NULL);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200164
Radek Krejcif8f882a2018-10-31 14:51:15 +0100165 assert_int_equal(LY_SUCCESS, lys_compile(&mod, LYSC_OPT_FREE_SP));
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200166 assert_non_null(mod.compiled);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200167
Radek Krejci86d106e2018-10-18 09:53:19 +0200168 lysc_module_free(mod.compiled, NULL);
169 mod.compiled = NULL;
170
Radek Krejci151a5b72018-10-19 14:21:44 +0200171 /* submodules cannot be compiled directly */
Radek Krejci86d106e2018-10-18 09:53:19 +0200172 str = "submodule test {belongs-to xxx {prefix x;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100173 assert_int_equal(LY_EINVAL, yang_parse_module(&ctx, str, &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200174 lys_parser_ctx_free(ctx);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100175 logbuf_assert("Input data contains submodule which cannot be parsed directly without its main module.");
176 assert_null(mod.parsed);
David Sedlák1b623122019-08-05 15:27:49 +0200177 reset_mod(&mod);
Radek Krejci76b3e962018-12-14 17:01:25 +0100178
179 /* data definition name collision in top level */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100180 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module aa {namespace urn:aa;prefix aa;"
181 "leaf a {type string;} container a{presence x;}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200182 lys_parser_ctx_free(ctx);
Radek Krejci76b3e962018-12-14 17:01:25 +0100183 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200184 logbuf_assert("Duplicate identifier \"a\" of data definition/RPC/action/Notification statement. /aa:a");
Radek Krejci76b3e962018-12-14 17:01:25 +0100185 assert_null(mod.compiled);
David Sedlák1b623122019-08-05 15:27:49 +0200186 reset_mod(&mod);
Radek Krejci76b3e962018-12-14 17:01:25 +0100187
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100188 *state = NULL;
David Sedlák1b623122019-08-05 15:27:49 +0200189 ly_ctx_destroy(mod.ctx, NULL);
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200190}
191
Radek Krejci151a5b72018-10-19 14:21:44 +0200192static void
193test_feature(void **state)
194{
Radek Krejcid05cbd92018-12-05 14:26:40 +0100195 *state = test_feature;
Radek Krejci151a5b72018-10-19 14:21:44 +0200196
David Sedlák1b623122019-08-05 15:27:49 +0200197 struct lys_parser_ctx *ctx = NULL;
Radek Krejci1aefdf72018-11-01 11:01:39 +0100198 struct lys_module mod = {0}, *modp;
Radek Krejci151a5b72018-10-19 14:21:44 +0200199 const char *str;
200 struct lysc_feature *f, *f1;
201
202 str = "module a {namespace urn:a;prefix a;yang-version 1.1;\n"
203 "feature f1 {description test1;reference test2;status current;} feature f2; feature f3;\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100204 "feature orfeature {if-feature \"f1 or f2\";}\n"
205 "feature andfeature {if-feature \"f1 and f2\";}\n"
Radek Krejci151a5b72018-10-19 14:21:44 +0200206 "feature f6 {if-feature \"not f1\";}\n"
Radek Krejcidde18c52018-10-24 14:43:04 +0200207 "feature f7 {if-feature \"(f2 and f3) or (not f1)\";}\n"
Radek Krejci87616bb2018-10-31 13:30:52 +0100208 "feature f8 {if-feature \"f1 or f2 or f3 or orfeature or andfeature\";}\n"
209 "feature f9 {if-feature \"not not f1\";}}";
Radek Krejci151a5b72018-10-19 14:21:44 +0200210
David Sedlák1b623122019-08-05 15:27:49 +0200211 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &mod.ctx));
212 reset_mod(&mod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100213
214 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, str, &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200215 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100216 assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0));
Radek Krejci151a5b72018-10-19 14:21:44 +0200217 assert_non_null(mod.compiled);
218 assert_non_null(mod.compiled->features);
Radek Krejci87616bb2018-10-31 13:30:52 +0100219 assert_int_equal(9, LY_ARRAY_SIZE(mod.compiled->features));
Radek Krejci151a5b72018-10-19 14:21:44 +0200220 /* all features are disabled by default */
221 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
222 assert_int_equal(0, lysc_feature_value(f));
223 }
224 /* enable f1 */
225 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200226 f1 = &mod.compiled->features[0];
Radek Krejci151a5b72018-10-19 14:21:44 +0200227 assert_int_equal(1, lysc_feature_value(f1));
228
Radek Krejci87616bb2018-10-31 13:30:52 +0100229 /* enable orfeature */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200230 f = &mod.compiled->features[3];
Radek Krejci151a5b72018-10-19 14:21:44 +0200231 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100232 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "orfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200233 assert_int_equal(1, lysc_feature_value(f));
234
Radek Krejci87616bb2018-10-31 13:30:52 +0100235 /* enable andfeature - no possible since f2 is disabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200236 f = &mod.compiled->features[4];
Radek Krejci151a5b72018-10-19 14:21:44 +0200237 assert_int_equal(0, lysc_feature_value(f));
Radek Krejci87616bb2018-10-31 13:30:52 +0100238 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
239 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci151a5b72018-10-19 14:21:44 +0200240 assert_int_equal(0, lysc_feature_value(f));
241
242 /* first enable f2, so f5 can be enabled then */
243 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f2"));
Radek Krejci87616bb2018-10-31 13:30:52 +0100244 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "andfeature"));
Radek Krejci151a5b72018-10-19 14:21:44 +0200245 assert_int_equal(1, lysc_feature_value(f));
246
247 /* f1 is enabled, so f6 cannot be enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200248 f = &mod.compiled->features[5];
Radek Krejci151a5b72018-10-19 14:21:44 +0200249 assert_int_equal(0, lysc_feature_value(f));
250 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "f6"));
251 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
252 assert_int_equal(0, lysc_feature_value(f));
253
Radek Krejci87616bb2018-10-31 13:30:52 +0100254 /* so disable f1 - andfeature will became also disabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200255 assert_int_equal(1, lysc_feature_value(f1));
Radek Krejci151a5b72018-10-19 14:21:44 +0200256 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
257 assert_int_equal(0, lysc_feature_value(f1));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200258 assert_int_equal(0, lysc_feature_value(&mod.compiled->features[4]));
Radek Krejci87616bb2018-10-31 13:30:52 +0100259 /* while orfeature is stille enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200260 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[3]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200261 /* and finally f6 can be enabled */
Radek Krejci151a5b72018-10-19 14:21:44 +0200262 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f6"));
Radek Krejci2c4e7172018-10-19 15:56:26 +0200263 assert_int_equal(1, lysc_feature_value(&mod.compiled->features[5]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200264
265 /* complex evaluation of f7: f1 and f3 are disabled, while f2 is enabled */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200266 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[6].iffeatures[0]));
Radek Krejcidde18c52018-10-24 14:43:04 +0200267 /* long evaluation of f8 to need to reallocate internal stack for operators */
268 assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[7].iffeatures[0]));
Radek Krejci151a5b72018-10-19 14:21:44 +0200269
Radek Krejci87616bb2018-10-31 13:30:52 +0100270 /* double negation of disabled f1 -> disabled */
271 assert_int_equal(0, lysc_iffeature_value(&mod.compiled->features[8].iffeatures[0]));
272
Radek Krejci38920282018-11-01 09:24:16 +0100273 /* disable all features */
274 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "*"));
275 LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) {
276 assert_int_equal(0, lys_feature_value(&mod, f->name));
277 }
278 /* re-setting already set feature */
279 assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1"));
280 assert_int_equal(0, lys_feature_value(&mod, "f1"));
281
282 /* enabling feature that cannot be enabled due to its if-features */
Radek Krejci1aefdf72018-11-01 11:01:39 +0100283 assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1"));
284 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature"));
285 logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejcica3db002018-11-01 10:31:01 +0100286 assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "*"));
287 logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s).");
Radek Krejci1aefdf72018-11-01 11:01:39 +0100288 /* test if not changed */
289 assert_int_equal(1, lys_feature_value(&mod, "f1"));
290 assert_int_equal(0, lys_feature_value(&mod, "f2"));
Radek Krejci38920282018-11-01 09:24:16 +0100291
David Sedlák1b623122019-08-05 15:27:49 +0200292 assert_non_null(modp = lys_parse_mem(mod.ctx, "module b {namespace urn:b;prefix b;"
Radek Krejci0af46292019-01-11 16:02:31 +0100293 "feature f1 {if-feature f2;}feature f2;}", LYS_IN_YANG));
294 assert_non_null(modp->compiled);
295 assert_non_null(modp->compiled->features);
296 assert_int_equal(2, LY_ARRAY_SIZE(modp->compiled->features));
297 assert_non_null(modp->compiled->features[0].iffeatures);
298 assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[0].iffeatures));
299 assert_non_null(modp->compiled->features[0].iffeatures[0].features);
300 assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[0].iffeatures[0].features));
301 assert_ptr_equal(&modp->compiled->features[1], modp->compiled->features[0].iffeatures[0].features[0]);
302 assert_non_null(modp->compiled->features);
303 assert_int_equal(2, LY_ARRAY_SIZE(modp->compiled->features));
304 assert_non_null(modp->compiled->features[1].depfeatures);
305 assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[1].depfeatures));
306 assert_ptr_equal(&modp->compiled->features[0], modp->compiled->features[1].depfeatures[0]);
307
Radek Krejci1aefdf72018-11-01 11:01:39 +0100308 /* invalid reference */
Radek Krejci38920282018-11-01 09:24:16 +0100309 assert_int_equal(LY_EINVAL, lys_feature_enable(&mod, "xxx"));
310 logbuf_assert("Feature \"xxx\" not found in module \"a\".");
311
David Sedlák1b623122019-08-05 15:27:49 +0200312 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100313
314 /* some invalid expressions */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100315 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature f1;}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200316 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100317 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200318 logbuf_assert("Invalid value \"f1\" of if-feature - unable to find feature \"f1\". /b:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200319 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100320
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100321 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f and';}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200322 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100323 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200324 logbuf_assert("Invalid value \"f and\" of if-feature - unexpected end of expression. /b:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200325 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100326
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100327 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature 'or';}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200328 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100329 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200330 logbuf_assert("Invalid value \"or\" of if-feature - unexpected end of expression. /b:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200331 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100332
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100333 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature '(f1';}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200334 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100335 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200336 logbuf_assert("Invalid value \"(f1\" of if-feature - non-matching opening and closing parentheses. /b:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200337 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100338
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100339 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f1)';}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200340 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100341 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200342 logbuf_assert("Invalid value \"f1)\" of if-feature - non-matching opening and closing parentheses. /b:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200343 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100344
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100345 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature ---;}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200346 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100347 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200348 logbuf_assert("Invalid value \"---\" of if-feature - unable to find feature \"---\". /b:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200349 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100350
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100351 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f2{if-feature 'not f1';}}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200352 lys_parser_ctx_free(ctx);
Radek Krejcif8f882a2018-10-31 14:51:15 +0100353 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200354 logbuf_assert("Invalid value \"not f1\" of if-feature - YANG 1.1 expression in YANG 1.0 module. /b:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200355 reset_mod(&mod);
Radek Krejci87616bb2018-10-31 13:30:52 +0100356
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100357 assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f1;}", &mod));
David Sedlák1b623122019-08-05 15:27:49 +0200358 lys_parser_ctx_free(ctx);
Radek Krejcid05cbd92018-12-05 14:26:40 +0100359 assert_int_equal(LY_EVALID, lys_compile(&mod, 0));
Radek Krejci327de162019-06-14 12:52:07 +0200360 logbuf_assert("Duplicate identifier \"f1\" of feature statement. /b:{feature='f1'}");
David Sedlák1b623122019-08-05 15:27:49 +0200361 reset_mod(&mod);
Radek Krejcid05cbd92018-12-05 14:26:40 +0100362
David Sedlák1b623122019-08-05 15:27:49 +0200363 ly_ctx_set_module_imp_clb(mod.ctx, test_imp_clb, "submodule sz {belongs-to z {prefix z;} feature f1;}");
364 assert_null(lys_parse_mem(mod.ctx, "module z{namespace urn:z; prefix z; include sz;feature f1;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200365 logbuf_assert("Duplicate identifier \"f1\" of feature statement. /z:{feature='f1'}");
Radek Krejcid05cbd92018-12-05 14:26:40 +0100366
David Sedlák1b623122019-08-05 15:27:49 +0200367 assert_null(lys_parse_mem(mod.ctx, "module aa{namespace urn:aa; prefix aa; feature f1 {if-feature f2;} feature f2 {if-feature f1;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200368 logbuf_assert("Feature \"f1\" is indirectly referenced from itself. /aa:{feature='f2'}");
David Sedlák1b623122019-08-05 15:27:49 +0200369 assert_null(lys_parse_mem(mod.ctx, "module ab{namespace urn:ab; prefix ab; feature f1 {if-feature f1;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200370 logbuf_assert("Feature \"f1\" is referenced from itself. /ab:{feature='f1'}");
Radek Krejci09a1fc52019-02-13 10:55:17 +0100371
David Sedlák1b623122019-08-05 15:27:49 +0200372 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f {if-feature ();}}", LYS_IN_YANG));
Radek Krejci6788abc2019-06-14 13:56:49 +0200373 logbuf_assert("Invalid value \"()\" of if-feature - number of features in expression does not match the required number "
374 "of operands for the operations. /bb:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200375 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f1; feature f {if-feature 'f1(';}}", LYS_IN_YANG));
Radek Krejci6788abc2019-06-14 13:56:49 +0200376 logbuf_assert("Invalid value \"f1(\" of if-feature - non-matching opening and closing parentheses. /bb:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200377 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f1; feature f {if-feature 'and f1';}}", LYS_IN_YANG));
Radek Krejci6788abc2019-06-14 13:56:49 +0200378 logbuf_assert("Invalid value \"and f1\" of if-feature - missing feature/expression before \"and\" operation. /bb:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200379 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f1; feature f {if-feature 'f1 not ';}}", LYS_IN_YANG));
Radek Krejci6788abc2019-06-14 13:56:49 +0200380 logbuf_assert("Invalid value \"f1 not \" of if-feature - unexpected end of expression. /bb:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200381 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f1; feature f {if-feature 'f1 not not ';}}", LYS_IN_YANG));
Radek Krejci6788abc2019-06-14 13:56:49 +0200382 logbuf_assert("Invalid value \"f1 not not \" of if-feature - unexpected end of expression. /bb:{feature='f'}");
David Sedlák1b623122019-08-05 15:27:49 +0200383 assert_null(lys_parse_mem(mod.ctx, "module bb{yang-version 1.1; namespace urn:bb; prefix bb; feature f1; feature f2; "
Radek Krejci6788abc2019-06-14 13:56:49 +0200384 "feature f {if-feature 'or f1 f2';}}", LYS_IN_YANG));
385 logbuf_assert("Invalid value \"or f1 f2\" of if-feature - missing feature/expression before \"or\" operation. /bb:{feature='f'}");
386
Radek Krejci1aefdf72018-11-01 11:01:39 +0100387 /* import reference */
David Sedlák1b623122019-08-05 15:27:49 +0200388 assert_non_null(modp = lys_parse_mem(mod.ctx, str, LYS_IN_YANG));
Radek Krejci1aefdf72018-11-01 11:01:39 +0100389 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f1"));
David Sedlák1b623122019-08-05 15:27:49 +0200390 assert_non_null(modp = lys_parse_mem(mod.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 +0100391 assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f2"));
392 assert_int_equal(0, lys_feature_value(modp, "f1"));
393 assert_int_equal(1, lys_feature_value(modp, "f2"));
394
Radek Krejcid05cbd92018-12-05 14:26:40 +0100395 *state = NULL;
David Sedlák1b623122019-08-05 15:27:49 +0200396 ly_ctx_destroy(mod.ctx, NULL);
Radek Krejci151a5b72018-10-19 14:21:44 +0200397}
Radek Krejcidd4e8d42018-10-16 14:55:43 +0200398
Radek Krejci478020e2018-10-30 16:02:14 +0100399static void
400test_identity(void **state)
401{
Radek Krejci7f2a5362018-11-28 13:05:37 +0100402 *state = test_identity;
Radek Krejci478020e2018-10-30 16:02:14 +0100403
404 struct ly_ctx *ctx;
Radek Krejci1aefdf72018-11-01 11:01:39 +0100405 struct lys_module *mod1, *mod2;
Radek Krejci478020e2018-10-30 16:02:14 +0100406
407 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
Radek Krejci4d483a82019-01-17 13:12:50 +0100408 assert_non_null(mod1 = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; identity a1;}", LYS_IN_YANG));
409 assert_non_null(mod2 = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; import a {prefix a;}"
410 "identity b1; identity b2; identity b3 {base b1; base b:b2; base a:a1;}"
411 "identity b4 {base b:b1; base b3;}}", LYS_IN_YANG));
Radek Krejci478020e2018-10-30 16:02:14 +0100412
413 assert_non_null(mod1->compiled);
414 assert_non_null(mod1->compiled->identities);
415 assert_non_null(mod2->compiled);
416 assert_non_null(mod2->compiled->identities);
417
418 assert_non_null(mod1->compiled->identities[0].derived);
419 assert_int_equal(1, LY_ARRAY_SIZE(mod1->compiled->identities[0].derived));
420 assert_ptr_equal(mod1->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
421 assert_non_null(mod2->compiled->identities[0].derived);
422 assert_int_equal(2, LY_ARRAY_SIZE(mod2->compiled->identities[0].derived));
423 assert_ptr_equal(mod2->compiled->identities[0].derived[0], &mod2->compiled->identities[2]);
424 assert_ptr_equal(mod2->compiled->identities[0].derived[1], &mod2->compiled->identities[3]);
425 assert_non_null(mod2->compiled->identities[1].derived);
426 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived));
427 assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[2]);
428 assert_non_null(mod2->compiled->identities[2].derived);
429 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[2].derived));
430 assert_ptr_equal(mod2->compiled->identities[2].derived[0], &mod2->compiled->identities[3]);
431
Radek Krejci4d483a82019-01-17 13:12:50 +0100432 assert_non_null(mod2 = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;"
433 "identity c2 {base c1;} identity c1;}", LYS_IN_YANG));
434 assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived));
435 assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[0]);
436
437 assert_null(lys_parse_mem(ctx, "module aa{namespace urn:aa; prefix aa; identity i1;identity i1;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200438 logbuf_assert("Duplicate identifier \"i1\" of identity statement. /aa:{identity='i1'}");
Radek Krejcid05cbd92018-12-05 14:26:40 +0100439
Radek Krejci4d483a82019-01-17 13:12:50 +0100440 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule sbb {belongs-to bb {prefix bb;} identity i1;}");
441 assert_null(lys_parse_mem(ctx, "module bb{namespace urn:bb; prefix bb; include sbb;identity i1;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200442 logbuf_assert("Duplicate identifier \"i1\" of identity statement. /bb:{identity='i1'}");
Radek Krejcid05cbd92018-12-05 14:26:40 +0100443
Radek Krejci38222632019-02-12 16:55:05 +0100444 assert_null(lys_parse_mem(ctx, "module cc{namespace urn:cc; prefix cc; identity i1 {base i2;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200445 logbuf_assert("Unable to find base (i2) of identity \"i1\". /cc:{identity='i1'}");
Radek Krejci38222632019-02-12 16:55:05 +0100446
447 assert_null(lys_parse_mem(ctx, "module dd{namespace urn:dd; prefix dd; identity i1 {base i1;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200448 logbuf_assert("Identity \"i1\" is derived from itself. /dd:{identity='i1'}");
Radek Krejci38222632019-02-12 16:55:05 +0100449 assert_null(lys_parse_mem(ctx, "module de{namespace urn:de; prefix de; identity i1 {base i2;}identity i2 {base i3;}identity i3 {base i1;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200450 logbuf_assert("Identity \"i1\" is indirectly derived from itself. /de:{identity='i3'}");
Radek Krejci38222632019-02-12 16:55:05 +0100451
Radek Krejci7f2a5362018-11-28 13:05:37 +0100452 *state = NULL;
Radek Krejci478020e2018-10-30 16:02:14 +0100453 ly_ctx_destroy(ctx, NULL);
454}
455
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100456static void
457test_node_container(void **state)
458{
459 (void) state; /* unused */
460
461 struct ly_ctx *ctx;
462 struct lys_module *mod;
463 struct lysc_node_container *cont;
464
465 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
466 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;container c;}", LYS_IN_YANG));
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100467 assert_non_null(mod->compiled);
468 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
469 assert_int_equal(LYS_CONTAINER, cont->nodetype);
470 assert_string_equal("c", cont->name);
471 assert_true(cont->flags & LYS_CONFIG_W);
472 assert_true(cont->flags & LYS_STATUS_CURR);
473
Radek Krejci98094b32018-11-02 16:21:47 +0100474 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 Krejci98094b32018-11-02 16:21:47 +0100475 logbuf_assert("Missing explicit \"deprecated\" status that was already specified in parent, inheriting.");
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100476 assert_non_null(mod->compiled);
477 assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data));
478 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100479 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100480 assert_non_null((cont = (struct lysc_node_container*)cont->child));
481 assert_int_equal(LYS_CONTAINER, cont->nodetype);
482 assert_true(cont->flags & LYS_CONFIG_R);
Radek Krejci98094b32018-11-02 16:21:47 +0100483 assert_true(cont->flags & LYS_STATUS_DEPRC);
Radek Krejcibd8d9ba2018-11-02 16:06:26 +0100484 assert_string_equal("child", cont->name);
485
486 ly_ctx_destroy(ctx, NULL);
487}
488
Radek Krejci0e5d8382018-11-28 16:37:53 +0100489static void
490test_node_leaflist(void **state)
491{
492 *state = test_node_leaflist;
493
494 struct ly_ctx *ctx;
495 struct lys_module *mod;
496 struct lysc_type *type;
497 struct lysc_node_leaflist *ll;
Radek Krejci1c0c3442019-07-23 16:08:47 +0200498 struct lysc_node_leaf *l;
Radek Krejcia1911222019-07-22 17:24:50 +0200499 const char *dflt;
500 int dynamic;
Radek Krejci0e5d8382018-11-28 16:37:53 +0100501
502 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
503
504 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;"
505 "typedef mytype {type union {type leafref {path ../target;} type string;}}"
506 "leaf-list ll1 {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
507 "leaf-list ll2 {type leafref {path ../target;}}"
508 "leaf target {type int8;}}",
509 LYS_IN_YANG));
Radek Krejci0e5d8382018-11-28 16:37:53 +0100510 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
511 assert_non_null(type);
512 assert_int_equal(1, type->refcount);
513 assert_int_equal(LY_TYPE_UNION, type->basetype);
514 assert_non_null(((struct lysc_type_union*)type)->types);
515 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
516 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
517 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
518 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
519 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
520 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
521 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
522 assert_non_null(type);
523 assert_int_equal(1, type->refcount);
524 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
525 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
526 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
527
Radek Krejci6bb080b2018-11-28 17:23:41 +0100528 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 +0100529 assert_non_null(mod->compiled);
530 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
531 assert_int_equal(0, ll->min);
532 assert_int_equal((uint32_t)-1, ll->max);
533
Radek Krejci6bb080b2018-11-28 17:23:41 +0100534 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 +0100535 "leaf-list ll1 {type mytype;default 1; default 1; config false;}"
Radek Krejcia6d57732018-11-29 13:40:37 +0100536 "leaf-list ll2 {type mytype; ordered-by user;}}", LYS_IN_YANG));
Radek Krejci6bb080b2018-11-28 17:23:41 +0100537 assert_non_null(mod->compiled);
538 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
539 assert_non_null(ll->dflts);
Radek Krejcia1911222019-07-22 17:24:50 +0200540 assert_int_equal(6, ll->type->refcount); /* 3x type's reference, 3x default value's reference (typedef's default does not reference own type) */
Radek Krejci6bb080b2018-11-28 17:23:41 +0100541 assert_int_equal(2, LY_ARRAY_SIZE(ll->dflts));
Radek Krejcia1911222019-07-22 17:24:50 +0200542 assert_string_equal("1", dflt = ll->dflts[0]->realtype->plugin->print(ll->dflts[0], LYD_XML, NULL, NULL, &dynamic));
543 assert_int_equal(0, dynamic);
544 assert_string_equal("1", dflt = ll->dflts[1]->realtype->plugin->print(ll->dflts[1], LYD_XML, NULL, NULL, &dynamic));
545 assert_int_equal(0, dynamic);
Radek Krejci93dcc392019-02-19 10:43:38 +0100546 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_DFLT | LYS_SET_CONFIG, ll->flags);
Radek Krejci6bb080b2018-11-28 17:23:41 +0100547 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data->next));
548 assert_non_null(ll->dflts);
Radek Krejcia1911222019-07-22 17:24:50 +0200549 assert_int_equal(6, ll->type->refcount); /* 3x type's reference, 3x default value's reference */
Radek Krejci6bb080b2018-11-28 17:23:41 +0100550 assert_int_equal(1, LY_ARRAY_SIZE(ll->dflts));
Radek Krejcia1911222019-07-22 17:24:50 +0200551 assert_string_equal("10", dflt = ll->dflts[0]->realtype->plugin->print(ll->dflts[0], LYD_XML, NULL, NULL, &dynamic));
552 assert_int_equal(0, dynamic);
Radek Krejcia6d57732018-11-29 13:40:37 +0100553 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, ll->flags);
554
Radek Krejcifc11bd72019-04-11 16:00:05 +0200555 /* ordered-by is ignored for state data, RPC/action output parameters and notification content */
Radek Krejcia6d57732018-11-29 13:40:37 +0100556 assert_non_null(mod = lys_parse_mem(ctx, "module d {yang-version 1.1;namespace urn:d;prefix d;"
557 "leaf-list ll {config false; type string; ordered-by user;}}", LYS_IN_YANG));
Radek Krejcia6d57732018-11-29 13:40:37 +0100558 /* but warning is present: */
Radek Krejci327de162019-06-14 12:52:07 +0200559 logbuf_assert("The ordered-by statement is ignored in lists representing state data (/d:ll).");
Radek Krejcia6d57732018-11-29 13:40:37 +0100560 assert_non_null(mod->compiled);
561 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
Radek Krejci93dcc392019-02-19 10:43:38 +0100562 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_CONFIG, ll->flags);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200563 logbuf_clean();
564
565 assert_non_null(mod = lys_parse_mem(ctx, "module e {yang-version 1.1;namespace urn:e;prefix e;"
566 "rpc oper {output {leaf-list ll {type string; ordered-by user;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200567 logbuf_assert("The ordered-by statement is ignored in lists representing RPC/action output parameters (/e:oper/output/ll).");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200568 logbuf_clean();
569
570 assert_non_null(mod = lys_parse_mem(ctx, "module f {yang-version 1.1;namespace urn:f;prefix f;"
571 "notification event {leaf-list ll {type string; ordered-by user;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200572 logbuf_assert("The ordered-by statement is ignored in lists representing notification content (/f:event/ll).");
Radek Krejci6bb080b2018-11-28 17:23:41 +0100573
Radek Krejci1c0c3442019-07-23 16:08:47 +0200574 /* forward reference in default */
575 assert_non_null(mod = lys_parse_mem(ctx, "module g {yang-version 1.1; namespace urn:g;prefix g;"
576 "leaf ref {type instance-identifier {require-instance true;} default \"/g:g\";}"
577 "leaf-list g {type string;}}", LYS_IN_YANG));
578 assert_non_null(l = (struct lysc_node_leaf*)mod->compiled->data);
579 assert_string_equal("ref", l->name);
580 assert_non_null(l->dflt);
Radek Krejci950f6a52019-09-12 17:15:32 +0200581 assert_null(l->dflt->canonical_cache);
Radek Krejci1c0c3442019-07-23 16:08:47 +0200582
Radek Krejci6bb080b2018-11-28 17:23:41 +0100583 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +0100584 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf-list ll {type empty;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200585 logbuf_assert("Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules. /aa:ll");
Radek Krejci6bb080b2018-11-28 17:23:41 +0100586
Radek Krejci096235c2019-01-11 11:12:19 +0100587 assert_null(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));
Radek Krejcia1911222019-07-22 17:24:50 +0200588 logbuf_assert("Invalid leaf-lists's default value \"x\" which does not fit the type (Invalid empty value \"x\".). /bb:ll");
Radek Krejci6bb080b2018-11-28 17:23:41 +0100589
590 assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;"
591 "leaf-list ll {config false;type string; default one;default two;default one;}}", LYS_IN_YANG));
Radek Krejci6bb080b2018-11-28 17:23:41 +0100592 assert_non_null(mod->compiled);
593 assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data));
594 assert_non_null(ll->dflts);
595 assert_int_equal(3, LY_ARRAY_SIZE(ll->dflts));
Radek Krejci096235c2019-01-11 11:12:19 +0100596 assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;"
597 "leaf-list ll {type string; default one;default two;default one;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200598 logbuf_assert("Configuration leaf-list has multiple defaults of the same value \"one\". /dd:ll");
Radek Krejci6bb080b2018-11-28 17:23:41 +0100599
Radek Krejci1c0c3442019-07-23 16:08:47 +0200600 assert_null(lys_parse_mem(ctx, "module ee {yang-version 1.1; namespace urn:ee;prefix ee;"
601 "leaf ref {type instance-identifier {require-instance true;} default \"/ee:g\";}}", LYS_IN_YANG));
602 logbuf_assert("Invalid default - value does not fit the type "
603 "(Invalid instance-identifier \"/ee:g\" value - path \"/ee:g\" does not exists in the YANG schema.). /ee:ref");
604
Radek Krejci0e5d8382018-11-28 16:37:53 +0100605 *state = NULL;
606 ly_ctx_destroy(ctx, NULL);
607}
608
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100609static void
610test_node_list(void **state)
611{
612 *state = test_node_list;
613
614 struct ly_ctx *ctx;
615 struct lys_module *mod;
616 struct lysc_node_list *list;
Radek Krejci0fe9b512019-07-26 17:51:05 +0200617 struct lysc_node *child;
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100618
619 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
620
621 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
Radek Krejci0fe9b512019-07-26 17:51:05 +0200622 "list l1 {key \"x y\"; ordered-by user; leaf y{type string;if-feature f;} leaf x {type string; when 1;}}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100623 "list l2 {config false;leaf value {type string;}}}", LYS_IN_YANG));
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100624 list = (struct lysc_node_list*)mod->compiled->data;
625 assert_non_null(list);
Radek Krejci0fe9b512019-07-26 17:51:05 +0200626 assert_non_null(list->child);
627 assert_string_equal("x", list->child->name);
628 assert_true(list->child->flags & LYS_KEY);
629 assert_string_equal("y", list->child->next->name);
630 assert_true(list->child->next->flags & LYS_KEY);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100631 assert_non_null(list->child);
632 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, list->flags);
633 assert_true(list->child->flags & LYS_KEY);
634 assert_true(list->child->next->flags & LYS_KEY);
635 list = (struct lysc_node_list*)mod->compiled->data->next;
636 assert_non_null(list);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100637 assert_non_null(list->child);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100638 assert_false(list->child->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +0200639 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_CONFIG | LYS_KEYLESS, list->flags);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100640
641 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;"
642 "list l {key a; unique \"a c/b:b\"; unique \"c/e d\";"
Radek Krejci665421c2018-12-05 08:03:39 +0100643 "leaf a {type string; default x;} leaf d {type string;config false;}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100644 "container c {leaf b {type string;}leaf e{type string;config false;}}}}", LYS_IN_YANG));
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100645 list = (struct lysc_node_list*)mod->compiled->data;
646 assert_non_null(list);
647 assert_string_equal("l", list->name);
Radek Krejci0fe9b512019-07-26 17:51:05 +0200648 assert_string_equal("a", list->child->name);
649 assert_true(list->child->flags & LYS_KEY);
650 assert_null(((struct lysc_node_leaf*)list->child)->dflt);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100651 assert_non_null(list->uniques);
652 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques));
653 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0]));
654 assert_string_equal("a", list->uniques[0][0]->name);
655 assert_true(list->uniques[0][0]->flags & LYS_UNIQUE);
656 assert_string_equal("b", list->uniques[0][1]->name);
657 assert_true(list->uniques[0][1]->flags & LYS_UNIQUE);
658 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[1]));
659 assert_string_equal("e", list->uniques[1][0]->name);
660 assert_true(list->uniques[1][0]->flags & LYS_UNIQUE);
661 assert_string_equal("d", list->uniques[1][1]->name);
662 assert_true(list->uniques[1][1]->flags & LYS_UNIQUE);
663
Radek Krejci665421c2018-12-05 08:03:39 +0100664 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;"
665 "list l {key a;leaf a {type empty;}}}", LYS_IN_YANG));
Radek Krejci665421c2018-12-05 08:03:39 +0100666 list = (struct lysc_node_list*)mod->compiled->data;
667 assert_non_null(list);
668 assert_string_equal("l", list->name);
Radek Krejci0fe9b512019-07-26 17:51:05 +0200669 assert_string_equal("a", list->child->name);
670 assert_true(list->child->flags & LYS_KEY);
671 assert_int_equal(LY_TYPE_EMPTY, ((struct lysc_node_leaf*)list->child)->type->basetype);
672
673 /* keys order */
674 assert_non_null(mod = lys_parse_mem(ctx, "module d {yang-version 1.1;namespace urn:d;prefix d;"
675 "list l {key \"d b c\";leaf a {type string;} leaf b {type string;} leaf c {type string;} leaf d {type string;}}}", LYS_IN_YANG));
676 list = (struct lysc_node_list*)mod->compiled->data;
677 assert_non_null(list);
678 assert_string_equal("l", list->name);
679 assert_non_null(child = list->child);
680 assert_string_equal("d", child->name);
681 assert_true(child->flags & LYS_KEY);
682 assert_non_null(child = child->next);
683 assert_string_equal("b", child->name);
684 assert_true(child->flags & LYS_KEY);
685 assert_non_null(child = child->next);
686 assert_string_equal("c", child->name);
687 assert_true(child->flags & LYS_KEY);
688 assert_non_null(child = child->next);
689 assert_string_equal("a", child->name);
690 assert_false(child->flags & LYS_KEY);
Radek Krejci665421c2018-12-05 08:03:39 +0100691
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100692 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +0100693 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;list l;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200694 logbuf_assert("Missing key in list representing configuration data. /aa:l");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100695
Radek Krejci096235c2019-01-11 11:12:19 +0100696 assert_null(lys_parse_mem(ctx, "module bb {yang-version 1.1; namespace urn:bb;prefix bb;"
697 "list l {key x; leaf x {type string; when 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200698 logbuf_assert("List's key must not have any \"when\" statement. /bb:l/x");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100699
Radek Krejci096235c2019-01-11 11:12:19 +0100700 assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;feature f;"
701 "list l {key x; leaf x {type string; if-feature f;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200702 logbuf_assert("List's key must not have any \"if-feature\" statement. /cc:l/x");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100703
Radek Krejci096235c2019-01-11 11:12:19 +0100704 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;"
705 "list l {key x; leaf x {type string; config false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200706 logbuf_assert("Key of the configuration list must not be status leaf. /dd:l/x");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100707
Radek Krejci096235c2019-01-11 11:12:19 +0100708 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;"
709 "list l {config false;key x; leaf x {type string; config true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200710 logbuf_assert("Configuration node cannot be child of any state data node. /ee:l/x");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100711
Radek Krejci096235c2019-01-11 11:12:19 +0100712 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;"
713 "list l {key x; leaf-list x {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200714 logbuf_assert("The list's key \"x\" not found. /ff:l");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100715
Radek Krejci096235c2019-01-11 11:12:19 +0100716 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;"
717 "list l {key x; unique y;leaf x {type string;} leaf-list y {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200718 logbuf_assert("Unique's descendant-schema-nodeid \"y\" refers to leaf-list node instead of a leaf. /gg:l");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100719
Radek Krejci096235c2019-01-11 11:12:19 +0100720 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
721 "list l {key x; unique \"x y\";leaf x {type string;} leaf y {config false; type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200722 logbuf_assert("Unique statement \"x y\" refers to leafs with different config type. /hh:l");
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100723
Radek Krejci096235c2019-01-11 11:12:19 +0100724 assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;"
725 "list l {key x; unique a:x;leaf x {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200726 logbuf_assert("Invalid descendant-schema-nodeid value \"a:x\" - prefix \"a\" not defined in module \"ii\". /ii:l");
Radek Krejci665421c2018-12-05 08:03:39 +0100727
Radek Krejci096235c2019-01-11 11:12:19 +0100728 assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;"
729 "list l {key x; unique c/x;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200730 logbuf_assert("Invalid descendant-schema-nodeid value \"c/x\" - target node not found. /jj:l");
Radek Krejci665421c2018-12-05 08:03:39 +0100731
Radek Krejci096235c2019-01-11 11:12:19 +0100732 assert_null( lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
733 "list l {key x; unique c^y;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200734 logbuf_assert("Invalid descendant-schema-nodeid value \"c^\" - missing \"/\" as node-identifier separator. /kk:l");
Radek Krejci665421c2018-12-05 08:03:39 +0100735
Radek Krejci096235c2019-01-11 11:12:19 +0100736 assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
737 "list l {key \"x y x\";leaf x {type string;}leaf y {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200738 logbuf_assert("Duplicated key identifier \"x\". /ll:l");
Radek Krejci665421c2018-12-05 08:03:39 +0100739
Radek Krejci096235c2019-01-11 11:12:19 +0100740 assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;"
741 "list l {key x;leaf x {type empty;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200742 logbuf_assert("List's key cannot be of \"empty\" type until it is in YANG 1.1 module. /mm:l/x");
Radek Krejci665421c2018-12-05 08:03:39 +0100743
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100744 *state = NULL;
745 ly_ctx_destroy(ctx, NULL);
746}
747
Radek Krejci056d0a82018-12-06 16:57:25 +0100748static void
749test_node_choice(void **state)
750{
751 *state = test_node_choice;
752
753 struct ly_ctx *ctx;
754 struct lys_module *mod;
755 struct lysc_node_choice *ch;
756 struct lysc_node_case *cs;
757
758 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
759
760 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;"
Michal Vasko175012e2019-11-06 15:49:14 +0100761 "choice ch {default a:b; when a2; case a {leaf a1 {type string;}leaf a2 {type string;}}"
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100762 "leaf b {type string;}}}", LYS_IN_YANG));
Radek Krejci056d0a82018-12-06 16:57:25 +0100763 ch = (struct lysc_node_choice*)mod->compiled->data;
764 assert_non_null(ch);
Radek Krejci01342af2019-01-03 15:18:08 +0100765 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, ch->flags);
Michal Vasko175012e2019-11-06 15:49:14 +0100766 assert_int_equal(1, LY_ARRAY_SIZE(ch->when));
767 assert_null(ch->when[0]->context);
Radek Krejci056d0a82018-12-06 16:57:25 +0100768 cs = ch->cases;
769 assert_non_null(cs);
770 assert_string_equal("a", cs->name);
771 assert_ptr_equal(ch, cs->parent);
772 assert_non_null(cs->child);
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100773 assert_string_equal("a1", cs->child->name);
774 assert_non_null(cs->child->next);
775 assert_string_equal("a2", cs->child->next->name);
Radek Krejci056d0a82018-12-06 16:57:25 +0100776 assert_ptr_equal(cs, cs->child->parent);
777 cs = (struct lysc_node_case*)cs->next;
778 assert_non_null(cs);
779 assert_string_equal("b", cs->name);
Radek Krejci01342af2019-01-03 15:18:08 +0100780 assert_int_equal(LYS_STATUS_CURR | LYS_SET_DFLT, cs->flags);
Radek Krejci056d0a82018-12-06 16:57:25 +0100781 assert_ptr_equal(ch, cs->parent);
782 assert_non_null(cs->child);
783 assert_string_equal("b", cs->child->name);
784 assert_ptr_equal(cs, cs->child->parent);
Radek Krejci18f2b8a2018-12-12 16:41:21 +0100785 assert_ptr_equal(ch->cases->child->next, cs->child->prev);
786 assert_ptr_equal(ch->cases->child->next->next, cs->child);
Radek Krejci056d0a82018-12-06 16:57:25 +0100787 assert_ptr_equal(ch->cases->child->prev, cs->child);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100788 assert_ptr_equal(ch->dflt, cs);
Radek Krejci056d0a82018-12-06 16:57:25 +0100789
Radek Krejci096235c2019-01-11 11:12:19 +0100790 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
791 "choice ch {case a {leaf x {type string;}}leaf x {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200792 logbuf_assert("Duplicate identifier \"x\" of data definition/RPC/action/Notification statement. /aa:ch/x/x");
Radek Krejci096235c2019-01-11 11:12:19 +0100793 assert_null(lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa;"
794 "choice ch {case a {leaf y {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200795 logbuf_assert("Duplicate identifier \"y\" of data definition/RPC/action/Notification statement. /aa2:ch/b/y");
Radek Krejci096235c2019-01-11 11:12:19 +0100796 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
797 "choice ch {case a {leaf x {type string;}}leaf a {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200798 logbuf_assert("Duplicate identifier \"a\" of case statement. /bb:ch/a");
Radek Krejci096235c2019-01-11 11:12:19 +0100799 assert_null(lys_parse_mem(ctx, "module bb2 {namespace urn:bb2;prefix bb;"
800 "choice ch {case b {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200801 logbuf_assert("Duplicate identifier \"b\" of case statement. /bb2:ch/b");
Radek Krejci056d0a82018-12-06 16:57:25 +0100802
Radek Krejci096235c2019-01-11 11:12:19 +0100803 assert_null(lys_parse_mem(ctx, "module ca {namespace urn:ca;prefix ca;"
804 "choice ch {default c;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200805 logbuf_assert("Default case \"c\" not found. /ca:ch");
Radek Krejci096235c2019-01-11 11:12:19 +0100806 assert_null(lys_parse_mem(ctx, "module cb {namespace urn:cb;prefix cb; import a {prefix a;}"
807 "choice ch {default a:a;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200808 logbuf_assert("Invalid default case referencing a case from different YANG module (by prefix \"a\"). /cb:ch");
Radek Krejci096235c2019-01-11 11:12:19 +0100809 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
810 "choice ch {default a;case a {leaf x {mandatory true;type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200811 logbuf_assert("Mandatory node \"x\" under the default case \"a\". /cc:ch");
Radek Krejcia9026eb2018-12-12 16:04:47 +0100812 /* TODO check with mandatory nodes from augment placed into the case */
813
Radek Krejci056d0a82018-12-06 16:57:25 +0100814 *state = NULL;
815 ly_ctx_destroy(ctx, NULL);
816}
817
Radek Krejci9800fb82018-12-13 14:26:23 +0100818static void
819test_node_anydata(void **state)
820{
821 *state = test_node_anydata;
822
823 struct ly_ctx *ctx;
824 struct lys_module *mod;
825 struct lysc_node_anydata *any;
826
827 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
828
829 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;"
830 "anydata any {config false;mandatory true;}}", LYS_IN_YANG));
Radek Krejci9800fb82018-12-13 14:26:23 +0100831 any = (struct lysc_node_anydata*)mod->compiled->data;
832 assert_non_null(any);
833 assert_int_equal(LYS_ANYDATA, any->nodetype);
Radek Krejci93dcc392019-02-19 10:43:38 +0100834 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE | LYS_SET_CONFIG, any->flags);
Radek Krejci9800fb82018-12-13 14:26:23 +0100835
836 logbuf_clean();
837 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;"
838 "anyxml any;}", LYS_IN_YANG));
Radek Krejci9800fb82018-12-13 14:26:23 +0100839 any = (struct lysc_node_anydata*)mod->compiled->data;
840 assert_non_null(any);
841 assert_int_equal(LYS_ANYXML, any->nodetype);
842 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, any->flags);
843 logbuf_assert("Use of anyxml to define configuration data is not recommended."); /* warning */
844
845 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +0100846 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;anydata any;}", LYS_IN_YANG));
Radek Krejci9800fb82018-12-13 14:26:23 +0100847 logbuf_assert("Invalid keyword \"anydata\" as a child of \"module\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
848
849 *state = NULL;
850 ly_ctx_destroy(ctx, NULL);
851}
852
Radek Krejcif538ce52019-03-05 10:46:14 +0100853static void
854test_action(void **state)
855{
856 *state = test_action;
857
858 struct ly_ctx *ctx;
859 struct lys_module *mod;
860 const struct lysc_action *rpc;
861
862 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
863
864 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;"
865 "rpc a {input {leaf x {type int8;} leaf y {type int8;}} output {leaf result {type int16;}}}}", LYS_IN_YANG));
866 rpc = mod->compiled->rpcs;
867 assert_non_null(rpc);
868 assert_int_equal(1, LY_ARRAY_SIZE(rpc));
869 assert_int_equal(LYS_ACTION, rpc->nodetype);
870 assert_int_equal(LYS_STATUS_CURR, rpc->flags);
871 assert_string_equal("a", rpc->name);
872
873 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1; namespace urn:b;prefix b; container top {"
874 "action b {input {leaf x {type int8;} leaf y {type int8;}} output {leaf result {type int16;}}}}}", LYS_IN_YANG));
875 rpc = lysc_node_actions(mod->compiled->data);
876 assert_non_null(rpc);
877 assert_int_equal(1, LY_ARRAY_SIZE(rpc));
878 assert_int_equal(LYS_ACTION, rpc->nodetype);
879 assert_int_equal(LYS_STATUS_CURR, rpc->flags);
880 assert_string_equal("b", rpc->name);
881
882 /* invalid */
883 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container top {action x;}}", LYS_IN_YANG));
884 logbuf_assert("Invalid keyword \"action\" as a child of \"container\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
885
Radek Krejci8cce8532019-03-05 11:27:45 +0100886 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf x{type string;} rpc x;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200887 logbuf_assert("Duplicate identifier \"x\" of data definition/RPC/action/Notification statement. /bb:x");
Radek Krejci8cce8532019-03-05 11:27:45 +0100888 assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1; namespace urn:cc;prefix cc;container c {leaf y {type string;} action y;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200889 logbuf_assert("Duplicate identifier \"y\" of data definition/RPC/action/Notification statement. /cc:c/y");
Radek Krejci8cce8532019-03-05 11:27:45 +0100890 assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1; namespace urn:dd;prefix dd;container c {action z; action z;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200891 logbuf_assert("Duplicate identifier \"z\" of data definition/RPC/action/Notification statement. /dd:c/z");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200892 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule eesub {belongs-to ee {prefix ee;} notification w;}");
Radek Krejci8cce8532019-03-05 11:27:45 +0100893 assert_null(lys_parse_mem(ctx, "module ee {yang-version 1.1; namespace urn:ee;prefix ee;include eesub; rpc w;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200894 logbuf_assert("Duplicate identifier \"w\" of data definition/RPC/action/Notification statement. /ee:w");
Radek Krejci8cce8532019-03-05 11:27:45 +0100895
Radek Krejcifc11bd72019-04-11 16:00:05 +0200896 assert_null(lys_parse_mem(ctx, "module ff {yang-version 1.1; namespace urn:ff;prefix ff; rpc test {input {container a {leaf b {type string;}}}}"
897 "augment /test/input/a {action invalid {input {leaf x {type string;}}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200898 logbuf_assert("Action \"invalid\" is placed inside another RPC/action. /ff:{augment='/test/input/a'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200899
900 assert_null(lys_parse_mem(ctx, "module gg {yang-version 1.1; namespace urn:gg;prefix gg; notification test {container a {leaf b {type string;}}}"
901 "augment /test/a {action invalid {input {leaf x {type string;}}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200902 logbuf_assert("Action \"invalid\" is placed inside Notification. /gg:{augment='/test/a'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200903
904 assert_null(lys_parse_mem(ctx, "module hh {yang-version 1.1; namespace urn:hh;prefix hh; notification test {container a {uses grp;}}"
905 "grouping grp {action invalid {input {leaf x {type string;}}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200906 logbuf_assert("Action \"invalid\" is placed inside Notification. /hh:test/a/{uses='grp'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200907
908 *state = NULL;
909 ly_ctx_destroy(ctx, NULL);
910}
911
912static void
913test_notification(void **state)
914{
915 *state = test_notification;
916
917 struct ly_ctx *ctx;
918 struct lys_module *mod;
919 const struct lysc_notif *notif;
920
921 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
922
923 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;"
924 "notification a1 {leaf x {type int8;}} notification a2;}", LYS_IN_YANG));
925 notif = mod->compiled->notifs;
926 assert_non_null(notif);
927 assert_int_equal(2, LY_ARRAY_SIZE(notif));
928 assert_int_equal(LYS_NOTIF, notif->nodetype);
929 assert_int_equal(LYS_STATUS_CURR, notif->flags);
930 assert_string_equal("a1", notif->name);
931 assert_non_null(notif->data);
932 assert_string_equal("x", notif->data->name);
933 assert_int_equal(LYS_NOTIF, notif[1].nodetype);
934 assert_int_equal(LYS_STATUS_CURR, notif[1].flags);
935 assert_string_equal("a2", notif[1].name);
936 assert_null(notif[1].data);
937
938 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1; namespace urn:b;prefix b; container top {"
939 "notification b1 {leaf x {type int8;}} notification b2;}}", LYS_IN_YANG));
940 notif = lysc_node_notifs(mod->compiled->data);
941 assert_non_null(notif);
942 assert_int_equal(2, LY_ARRAY_SIZE(notif));
943 assert_int_equal(LYS_NOTIF, notif->nodetype);
944 assert_int_equal(LYS_STATUS_CURR, notif->flags);
945 assert_string_equal("b1", notif->name);
946 assert_non_null(notif->data);
947 assert_string_equal("x", notif->data->name);
948 assert_int_equal(LYS_NOTIF, notif[1].nodetype);
949 assert_int_equal(LYS_STATUS_CURR, notif[1].flags);
950 assert_string_equal("b2", notif[1].name);
951 assert_null(notif[1].data);
952
953 /* invalid */
954 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container top {notification x;}}", LYS_IN_YANG));
955 logbuf_assert("Invalid keyword \"notification\" as a child of \"container\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
956
957 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf x{type string;} notification x;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200958 logbuf_assert("Duplicate identifier \"x\" of data definition/RPC/action/Notification statement. /bb:x");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200959 assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1; namespace urn:cc;prefix cc;container c {leaf y {type string;} notification y;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200960 logbuf_assert("Duplicate identifier \"y\" of data definition/RPC/action/Notification statement. /cc:c/y");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200961 assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1; namespace urn:dd;prefix dd;container c {notification z; notification z;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200962 logbuf_assert("Duplicate identifier \"z\" of data definition/RPC/action/Notification statement. /dd:c/z");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200963 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule eesub {belongs-to ee {prefix ee;} rpc w;}");
964 assert_null(lys_parse_mem(ctx, "module ee {yang-version 1.1; namespace urn:ee;prefix ee;include eesub; notification w;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200965 logbuf_assert("Duplicate identifier \"w\" of data definition/RPC/action/Notification statement. /ee:w");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200966
967 assert_null(lys_parse_mem(ctx, "module ff {yang-version 1.1; namespace urn:ff;prefix ff; rpc test {input {container a {leaf b {type string;}}}}"
968 "augment /test/input/a {notification invalid {leaf x {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200969 logbuf_assert("Notification \"invalid\" is placed inside RPC/action. /ff:{augment='/test/input/a'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200970
971 assert_null(lys_parse_mem(ctx, "module gg {yang-version 1.1; namespace urn:gg;prefix gg; notification test {container a {leaf b {type string;}}}"
972 "augment /test/a {notification invalid {leaf x {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200973 logbuf_assert("Notification \"invalid\" is placed inside another Notification. /gg:{augment='/test/a'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200974
975 assert_null(lys_parse_mem(ctx, "module hh {yang-version 1.1; namespace urn:hh;prefix hh; rpc test {input {container a {uses grp;}}}"
976 "grouping grp {notification invalid {leaf x {type string;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +0200977 logbuf_assert("Notification \"invalid\" is placed inside RPC/action. /hh:test/input/a/{uses='grp'}/invalid");
Radek Krejcifc11bd72019-04-11 16:00:05 +0200978
Radek Krejcif538ce52019-03-05 10:46:14 +0100979 *state = NULL;
980 ly_ctx_destroy(ctx, NULL);
981}
982
Radek Krejci0f07bed2018-11-13 14:01:40 +0100983/**
984 * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types,
985 * do not test the expression itself
986 */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100987static void
Radek Krejci0f07bed2018-11-13 14:01:40 +0100988test_type_range(void **state)
Radek Krejci4f28eda2018-11-12 11:46:16 +0100989{
Radek Krejci0f07bed2018-11-13 14:01:40 +0100990 *state = test_type_range;
991
992 struct ly_ctx *ctx;
993 struct lys_module *mod;
994 struct lysc_type *type;
995
996 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
997
998 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +0100999 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1000 assert_non_null(type);
1001 assert_int_equal(LY_TYPE_INT8, type->basetype);
1002 assert_non_null(((struct lysc_type_num*)type)->range);
1003 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1004 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1005 assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64);
1006 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
1007 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64);
1008 assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64);
1009
1010 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001011 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1012 assert_non_null(type);
1013 assert_int_equal(LY_TYPE_INT16, type->basetype);
1014 assert_non_null(((struct lysc_type_num*)type)->range);
1015 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1016 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1017 assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64);
1018 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
1019 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64);
1020 assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64);
1021
1022 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001023 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1024 assert_non_null(type);
1025 assert_int_equal(LY_TYPE_INT32, type->basetype);
1026 assert_non_null(((struct lysc_type_num*)type)->range);
1027 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1028 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1029 assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64);
1030 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
1031 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64);
1032 assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64);
1033
1034 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001035 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1036 assert_non_null(type);
1037 assert_int_equal(LY_TYPE_INT64, type->basetype);
1038 assert_non_null(((struct lysc_type_num*)type)->range);
1039 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1040 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1041 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64);
1042 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64);
1043 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64);
1044 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64);
1045
1046 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001047 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1048 assert_non_null(type);
1049 assert_int_equal(LY_TYPE_UINT8, type->basetype);
1050 assert_non_null(((struct lysc_type_num*)type)->range);
1051 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1052 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1053 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
1054 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
1055 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
1056 assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
1057
1058 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001059 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1060 assert_non_null(type);
1061 assert_int_equal(LY_TYPE_UINT16, type->basetype);
1062 assert_non_null(((struct lysc_type_num*)type)->range);
1063 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1064 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1065 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
1066 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
1067 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64);
1068 assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64);
1069
1070 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001071 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1072 assert_non_null(type);
1073 assert_int_equal(LY_TYPE_UINT32, type->basetype);
1074 assert_non_null(((struct lysc_type_num*)type)->range);
1075 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1076 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1077 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
1078 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
1079 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
1080 assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
1081
1082 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));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001083 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1084 assert_non_null(type);
1085 assert_int_equal(LY_TYPE_UINT64, type->basetype);
1086 assert_non_null(((struct lysc_type_num*)type)->range);
1087 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1088 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1089 assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
1090 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
1091 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64);
1092 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64);
1093
1094 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}"
1095 "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG));
Radek Krejci0f07bed2018-11-13 14:01:40 +01001096 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1097 assert_non_null(type);
1098 assert_int_equal(3, type->refcount);
1099 assert_int_equal(LY_TYPE_UINT8, type->basetype);
1100 assert_non_null(((struct lysc_type_num*)type)->range);
1101 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1102 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1103
Radek Krejcif1394042019-01-08 10:53:34 +01001104 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;"
1105 "typedef mytype {type uint8 {range 1..100{description \"one to hundred\";reference A;}}}"
1106 "leaf l {type mytype {range 1..10 {description \"one to ten\";reference B;}}}}", LYS_IN_YANG));
Radek Krejcif1394042019-01-08 10:53:34 +01001107 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1108 assert_non_null(type);
1109 assert_int_equal(1, type->refcount);
1110 assert_int_equal(LY_TYPE_UINT8, type->basetype);
1111 assert_non_null(((struct lysc_type_num*)type)->range);
1112 assert_string_equal("one to ten", ((struct lysc_type_num*)type)->range->dsc);
1113 assert_string_equal("B", ((struct lysc_type_num*)type)->range->ref);
1114 assert_non_null(((struct lysc_type_num*)type)->range->parts);
1115 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts));
1116 assert_int_equal(1, ((struct lysc_type_num*)type)->range->parts[0].min_u64);
1117 assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64);
1118
Radek Krejci0f07bed2018-11-13 14:01:40 +01001119 *state = NULL;
1120 ly_ctx_destroy(ctx, NULL);
1121}
1122
1123static void
1124test_type_length(void **state)
1125{
1126 *state = test_type_length;
Radek Krejci4f28eda2018-11-12 11:46:16 +01001127
1128 struct ly_ctx *ctx;
1129 struct lys_module *mod;
1130 struct lysc_type *type;
1131
1132 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1133
Radek Krejcic5ddcc02018-11-12 13:28:18 +01001134 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 +01001135 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1136 assert_non_null(type);
1137 assert_non_null(((struct lysc_type_bin*)type)->length);
1138 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
Radek Krejcic5ddcc02018-11-12 13:28:18 +01001139 assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag);
1140 assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001141 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1142 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1143 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1144
1145 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type binary {length max;}}}", LYS_IN_YANG));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001146 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1147 assert_non_null(type);
1148 assert_non_null(((struct lysc_type_bin*)type)->length);
1149 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1150 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
Radek Krejci0fe20752018-11-27 11:33:24 +01001151 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1152 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001153
1154 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));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001155 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1156 assert_non_null(type);
1157 assert_non_null(((struct lysc_type_bin*)type)->length);
1158 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1159 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1160 assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci0fe20752018-11-27 11:33:24 +01001161 assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001162
1163 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type binary {length 5;}}}", LYS_IN_YANG));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001164 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1165 assert_non_null(type);
1166 assert_non_null(((struct lysc_type_bin*)type)->length);
1167 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1168 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1169 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1170 assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1171
1172 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));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001173 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1174 assert_non_null(type);
1175 assert_non_null(((struct lysc_type_bin*)type)->length);
1176 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1177 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1178 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1179 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1180
1181 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));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001182 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1183 assert_non_null(type);
1184 assert_non_null(((struct lysc_type_bin*)type)->length);
1185 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1186 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1187 assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1188 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1189 assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
1190 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
1191
1192 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));
Radek Krejci4f28eda2018-11-12 11:46:16 +01001193 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1194 assert_non_null(type);
1195 assert_non_null(((struct lysc_type_bin*)type)->length);
1196 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1197 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1198 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1199 assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1200 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
1201 assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
1202
Radek Krejcib31c8992018-11-12 16:29:16 +01001203 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}"
1204 "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +01001205 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1206 assert_non_null(type);
1207 assert_non_null(((struct lysc_type_bin*)type)->length);
1208 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1209 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1210 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1211 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1212
1213 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}"
1214 "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +01001215 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1216 assert_non_null(type);
1217 assert_non_null(((struct lysc_type_bin*)type)->length);
1218 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1219 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1220 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1221 assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1222
1223 assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}"
1224 "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +01001225 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1226 assert_non_null(type);
1227 assert_non_null(((struct lysc_type_bin*)type)->length);
1228 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1229 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1230 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1231 assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1232 assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64);
1233 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64);
1234
1235 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 +01001236 "leaf l {type mytype {length \"10..80\";}}leaf ll {type mytype;}}", LYS_IN_YANG));
Radek Krejcib31c8992018-11-12 16:29:16 +01001237 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1238 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001239 assert_int_equal(1, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +01001240 assert_non_null(((struct lysc_type_bin*)type)->length);
1241 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1242 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1243 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001244 assert_int_equal(80, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
Radek Krejcib31c8992018-11-12 16:29:16 +01001245 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1246 assert_non_null(type);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001247 assert_int_equal(2, type->refcount);
Radek Krejcib31c8992018-11-12 16:29:16 +01001248 assert_non_null(((struct lysc_type_bin*)type)->length);
1249 assert_non_null(((struct lysc_type_bin*)type)->length->parts);
1250 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts));
1251 assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64);
1252 assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64);
1253
Radek Krejci56aa27c2018-11-13 14:21:59 +01001254 assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}"
1255 "typedef mytype2 {type mytype {pattern '[0-9]*';}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
Radek Krejci9a191e62018-11-13 13:19:56 +01001256 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1257 assert_non_null(type);
1258 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejci56aa27c2018-11-13 14:21:59 +01001259 assert_int_equal(1, type->refcount);
Radek Krejcicda74152018-11-13 15:27:32 +01001260 assert_non_null(((struct lysc_type_str*)type)->length);
1261 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1262 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1263 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1264 assert_int_equal(100, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
Radek Krejci9a191e62018-11-13 13:19:56 +01001265
Radek Krejci5969f272018-11-23 10:03:58 +01001266 assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;typedef mytype {type string {length 10;}}"
1267 "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG));
Radek Krejci5969f272018-11-23 10:03:58 +01001268 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1269 assert_non_null(type);
1270 assert_int_equal(LY_TYPE_STRING, type->basetype);
1271 assert_int_equal(1, type->refcount);
1272 assert_non_null(((struct lysc_type_str*)type)->length);
1273 assert_non_null(((struct lysc_type_str*)type)->length->parts);
1274 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts));
1275 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64);
1276 assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].max_u64);
1277
Radek Krejci4f28eda2018-11-12 11:46:16 +01001278 /* invalid values */
Radek Krejci096235c2019-01-11 11:12:19 +01001279 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001280 logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations. /aa:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001281 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001282 logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\". /bb:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001283 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;leaf l {type binary {length \"max .. 10\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001284 logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10). /cc:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001285 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf l {type binary {length 50..10;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001286 logbuf_assert("Invalid length restriction - values are not in ascending order (10). /dd:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001287 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type binary {length \"50 | 10\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001288 logbuf_assert("Invalid length restriction - values are not in ascending order (10). /ee:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001289 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001290 logbuf_assert("Invalid length restriction - unexpected data (x). /ff:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001291 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type binary {length \"50 | min\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001292 logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | ). /gg:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001293 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001294 logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50). /hh:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001295 assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001296 logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..). /ii:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001297 assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001298 logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound. /jj:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001299 assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001300 logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |). /kk:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001301 assert_null(lys_parse_mem(ctx, "module kl {namespace urn:kl;prefix kl;leaf l {type binary {length \"10..20 | 15..30\";}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001302 logbuf_assert("Invalid length restriction - values are not in ascending order (15). /kl:l");
Radek Krejcib31c8992018-11-12 16:29:16 +01001303
Radek Krejci096235c2019-01-11 11:12:19 +01001304 assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}"
1305 "leaf l {type mytype {length 11;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001306 logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting. /ll:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001307 assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}"
1308 "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001309 logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting. /mm:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001310 assert_null(lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}"
1311 "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001312 logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting. /nn:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001313 assert_null(lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}"
1314 "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001315 logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting. /oo:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001316 assert_null(lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}"
Radek Krejcib31c8992018-11-12 16:29:16 +01001317 "leaf l {type mytype {length 15;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001318 logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting. /pp:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001319 assert_null(lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}"
Radek Krejcib31c8992018-11-12 16:29:16 +01001320 "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001321 logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting. /qq:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001322 assert_null(lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}"
Radek Krejci6489bbe2018-11-12 17:05:19 +01001323 "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001324 logbuf_assert("Invalid length restriction - the derived restriction (10..35) is not equally or more limiting. /rr:l");
Radek Krejcib31c8992018-11-12 16:29:16 +01001325
Radek Krejci327de162019-06-14 12:52:07 +02001326 assert_null(lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;leaf l {type binary {pattern '[0-9]*';}}}", LYS_IN_YANG));
1327 logbuf_assert("Invalid type restrictions for binary type. /ss:l");
Radek Krejci495903e2018-11-13 11:30:45 +01001328
Radek Krejci4f28eda2018-11-12 11:46:16 +01001329 *state = NULL;
1330 ly_ctx_destroy(ctx, NULL);
1331}
1332
Radek Krejcicda74152018-11-13 15:27:32 +01001333static void
1334test_type_pattern(void **state)
1335{
1336 *state = test_type_pattern;
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;leaf l {type string {"
Radek Krejcicda74152018-11-13 15:27:32 +01001345 "pattern .* {error-app-tag errortag;error-message error;}"
1346 "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG));
Radek Krejcicda74152018-11-13 15:27:32 +01001347 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1348 assert_non_null(type);
1349 assert_non_null(((struct lysc_type_str*)type)->patterns);
1350 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
1351 assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag);
1352 assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg);
Radek Krejci54579462019-04-30 12:47:06 +02001353 assert_string_equal(".*", ((struct lysc_type_str*)type)->patterns[0]->expr);
Radek Krejcicda74152018-11-13 15:27:32 +01001354 assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted);
1355 assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag);
1356 assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg);
Radek Krejci54579462019-04-30 12:47:06 +02001357 assert_string_equal("[0-9].*[0-9]", ((struct lysc_type_str*)type)->patterns[1]->expr);
Radek Krejcicda74152018-11-13 15:27:32 +01001358 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted);
1359
1360 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}"
1361 "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG));
Radek Krejcicda74152018-11-13 15:27:32 +01001362 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1363 assert_non_null(type);
1364 assert_int_equal(LY_TYPE_STRING, type->basetype);
1365 assert_int_equal(1, type->refcount);
1366 assert_non_null(((struct lysc_type_str*)type)->patterns);
1367 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
Radek Krejci54579462019-04-30 12:47:06 +02001368 assert_string_equal("[0-9]*", ((struct lysc_type_str*)type)->patterns[0]->expr);
Radek Krejcicda74152018-11-13 15:27:32 +01001369 assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount);
Radek Krejci54579462019-04-30 12:47:06 +02001370 assert_string_equal("[0-4]*", ((struct lysc_type_str*)type)->patterns[1]->expr);
Radek Krejcicda74152018-11-13 15:27:32 +01001371 assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount);
1372
Radek Krejci04bc1e92018-11-14 14:28:13 +01001373 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}"
1374 "leaf l {type mytype {length 10;}}}", LYS_IN_YANG));
Radek Krejci04bc1e92018-11-14 14:28:13 +01001375 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1376 assert_non_null(type);
1377 assert_int_equal(LY_TYPE_STRING, type->basetype);
1378 assert_int_equal(1, type->refcount);
1379 assert_non_null(((struct lysc_type_str*)type)->patterns);
1380 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
Radek Krejci54579462019-04-30 12:47:06 +02001381 assert_string_equal("[0-9]*", ((struct lysc_type_str*)type)->patterns[0]->expr);
Radek Krejci04bc1e92018-11-14 14:28:13 +01001382 assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount);
1383
Radek Krejcicda74152018-11-13 15:27:32 +01001384 /* test substitutions */
Radek Krejci04bc1e92018-11-14 14:28:13 +01001385 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 +01001386 "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG));
Radek Krejcicda74152018-11-13 15:27:32 +01001387 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1388 assert_non_null(type);
1389 assert_non_null(((struct lysc_type_str*)type)->patterns);
1390 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns));
Radek Krejci54579462019-04-30 12:47:06 +02001391 assert_string_equal("^\\p{IsLatinExtended-A}$", ((struct lysc_type_str*)type)->patterns[0]->expr);
Radek Krejcicda74152018-11-13 15:27:32 +01001392 /* TODO check some data "^ř$" */
1393
1394 *state = NULL;
1395 ly_ctx_destroy(ctx, NULL);
1396}
1397
Radek Krejci8b764662018-11-14 14:15:13 +01001398static void
1399test_type_enum(void **state)
1400{
1401 *state = test_type_enum;
1402
1403 struct ly_ctx *ctx;
1404 struct lys_module *mod;
1405 struct lysc_type *type;
1406
1407 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1408
Radek Krejci027d5802018-11-14 16:57:28 +01001409 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 +01001410 "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}"
1411 "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG));
Radek Krejci8b764662018-11-14 14:15:13 +01001412 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1413 assert_non_null(type);
1414 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1415 assert_non_null(((struct lysc_type_enum*)type)->enums);
1416 assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1417 assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures);
1418 assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name);
1419 assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value);
1420 assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name);
1421 assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value);
1422 assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name);
1423 assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value);
1424 assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name);
1425 assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value);
1426 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name);
1427 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value);
1428 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name);
1429 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value);
1430
Radek Krejci027d5802018-11-14 16:57:28 +01001431 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 {"
1432 "enum 11; enum min {value -2147483648;}enum x$&;"
Radek Krejci8b764662018-11-14 14:15:13 +01001433 "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}",
1434 LYS_IN_YANG));
Radek Krejci8b764662018-11-14 14:15:13 +01001435 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1436 assert_non_null(type);
1437 assert_int_equal(LY_TYPE_ENUM, type->basetype);
1438 assert_non_null(((struct lysc_type_enum*)type)->enums);
1439 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums));
1440 assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name);
1441 assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value);
1442 assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name);
1443 assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value);
1444
1445
1446 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001447 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {"
1448 "enum one {if-feature f;}}}}", LYS_IN_YANG));
1449 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 +01001450 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1451 "enum one {value -2147483649;}}}}", LYS_IN_YANG));
1452 logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1.");
1453 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1454 "enum one {value 2147483648;}}}}", LYS_IN_YANG));
1455 logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1.");
1456 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1457 "enum one; enum one;}}}", LYS_IN_YANG));
1458 logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1.");
1459 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1460 "enum '';}}}", LYS_IN_YANG));
1461 logbuf_assert("Enum name must not be zero-length. Line number 1.");
1462 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1463 "enum ' x';}}}", LYS_IN_YANG));
1464 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1.");
1465 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1466 "enum 'x ';}}}", LYS_IN_YANG));
1467 logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1.");
1468 assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {"
1469 "enum 'inva\nlid';}}}", LYS_IN_YANG));
1470 logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5).");
1471
Radek Krejci096235c2019-01-11 11:12:19 +01001472 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001473 logbuf_assert("Missing enum substatement for enumeration type. /bb:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001474
Radek Krejci096235c2019-01-11 11:12:19 +01001475 assert_null(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 +01001476 "leaf l {type mytype {enum two;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001477 logbuf_assert("Invalid enumeration - derived type adds new item \"two\". /cc:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001478
Radek Krejci096235c2019-01-11 11:12:19 +01001479 assert_null(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 +01001480 "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001481 logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type. /dd:l");
Radek Krejci096235c2019-01-11 11:12:19 +01001482 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type enumeration {enum x {value 2147483647;}enum y;}}}",
Radek Krejci8b764662018-11-14 14:15:13 +01001483 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001484 logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647. /ee:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001485
Radek Krejci096235c2019-01-11 11:12:19 +01001486 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type enumeration {enum x {value 1;}enum y {value 1;}}}}",
Radek Krejci8b764662018-11-14 14:15:13 +01001487 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001488 logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\". /ff:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001489
Radek Krejci096235c2019-01-11 11:12:19 +01001490 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}"
Radek Krejci04bc1e92018-11-14 14:28:13 +01001491 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001492 logbuf_assert("Missing enum substatement for enumeration type mytype. /gg:l");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001493
Radek Krejci096235c2019-01-11 11:12:19 +01001494 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}"
Radek Krejci027d5802018-11-14 16:57:28 +01001495 "leaf l {type mytype {enum one;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001496 logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules. /hh:l");
Radek Krejci027d5802018-11-14 16:57:28 +01001497
Radek Krejci8b764662018-11-14 14:15:13 +01001498 *state = NULL;
1499 ly_ctx_destroy(ctx, NULL);
1500}
1501
1502static void
1503test_type_bits(void **state)
1504{
1505 *state = test_type_bits;
1506
1507 struct ly_ctx *ctx;
1508 struct lys_module *mod;
1509 struct lysc_type *type;
1510
1511 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1512
Radek Krejci027d5802018-11-14 16:57:28 +01001513 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 +01001514 "bit automin; bit one {if-feature f; position 1;}"
1515 "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG));
Radek Krejci8b764662018-11-14 14:15:13 +01001516 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1517 assert_non_null(type);
1518 assert_int_equal(LY_TYPE_BITS, type->basetype);
1519 assert_non_null(((struct lysc_type_bits*)type)->bits);
1520 assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1521 assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures);
1522 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1523 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1524 assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name);
1525 assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position);
1526 assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name);
1527 assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position);
1528 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name);
1529 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position);
1530 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name);
1531 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position);
1532
Radek Krejci027d5802018-11-14 16:57:28 +01001533 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 {"
David Sedlák9fb515f2019-07-11 10:33:58 +02001534 "bit automin; bit one;bit two; bit seven {position 7;}bit eight;}} leaf l { type mytype {bit eight;bit seven;bit automin;}}}",
Radek Krejci8b764662018-11-14 14:15:13 +01001535 LYS_IN_YANG));
Radek Krejci8b764662018-11-14 14:15:13 +01001536 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1537 assert_non_null(type);
1538 assert_int_equal(LY_TYPE_BITS, type->basetype);
1539 assert_non_null(((struct lysc_type_bits*)type)->bits);
Radek Krejci027d5802018-11-14 16:57:28 +01001540 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits));
1541 assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name);
1542 assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position);
1543 assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name);
1544 assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position);
1545 assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name);
1546 assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position);
Radek Krejci8b764662018-11-14 14:15:13 +01001547
1548
1549 /* invalid cases */
Radek Krejci027d5802018-11-14 16:57:28 +01001550 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {"
1551 "bit one {if-feature f;}}}}", LYS_IN_YANG));
1552 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 +01001553 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1554 "bit one {position -1;}}}}", LYS_IN_YANG));
1555 logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1.");
1556 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
David Sedlák9fb515f2019-07-11 10:33:58 +02001557 "bit one {position 4294967296;}}}}", LYS_IN_YANG));
1558 logbuf_assert("Invalid value \"4294967296\" of \"position\". Line number 1.");
Radek Krejci8b764662018-11-14 14:15:13 +01001559 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1560 "bit one; bit one;}}}", LYS_IN_YANG));
1561 logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1.");
1562 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1563 "bit '11';}}}", LYS_IN_YANG));
1564 logbuf_assert("Invalid identifier first character '1'. Line number 1.");
1565 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {"
1566 "bit 'x1$1';}}}", LYS_IN_YANG));
1567 logbuf_assert("Invalid identifier character '$'. Line number 1.");
1568
Radek Krejci096235c2019-01-11 11:12:19 +01001569 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001570 logbuf_assert("Missing bit substatement for bits type. /bb:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001571
Radek Krejci096235c2019-01-11 11:12:19 +01001572 assert_null(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 +01001573 "leaf l {type mytype {bit two;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001574 logbuf_assert("Invalid bits - derived type adds new item \"two\". /cc:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001575
Radek Krejci096235c2019-01-11 11:12:19 +01001576 assert_null(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 +01001577 "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001578 logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type. /dd:l");
1579 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type bits {bit x {position 4294967295;}bit y;}}}", LYS_IN_YANG));
1580 logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295. /ee:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001581
David Sedlák9fb515f2019-07-11 10:33:58 +02001582 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type bits {bit x {position 1;}bit y {position 1;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001583 logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\". /ff:l");
Radek Krejci8b764662018-11-14 14:15:13 +01001584
Radek Krejci096235c2019-01-11 11:12:19 +01001585 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}"
Radek Krejci04bc1e92018-11-14 14:28:13 +01001586 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001587 logbuf_assert("Missing bit substatement for bits type mytype. /gg:l");
Radek Krejci04bc1e92018-11-14 14:28:13 +01001588
Radek Krejci096235c2019-01-11 11:12:19 +01001589 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}"
Radek Krejci027d5802018-11-14 16:57:28 +01001590 "leaf l {type mytype {bit one;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001591 logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules. /hh:l");
Radek Krejci027d5802018-11-14 16:57:28 +01001592
Radek Krejci8b764662018-11-14 14:15:13 +01001593 *state = NULL;
1594 ly_ctx_destroy(ctx, NULL);
1595}
1596
Radek Krejci6cba4292018-11-15 17:33:29 +01001597static void
1598test_type_dec64(void **state)
1599{
1600 *state = test_type_dec64;
1601
1602 struct ly_ctx *ctx;
1603 struct lys_module *mod;
1604 struct lysc_type *type;
1605
1606 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1607
1608 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type decimal64 {"
1609 "fraction-digits 2;range min..max;}}}", LYS_IN_YANG));
Radek Krejci6cba4292018-11-15 17:33:29 +01001610 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1611 assert_non_null(type);
1612 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1613 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1614 assert_non_null(((struct lysc_type_dec*)type)->range);
1615 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1616 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1617 assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1618 assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1619
1620 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type decimal64 {"
1621 "fraction-digits 2;range '3.14 | 5.1 | 10';}}leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci6cba4292018-11-15 17:33:29 +01001622 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1623 assert_non_null(type);
1624 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1625 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1626 assert_non_null(((struct lysc_type_dec*)type)->range);
1627 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1628 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1629 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1630 assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1631 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].min_64);
1632 assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].max_64);
1633 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].min_64);
1634 assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].max_64);
1635
Radek Krejci943177f2019-06-14 16:32:43 +02001636 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type decimal64 {"
1637 "fraction-digits 2;range '1 .. 65535';}}leaf l {type mytype;}}", LYS_IN_YANG));
1638 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1639 assert_int_equal(LY_TYPE_DEC64, type->basetype);
1640 assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits);
1641 assert_non_null(((struct lysc_type_dec*)type)->range);
1642 assert_non_null(((struct lysc_type_dec*)type)->range->parts);
1643 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts));
1644 assert_int_equal(100, ((struct lysc_type_dec*)type)->range->parts[0].min_64);
1645 assert_int_equal(6553500, ((struct lysc_type_dec*)type)->range->parts[0].max_64);
1646
Radek Krejci6cba4292018-11-15 17:33:29 +01001647 /* invalid cases */
1648 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 0;}}}", LYS_IN_YANG));
1649 logbuf_assert("Invalid value \"0\" of \"fraction-digits\". Line number 1.");
1650 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits -1;}}}", LYS_IN_YANG));
1651 logbuf_assert("Invalid value \"-1\" of \"fraction-digits\". Line number 1.");
1652 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 19;}}}", LYS_IN_YANG));
1653 logbuf_assert("Value \"19\" is out of \"fraction-digits\" bounds. Line number 1.");
1654
Radek Krejci096235c2019-01-11 11:12:19 +01001655 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001656 logbuf_assert("Missing fraction-digits substatement for decimal64 type. /aa:l");
Radek Krejci6cba4292018-11-15 17:33:29 +01001657
Radek Krejci096235c2019-01-11 11:12:19 +01001658 assert_null(lys_parse_mem(ctx, "module ab {namespace urn:ab;prefix ab; typedef mytype {type decimal64;}leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001659 logbuf_assert("Missing fraction-digits substatement for decimal64 type mytype. /ab:l");
Radek Krejci643c8242018-11-15 17:51:11 +01001660
Radek Krejci096235c2019-01-11 11:12:19 +01001661 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type decimal64 {fraction-digits 2;"
Radek Krejci6cba4292018-11-15 17:33:29 +01001662 "range '3.142';}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001663 logbuf_assert("Range boundary \"3.142\" of decimal64 type exceeds defined number (2) of fraction digits. /bb:l");
Radek Krejci6cba4292018-11-15 17:33:29 +01001664
Radek Krejci096235c2019-01-11 11:12:19 +01001665 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; leaf l {type decimal64 {fraction-digits 2;"
Radek Krejci6cba4292018-11-15 17:33:29 +01001666 "range '4 | 3.14';}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001667 logbuf_assert("Invalid range restriction - values are not in ascending order (3.14). /cc:l");
Radek Krejci6cba4292018-11-15 17:33:29 +01001668
Radek Krejci096235c2019-01-11 11:12:19 +01001669 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; typedef mytype {type decimal64 {fraction-digits 2;}}"
Radek Krejci643c8242018-11-15 17:51:11 +01001670 "leaf l {type mytype {fraction-digits 3;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001671 logbuf_assert("Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type. /dd:l");
Radek Krejci643c8242018-11-15 17:51:11 +01001672
Radek Krejci096235c2019-01-11 11:12:19 +01001673 assert_null(lys_parse_mem(ctx, "module de {namespace urn:de;prefix de; typedef mytype {type decimal64 {fraction-digits 2;}}"
Radek Krejci643c8242018-11-15 17:51:11 +01001674 "typedef mytype2 {type mytype {fraction-digits 3;}}leaf l {type mytype2;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001675 logbuf_assert("Invalid fraction-digits substatement for type \"mytype2\" not directly derived from decimal64 built-in type. /de:l");
Radek Krejci643c8242018-11-15 17:51:11 +01001676
Radek Krejci943177f2019-06-14 16:32:43 +02001677 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:c;prefix c;typedef mytype {type decimal64 {"
1678 "fraction-digits 18;range '-10 .. 0';}}leaf l {type mytype;}}", LYS_IN_YANG));
1679 logbuf_assert("Invalid range restriction - invalid value \"-10000000000000000000\". /ee:l");
1680 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:c;prefix c;typedef mytype {type decimal64 {"
1681 "fraction-digits 18;range '0 .. 10';}}leaf l {type mytype;}}", LYS_IN_YANG));
1682 logbuf_assert("Invalid range restriction - invalid value \"10000000000000000000\". /ee:l");
1683
Radek Krejci6cba4292018-11-15 17:33:29 +01001684 *state = NULL;
1685 ly_ctx_destroy(ctx, NULL);
1686}
1687
Radek Krejci16c0f822018-11-16 10:46:10 +01001688static void
1689test_type_instanceid(void **state)
1690{
1691 *state = test_type_instanceid;
1692
1693 struct ly_ctx *ctx;
1694 struct lys_module *mod;
1695 struct lysc_type *type;
1696
1697 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1698
1699 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;typedef mytype {type instance-identifier {require-instance false;}}"
1700 "leaf l1 {type instance-identifier {require-instance true;}}"
1701 "leaf l2 {type mytype;} leaf l3 {type instance-identifier;}}", LYS_IN_YANG));
Radek Krejci16c0f822018-11-16 10:46:10 +01001702 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1703 assert_non_null(type);
1704 assert_int_equal(LY_TYPE_INST, type->basetype);
1705 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1706
1707 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1708 assert_non_null(type);
1709 assert_int_equal(LY_TYPE_INST, type->basetype);
1710 assert_int_equal(0, ((struct lysc_type_instanceid*)type)->require_instance);
1711
1712 type = ((struct lysc_node_leaf*)mod->compiled->data->next->next)->type;
1713 assert_non_null(type);
1714 assert_int_equal(LY_TYPE_INST, type->basetype);
1715 assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance);
1716
1717 /* invalid cases */
1718 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {require-instance yes;}}}", LYS_IN_YANG));
1719 logbuf_assert("Invalid value \"yes\" of \"require-instance\". Line number 1.");
1720
Radek Krejci096235c2019-01-11 11:12:19 +01001721 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {fraction-digits 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001722 logbuf_assert("Invalid type restrictions for instance-identifier type. /aa:l");
Radek Krejci16c0f822018-11-16 10:46:10 +01001723
1724 *state = NULL;
1725 ly_ctx_destroy(ctx, NULL);
1726}
1727
Radek Krejci555cb5b2018-11-16 14:54:33 +01001728static void
1729test_type_identityref(void **state)
1730{
1731 *state = test_type_identityref;
1732
1733 struct ly_ctx *ctx;
1734 struct lys_module *mod;
1735 struct lysc_type *type;
1736
1737 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1738
1739 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;}"
1740 "typedef mytype {type identityref {base i;}}"
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001741 "leaf l1 {type mytype;} leaf l2 {type identityref {base a:k; base j;}}}", LYS_IN_YANG));
Radek Krejci555cb5b2018-11-16 14:54:33 +01001742 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1743 assert_non_null(type);
1744 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1745 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1746 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1747 assert_string_equal("i", ((struct lysc_type_identityref*)type)->bases[0]->name);
1748
1749 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1750 assert_non_null(type);
1751 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1752 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1753 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1754 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1755 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1756
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001757 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import a {prefix a;}"
1758 "leaf l {type identityref {base a:k; base a:j;}}}", LYS_IN_YANG));
Radek Krejcib83ea3e2018-11-23 14:29:13 +01001759 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1760 assert_non_null(type);
1761 assert_int_equal(LY_TYPE_IDENT, type->basetype);
1762 assert_non_null(((struct lysc_type_identityref*)type)->bases);
1763 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases));
1764 assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name);
1765 assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name);
1766
Radek Krejci555cb5b2018-11-16 14:54:33 +01001767 /* invalid cases */
Radek Krejci096235c2019-01-11 11:12:19 +01001768 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type identityref;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001769 logbuf_assert("Missing base substatement for identityref type. /aa:l");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001770
Radek Krejci096235c2019-01-11 11:12:19 +01001771 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; typedef mytype {type identityref;}"
Radek Krejci555cb5b2018-11-16 14:54:33 +01001772 "leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001773 logbuf_assert("Missing base substatement for identityref type mytype. /bb:l");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001774
Radek Krejci096235c2019-01-11 11:12:19 +01001775 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; identity i; typedef mytype {type identityref {base i;}}"
Radek Krejci555cb5b2018-11-16 14:54:33 +01001776 "leaf l {type mytype {base i;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001777 logbuf_assert("Invalid base substatement for the type not directly derived from identityref built-in type. /cc:l");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001778
Radek Krejci096235c2019-01-11 11:12:19 +01001779 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; identity i; typedef mytype {type identityref {base i;}}"
Radek Krejci555cb5b2018-11-16 14:54:33 +01001780 "typedef mytype2 {type mytype {base i;}}leaf l {type mytype2;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001781 logbuf_assert("Invalid base substatement for the type \"mytype2\" not directly derived from identityref built-in type. /dd:l");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001782
Radek Krejci096235c2019-01-11 11:12:19 +01001783 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; identity i; identity j;"
Radek Krejci555cb5b2018-11-16 14:54:33 +01001784 "leaf l {type identityref {base i;base j;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001785 logbuf_assert("Multiple bases in identityref type are allowed only in YANG 1.1 modules. /ee:l");
Radek Krejci555cb5b2018-11-16 14:54:33 +01001786
Radek Krejci096235c2019-01-11 11:12:19 +01001787 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff; identity i;leaf l {type identityref {base j;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001788 logbuf_assert("Unable to find base (j) of identityref. /ff:l");
Radek Krejci322614f2018-11-16 15:05:44 +01001789
Radek Krejci096235c2019-01-11 11:12:19 +01001790 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type identityref {base x:j;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02001791 logbuf_assert("Invalid prefix used for base (x:j) of identityref. /gg:l");
Radek Krejci322614f2018-11-16 15:05:44 +01001792
Radek Krejci555cb5b2018-11-16 14:54:33 +01001793 *state = NULL;
1794 ly_ctx_destroy(ctx, NULL);
1795}
1796
Radek Krejcia3045382018-11-22 14:30:31 +01001797static void
1798test_type_leafref(void **state)
1799{
1800 *state = test_type_leafref;
1801
1802 struct ly_ctx *ctx;
1803 struct lys_module *mod;
1804 struct lysc_type *type;
1805 const char *path, *name, *prefix;
1806 size_t prefix_len, name_len;
1807 int parent_times, has_predicate;
1808
1809 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
1810
1811 /* lys_path_token() */
1812 path = "invalid_path";
1813 parent_times = 0;
1814 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1815 path = "..";
1816 parent_times = 0;
1817 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1818 path = "..[";
1819 parent_times = 0;
1820 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1821 path = "../";
1822 parent_times = 0;
1823 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1824 path = "/";
1825 parent_times = 0;
1826 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1827
1828 path = "../../pref:id/xxx[predicate]/invalid!!!";
1829 parent_times = 0;
1830 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1831 assert_string_equal("/xxx[predicate]/invalid!!!", path);
1832 assert_int_equal(4, prefix_len);
1833 assert_int_equal(0, strncmp("pref", prefix, prefix_len));
1834 assert_int_equal(2, name_len);
1835 assert_int_equal(0, strncmp("id", name, name_len));
1836 assert_int_equal(2, parent_times);
1837 assert_int_equal(0, has_predicate);
1838 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1839 assert_string_equal("[predicate]/invalid!!!", path);
1840 assert_int_equal(0, prefix_len);
1841 assert_null(prefix);
1842 assert_int_equal(3, name_len);
1843 assert_int_equal(0, strncmp("xxx", name, name_len));
1844 assert_int_equal(1, has_predicate);
1845 path += 11;
1846 assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1847 assert_string_equal("!!!", path);
1848 assert_int_equal(0, prefix_len);
1849 assert_null(prefix);
1850 assert_int_equal(7, name_len);
1851 assert_int_equal(0, strncmp("invalid", name, name_len));
1852
1853 path = "/absolute/prefix:path";
1854 parent_times = 0;
1855 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1856 assert_string_equal("/prefix:path", path);
1857 assert_int_equal(0, prefix_len);
1858 assert_null(prefix);
1859 assert_int_equal(8, name_len);
1860 assert_int_equal(0, strncmp("absolute", name, name_len));
1861 assert_int_equal(-1, parent_times);
1862 assert_int_equal(0, has_predicate);
1863 assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate));
1864 assert_int_equal(0, *path);
1865 assert_int_equal(6, prefix_len);
1866 assert_int_equal(0, strncmp("prefix", prefix, prefix_len));
1867 assert_int_equal(4, name_len);
1868 assert_int_equal(0, strncmp("path", name, name_len));
1869 assert_int_equal(0, has_predicate);
1870
1871 /* complete leafref paths */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001872 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 +01001873 "leaf ref1 {type leafref {path /a:target1;}} leaf ref2 {type leafref {path /a/target2; require-instance false;}}"
1874 "leaf target1 {type string;}container a {leaf target2 {type uint8;}}}", LYS_IN_YANG));
Radek Krejcia3045382018-11-22 14:30:31 +01001875 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1876 assert_non_null(type);
1877 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1878 assert_string_equal("/a:target1", ((struct lysc_type_leafref*)type)->path);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001879 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001880 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1881 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001882 assert_int_equal(1, ((struct lysc_type_leafref*)type)->require_instance);
1883 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1884 assert_non_null(type);
1885 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1886 assert_string_equal("/a/target2", ((struct lysc_type_leafref*)type)->path);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001887 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1888 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1889 assert_int_equal(LY_TYPE_UINT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001890 assert_int_equal(0, ((struct lysc_type_leafref*)type)->require_instance);
1891
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001892 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 +01001893 "typedef mytype2 {type mytype;} typedef mytype3 {type leafref {path /target;}} leaf ref {type mytype2;}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01001894 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type string;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001895 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1896 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001897 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001898 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1899 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1900 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001901 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1902 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001903 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1904
1905 /* prefixes are reversed to check using correct context of the path! */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001906 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 +01001907 "typedef mytype3 {type c:mytype {require-instance false;}}"
1908 "leaf ref1 {type b:mytype3;}leaf ref2 {type c:mytype2;}}", LYS_IN_YANG));
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001909 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1910 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001911 assert_int_equal(1, type->refcount);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001912 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1913 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1914 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001915 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1916 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejci2f4a0292018-11-22 15:41:53 +01001917 assert_int_equal(0, ((struct lysc_type_leafref* )type)->require_instance);
1918 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
1919 assert_non_null(type);
Radek Krejci412ddfa2018-11-23 11:44:11 +01001920 assert_int_equal(1, type->refcount);
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001921 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1922 assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path);
1923 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1924 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1925
Radek Krejci4ce68932018-11-28 12:53:36 +01001926 /* non-prefixed nodes in path are supposed to be from the module where the leafref type is instantiated */
1927 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; import b {prefix b;}"
1928 "leaf ref {type b:mytype3;}leaf target {type int8;}}", LYS_IN_YANG));
Radek Krejci4ce68932018-11-28 12:53:36 +01001929 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1930 assert_non_null(type);
1931 assert_int_equal(1, type->refcount);
1932 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1933 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1934 assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1935 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1936 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype);
1937 assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance);
1938
Radek Krejci58d171e2018-11-23 13:50:55 +01001939 /* conditional leafrefs */
Radek Krejci4ce68932018-11-28 12:53:36 +01001940 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 +01001941 "leaf ref1 {if-feature 'f1 and f2';type leafref {path /target;}}"
1942 "leaf target {if-feature f1; type boolean;}}", LYS_IN_YANG));
Radek Krejci58d171e2018-11-23 13:50:55 +01001943 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1944 assert_non_null(type);
1945 assert_int_equal(1, type->refcount);
1946 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1947 assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path);
1948 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1949 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1950 assert_int_equal(LY_TYPE_BOOL, ((struct lysc_type_leafref*)type)->realtype->basetype);
1951
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001952 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;"
1953 "list interface{key name;leaf name{type string;}list address {key ip;leaf ip {type string;}}}"
1954 "container default-address{leaf ifname{type leafref{ path \"../../interface/name\";}}"
Radek Krejcibade82a2018-12-05 10:13:48 +01001955 "leaf address {type leafref{ path \"../../interface[ name = current()/../ifname ]/address/ip\";}}}}",
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001956 LYS_IN_YANG));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001957 type = ((struct lysc_node_leaf*)(*lysc_node_children_p(mod->compiled->data->prev, 0))->prev)->type;
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001958 assert_non_null(type);
1959 assert_int_equal(1, type->refcount);
1960 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
Radek Krejcibade82a2018-12-05 10:13:48 +01001961 assert_string_equal("../../interface[ name = current()/../ifname ]/address/ip", ((struct lysc_type_leafref* )type)->path);
Radek Krejci7adf4ff2018-12-05 08:55:00 +01001962 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1963 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1964 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
Radek Krejcia3045382018-11-22 14:30:31 +01001965
Radek Krejci20e8a182018-12-07 11:43:21 +01001966 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;"
1967 "leaf source {type leafref {path \"/endpoint-parent[id=current()/../field]/endpoint/name\";}}"
1968 "leaf field {type int32;}list endpoint-parent {key id;leaf id {type int32;}"
1969 "list endpoint {key name;leaf name {type string;}}}}", LYS_IN_YANG));
Radek Krejci20e8a182018-12-07 11:43:21 +01001970 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1971 assert_non_null(type);
1972 assert_int_equal(1, type->refcount);
1973 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1974 assert_string_equal("/endpoint-parent[id=current()/../field]/endpoint/name", ((struct lysc_type_leafref* )type)->path);
1975 assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context);
1976 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1977 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype);
1978
Radek Krejci3d929562019-02-21 11:25:55 +01001979 /* leafref to imported (not yet implemented) module */
1980 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module h {namespace urn:h;prefix h; leaf h {type uint16;}}");
1981 assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;import h {prefix h;}"
1982 "leaf i {type leafref {path /h:h;}}}", LYS_IN_YANG));
1983 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1984 assert_non_null(type);
1985 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
1986 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
1987 assert_int_equal(LY_TYPE_UINT16, ((struct lysc_type_leafref*)type)->realtype->basetype);
1988 assert_non_null(mod = ly_ctx_get_module_implemented(ctx, "h"));
1989 assert_int_equal(1, mod->implemented);
1990 assert_non_null(mod->compiled->data);
1991 assert_string_equal("h", mod->compiled->data->name);
1992
Radek Krejci92cc8512019-04-25 09:57:06 +02001993 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module j {namespace urn:j;prefix j; leaf j {type string;}}");
1994 assert_non_null(mod = lys_parse_mem(ctx, "module k {namespace urn:k;prefix k;import j {prefix j;}"
1995 "leaf i {type leafref {path \"/ilist[name = current()/../j:j]/value\";}}"
1996 "list ilist {key name; leaf name {type string;} leaf value {type uint16;}}}", LYS_IN_YANG));
1997 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
1998 assert_non_null(type);
1999 assert_int_equal(LY_TYPE_LEAFREF, type->basetype);
2000 assert_non_null(((struct lysc_type_leafref*)type)->realtype);
2001 assert_int_equal(LY_TYPE_UINT16, ((struct lysc_type_leafref*)type)->realtype->basetype);
2002 assert_non_null(mod = ly_ctx_get_module_implemented(ctx, "j"));
2003 assert_int_equal(1, mod->implemented);
2004 assert_non_null(mod->compiled->data);
2005 assert_string_equal("j", mod->compiled->data->name);
2006
Radek Krejcia3045382018-11-22 14:30:31 +01002007 /* invalid paths */
Radek Krejci096235c2019-01-11 11:12:19 +01002008 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002009 "leaf ref1 {type leafref {path ../a/invalid;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002010 logbuf_assert("Invalid leafref path - unable to find \"../a/invalid\". /aa:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002011 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002012 "leaf ref1 {type leafref {path ../../toohigh;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002013 logbuf_assert("Invalid leafref path \"../../toohigh\" - too many \"..\" in the path. /bb:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002014 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002015 "leaf ref1 {type leafref {path /a:invalid;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002016 logbuf_assert("Invalid leafref path - unable to find module connected with the prefix of the node \"/a:invalid\". /cc:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002017 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf target1 {type string;}container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002018 "leaf ref1 {type leafref {path '/a[target2 = current()/../target1]/target2';}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002019 logbuf_assert("Invalid leafref path - node \"/a\" is expected to be a list, but it is container. /dd:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002020 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002021 "leaf ref1 {type leafref {path /a!invalid;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002022 logbuf_assert("Invalid leafref path at character 3 (/a!invalid). /ee:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002023 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;container a {leaf target2 {type uint8;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002024 "leaf ref1 {type leafref {path /a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002025 logbuf_assert("Invalid leafref path \"/a\" - target node is container instead of leaf or leaf-list. /ff:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002026 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;container a {leaf target2 {type uint8; status deprecated;}}"
Radek Krejcia3045382018-11-22 14:30:31 +01002027 "leaf ref1 {type leafref {path /a/target2;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002028 logbuf_assert("A current definition \"ref1\" is not allowed to reference deprecated definition \"target2\". /gg:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002029 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;"
Radek Krejci2f4a0292018-11-22 15:41:53 +01002030 "leaf ref1 {type leafref;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002031 logbuf_assert("Missing path substatement for leafref type. /hh:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002032 assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;typedef mytype {type leafref;}"
Radek Krejci2f4a0292018-11-22 15:41:53 +01002033 "leaf ref1 {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002034 logbuf_assert("Missing path substatement for leafref type mytype. /ii:ref1");
Radek Krejci096235c2019-01-11 11:12:19 +01002035 assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;feature f;"
Radek Krejci58d171e2018-11-23 13:50:55 +01002036 "leaf ref {type leafref {path /target;}}leaf target {if-feature f;type string;}}", LYS_IN_YANG));
Radek Krejci58d171e2018-11-23 13:50:55 +01002037 logbuf_assert("Invalid leafref path \"/target\" - set of features applicable to the leafref target is not a subset of features "
Radek Krejci327de162019-06-14 12:52:07 +02002038 "applicable to the leafref itself. /jj:ref");
Radek Krejci096235c2019-01-11 11:12:19 +01002039 assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;"
Radek Krejcib57cf1e2018-11-23 14:07:05 +01002040 "leaf ref {type leafref {path /target;}}leaf target {type string;config false;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002041 logbuf_assert("Invalid leafref path \"/target\" - target is supposed to represent configuration data (as the leafref does), but it does not. /kk:ref");
Radek Krejci58d171e2018-11-23 13:50:55 +01002042
Radek Krejci096235c2019-01-11 11:12:19 +01002043 assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;"
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002044 "leaf ref {type leafref {path /target; require-instance true;}}leaf target {type string;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002045 logbuf_assert("Leafref type can be restricted by require-instance statement only in YANG 1.1 modules. /ll:ref");
Radek Krejci096235c2019-01-11 11:12:19 +01002046 assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type leafref {path /target;require-instance false;}}"
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002047 "leaf ref {type mytype;}leaf target {type string;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002048 logbuf_assert("Leafref type \"mytype\" can be restricted by require-instance statement only in YANG 1.1 modules. /mm:ref");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002049
Radek Krejci096235c2019-01-11 11:12:19 +01002050 assert_null(lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002051 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2052 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2053 "leaf address {type leafref{ path \"/interface[name is current()/../ifname]/ip\";}}}",
2054 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002055 logbuf_assert("Invalid leafref path predicate \"[name i\" - missing \"=\" after node-identifier. /nn:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002056
Radek Krejci096235c2019-01-11 11:12:19 +01002057 assert_null(lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002058 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2059 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2060 "leaf address {type leafref{ path \"/interface[name=current()/../ifname/ip\";}}}",
2061 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002062 logbuf_assert("Invalid leafref path predicate \"[name=current()/../ifname/ip\" - missing predicate termination. /oo:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002063
Radek Krejci096235c2019-01-11 11:12:19 +01002064 assert_null(lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002065 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2066 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2067 "leaf address {type leafref{ path \"/interface[x:name=current()/../ifname]/ip\";}}}",
2068 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002069 logbuf_assert("Invalid leafref path predicate \"[x:name=current()/../ifname]\" - prefix \"x\" not defined in module \"pp\". /pp:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002070
Radek Krejci096235c2019-01-11 11:12:19 +01002071 assert_null(lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002072 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2073 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2074 "leaf address {type leafref{ path \"/interface[id=current()/../ifname]/ip\";}}}",
2075 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002076 logbuf_assert("Invalid leafref path predicate \"[id=current()/../ifname]\" - predicate's key node \"id\" not found. /qq:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002077
Radek Krejci096235c2019-01-11 11:12:19 +01002078 assert_null(lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002079 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2080 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2081 "leaf address {type leafref{ path \"/interface[name=current() / .. / ifname][name=current()/../test]/ip\";}}}",
2082 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002083 logbuf_assert("Invalid leafref path predicate \"[name=current()/../test]\" - multiple equality tests for the key \"name\". /rr:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002084
Radek Krejci096235c2019-01-11 11:12:19 +01002085 assert_null(lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002086 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2087 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2088 "leaf address {type leafref{ path \"/interface[name = ../ifname]/ip\";}}}",
2089 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002090 logbuf_assert("Invalid leafref path predicate \"[name = ../ifname]\" - missing current-function-invocation. /ss:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002091
Radek Krejci096235c2019-01-11 11:12:19 +01002092 assert_null(lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002093 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2094 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2095 "leaf address {type leafref{ path \"/interface[name = current()../ifname]/ip\";}}}",
2096 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002097 logbuf_assert("Invalid leafref path predicate \"[name = current()../ifname]\" - missing \"/\" after current-function-invocation. /tt:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002098
Radek Krejci096235c2019-01-11 11:12:19 +01002099 assert_null(lys_parse_mem(ctx, "module uu {namespace urn:uu;prefix uu;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002100 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2101 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2102 "leaf address {type leafref{ path \"/interface[name = current()/..ifname]/ip\";}}}",
2103 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002104 logbuf_assert("Invalid leafref path predicate \"[name = current()/..ifname]\" - missing \"/\" in \"../\" rel-path-keyexpr pattern. /uu:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002105
Radek Krejci096235c2019-01-11 11:12:19 +01002106 assert_null(lys_parse_mem(ctx, "module vv {namespace urn:vv;prefix vv;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002107 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2108 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2109 "leaf address {type leafref{ path \"/interface[name = current()/ifname]/ip\";}}}",
2110 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002111 logbuf_assert("Invalid leafref path predicate \"[name = current()/ifname]\" - at least one \"..\" is expected in rel-path-keyexpr. /vv:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002112
Radek Krejci096235c2019-01-11 11:12:19 +01002113 assert_null(lys_parse_mem(ctx, "module ww {namespace urn:ww;prefix ww;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002114 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2115 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2116 "leaf address {type leafref{ path \"/interface[name = current()/../]/ip\";}}}",
2117 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002118 logbuf_assert("Invalid leafref path predicate \"[name = current()/../]\" - at least one node-identifier is expected in rel-path-keyexpr. /ww:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002119
Radek Krejci096235c2019-01-11 11:12:19 +01002120 assert_null(lys_parse_mem(ctx, "module xx {namespace urn:xx;prefix xx;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002121 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2122 "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}"
2123 "leaf address {type leafref{ path \"/interface[name = current()/../$node]/ip\";}}}",
2124 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002125 logbuf_assert("Invalid node identifier in leafref path predicate - character 22 (of [name = current()/../$node]). /xx:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002126
Radek Krejci096235c2019-01-11 11:12:19 +01002127 assert_null(lys_parse_mem(ctx, "module yy {namespace urn:yy;prefix yy;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002128 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2129 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2130 "leaf address {type leafref{ path \"/interface[name=current()/../x:ifname]/ip\";}}}",
2131 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002132 logbuf_assert("Invalid leafref path predicate \"[name=current()/../x:ifname]\" - unable to find module of the node \"ifname\" in rel-path-keyexpr. /yy:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002133
Radek Krejci096235c2019-01-11 11:12:19 +01002134 assert_null(lys_parse_mem(ctx, "module zz {namespace urn:zz;prefix zz;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002135 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2136 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2137 "leaf address {type leafref{ path \"/interface[name=current()/../xxx]/ip\";}}}",
2138 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002139 logbuf_assert("Invalid leafref path predicate \"[name=current()/../xxx]\" - unable to find node \"current()/../xxx\" in the rel-path-keyexpr. /zz:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002140
Radek Krejci096235c2019-01-11 11:12:19 +01002141 assert_null(lys_parse_mem(ctx, "module zza {namespace urn:zza;prefix zza;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002142 "list interface{key name;leaf name{type string;}leaf ip {type string;}}"
2143 "leaf ifname{type leafref{ path \"../interface/name\";}}container c;"
2144 "leaf address {type leafref{ path \"/interface[name=current()/../c]/ip\";}}}",
2145 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002146 logbuf_assert("Invalid leafref path predicate \"[name=current()/../c]\" - rel-path-keyexpr \"current()/../c\" refers container instead of leaf. /zza:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002147
Radek Krejci096235c2019-01-11 11:12:19 +01002148 assert_null(lys_parse_mem(ctx, "module zzb {namespace urn:zzb;prefix zzb;"
Radek Krejcibade82a2018-12-05 10:13:48 +01002149 "list interface{key name;leaf name{type string;}leaf ip {type string;}container c;}"
2150 "leaf ifname{type leafref{ path \"../interface/name\";}}"
2151 "leaf address {type leafref{ path \"/interface[c=current()/../ifname]/ip\";}}}",
2152 LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002153 logbuf_assert("Invalid leafref path predicate \"[c=current()/../ifname]\" - predicate's key node \"c\" not found. /zzb:address");
Radek Krejcibade82a2018-12-05 10:13:48 +01002154
Radek Krejci412ddfa2018-11-23 11:44:11 +01002155 /* circular chain */
Radek Krejci096235c2019-01-11 11:12:19 +01002156 assert_null(lys_parse_mem(ctx, "module aaa {namespace urn:aaa;prefix aaa;"
Radek Krejci412ddfa2018-11-23 11:44:11 +01002157 "leaf ref1 {type leafref {path /ref2;}}"
2158 "leaf ref2 {type leafref {path /ref3;}}"
Radek Krejci0c3f1ad2018-11-23 14:19:38 +01002159 "leaf ref3 {type leafref {path /ref4;}}"
2160 "leaf ref4 {type leafref {path /ref1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002161 logbuf_assert("Invalid leafref path \"/ref1\" - circular chain of leafrefs detected. /aaa:ref4");
Radek Krejci412ddfa2018-11-23 11:44:11 +01002162
Radek Krejcia3045382018-11-22 14:30:31 +01002163 *state = NULL;
2164 ly_ctx_destroy(ctx, NULL);
2165}
2166
Radek Krejci43699232018-11-23 14:59:46 +01002167static void
2168test_type_empty(void **state)
2169{
2170 *state = test_type_empty;
2171
2172 struct ly_ctx *ctx;
Radek Krejci43699232018-11-23 14:59:46 +01002173
2174 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2175
2176 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +01002177 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
Radek Krejci43699232018-11-23 14:59:46 +01002178 "leaf l {type empty; default x;}}", LYS_IN_YANG));
Radek Krejcia1911222019-07-22 17:24:50 +02002179 logbuf_assert("Invalid leaf's default value \"x\" which does not fit the type (Invalid empty value \"x\".). /aa:l");
Radek Krejci43699232018-11-23 14:59:46 +01002180
Radek Krejci096235c2019-01-11 11:12:19 +01002181 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;typedef mytype {type empty; default x;}"
Radek Krejci43699232018-11-23 14:59:46 +01002182 "leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002183 logbuf_assert("Invalid type \"mytype\" - \"empty\" type must not have a default value (x). /bb:l");
Radek Krejci43699232018-11-23 14:59:46 +01002184
2185 *state = NULL;
2186 ly_ctx_destroy(ctx, NULL);
2187}
2188
Radek Krejcicdfecd92018-11-26 11:27:32 +01002189
2190static void
2191test_type_union(void **state)
2192{
2193 *state = test_type_union;
2194
2195 struct ly_ctx *ctx;
2196 struct lys_module *mod;
2197 struct lysc_type *type;
2198
2199 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2200
2201 assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a; typedef mybasetype {type string;}"
2202 "typedef mytype {type union {type int8; type mybasetype;}}"
2203 "leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002204 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2205 assert_non_null(type);
2206 assert_int_equal(2, type->refcount);
2207 assert_int_equal(LY_TYPE_UNION, type->basetype);
2208 assert_non_null(((struct lysc_type_union*)type)->types);
2209 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2210 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[0]->basetype);
2211 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2212
2213 assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; typedef mybasetype {type string;}"
2214 "typedef mytype {type union {type int8; type mybasetype;}}"
2215 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}}", LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002216 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2217 assert_non_null(type);
2218 assert_int_equal(1, type->refcount);
2219 assert_int_equal(LY_TYPE_UNION, type->basetype);
2220 assert_non_null(((struct lysc_type_union*)type)->types);
2221 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2222 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2223 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[1]->basetype);
2224 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2225
2226 assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c; typedef mybasetype {type string;}"
2227 "typedef mytype {type union {type leafref {path ../target;} type mybasetype;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002228 "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}"
2229 "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type int8;}}",
Radek Krejcicdfecd92018-11-26 11:27:32 +01002230 LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002231 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2232 assert_non_null(type);
2233 assert_int_equal(1, type->refcount);
2234 assert_int_equal(LY_TYPE_UNION, type->basetype);
2235 assert_non_null(((struct lysc_type_union*)type)->types);
2236 assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2237 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2238 assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype);
2239 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype);
2240 assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype);
2241 assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype);
2242
Radek Krejci6be5ff12018-11-26 13:18:15 +01002243 /* invalid unions */
Radek Krejci096235c2019-01-11 11:12:19 +01002244 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;typedef mytype {type union;}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002245 "leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002246 logbuf_assert("Missing type substatement for union type mytype. /aa:l");
Radek Krejci6be5ff12018-11-26 13:18:15 +01002247
Radek Krejci096235c2019-01-11 11:12:19 +01002248 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type union;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002249 logbuf_assert("Missing type substatement for union type. /bb:l");
Radek Krejci6be5ff12018-11-26 13:18:15 +01002250
Radek Krejci096235c2019-01-11 11:12:19 +01002251 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;typedef mytype {type union{type int8; type string;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002252 "leaf l {type mytype {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002253 logbuf_assert("Invalid type substatement for the type not directly derived from union built-in type. /cc:l");
Radek Krejci6be5ff12018-11-26 13:18:15 +01002254
Radek Krejci096235c2019-01-11 11:12:19 +01002255 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;typedef mytype {type union{type int8; type string;}}"
Radek Krejci6be5ff12018-11-26 13:18:15 +01002256 "typedef mytype2 {type mytype {type string;}}leaf l {type mytype2;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002257 logbuf_assert("Invalid type substatement for the type \"mytype2\" not directly derived from union built-in type. /dd:l");
Radek Krejci6be5ff12018-11-26 13:18:15 +01002258
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002259 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;typedef mytype {type union{type mytype; type string;}}"
2260 "leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002261 logbuf_assert("Invalid \"mytype\" type reference - circular chain of types detected. /ee:l");
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002262 assert_null(lys_parse_mem(ctx, "module ef {namespace urn:ef;prefix ef;typedef mytype {type mytype2;}"
2263 "typedef mytype2 {type mytype;} leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002264 logbuf_assert("Invalid \"mytype\" type reference - circular chain of types detected. /ef:l");
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002265
Radek Krejcicdfecd92018-11-26 11:27:32 +01002266 *state = NULL;
2267 ly_ctx_destroy(ctx, NULL);
2268}
2269
2270static void
2271test_type_dflt(void **state)
2272{
2273 *state = test_type_union;
2274
2275 struct ly_ctx *ctx;
2276 struct lys_module *mod;
2277 struct lysc_type *type;
Radek Krejcia1911222019-07-22 17:24:50 +02002278 struct lysc_node_leaf *leaf;
2279 int dynamic;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002280
2281 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2282
2283 /* default is not inherited from union's types */
2284 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; typedef mybasetype {type string;default hello;units xxx;}"
2285 "leaf l {type union {type decimal64 {fraction-digits 2;} type mybasetype;}}}", LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002286 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2287 assert_non_null(type);
2288 assert_int_equal(1, type->refcount);
2289 assert_int_equal(LY_TYPE_UNION, type->basetype);
2290 assert_non_null(((struct lysc_type_union*)type)->types);
2291 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types));
2292 assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype);
2293 assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype);
2294 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2295 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->units);
2296
2297 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mybasetype {type string;default hello;units xxx;}"
2298 "leaf l {type mybasetype;}}", LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002299 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2300 assert_non_null(type);
Radek Krejcia1911222019-07-22 17:24:50 +02002301 assert_int_equal(3, type->refcount); /* 2x type reference, 1x default value's reference (typedf's default does not reference own type)*/
Radek Krejcicdfecd92018-11-26 11:27:32 +01002302 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejci812a5bf2019-09-09 09:18:05 +02002303 assert_non_null(leaf = (struct lysc_node_leaf*)mod->compiled->data);
Radek Krejcia1911222019-07-22 17:24:50 +02002304 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2305 assert_int_equal(0, dynamic);
2306 assert_string_equal("xxx", leaf->units);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002307
2308 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mybasetype {type string;default hello;units xxx;}"
2309 "leaf l {type mybasetype; default goodbye;units yyy;}}", LYS_IN_YANG));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002310 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2311 assert_non_null(type);
Radek Krejcia1911222019-07-22 17:24:50 +02002312 assert_int_equal(3, type->refcount); /* 2x type reference, 1x default value's reference */
Radek Krejcicdfecd92018-11-26 11:27:32 +01002313 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejcia1911222019-07-22 17:24:50 +02002314 leaf = (struct lysc_node_leaf*)mod->compiled->data;
2315 assert_string_equal("goodbye", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2316 assert_int_equal(0, dynamic);
2317 assert_string_equal("yyy", leaf->units);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002318
Radek Krejci6be5ff12018-11-26 13:18:15 +01002319 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; typedef mybasetype {type string;default hello;units xxx;}"
2320 "typedef mytype {type mybasetype;}leaf l1 {type mytype; default goodbye;units yyy;}"
2321 "leaf l2 {type mytype;}}", LYS_IN_YANG));
Radek Krejci6be5ff12018-11-26 13:18:15 +01002322 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2323 assert_non_null(type);
Radek Krejcia1911222019-07-22 17:24:50 +02002324 assert_int_equal(6, type->refcount); /* 4x type reference, 2x default value's reference (1 shared compiled type of typedefs which default does not reference own type) */
Radek Krejci6be5ff12018-11-26 13:18:15 +01002325 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejcia1911222019-07-22 17:24:50 +02002326 leaf = (struct lysc_node_leaf*)mod->compiled->data;
2327 assert_string_equal("goodbye", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2328 assert_int_equal(0, dynamic);
2329 assert_string_equal("yyy", leaf->units);
Radek Krejci6be5ff12018-11-26 13:18:15 +01002330 type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type;
2331 assert_non_null(type);
Radek Krejcia1911222019-07-22 17:24:50 +02002332 assert_int_equal(6, type->refcount); /* 4x type reference, 2x default value's reference (1 shared compiled type of typedefs which default does not reference own type) */
Radek Krejci6be5ff12018-11-26 13:18:15 +01002333 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejcia1911222019-07-22 17:24:50 +02002334 leaf = (struct lysc_node_leaf*)mod->compiled->data->next;
2335 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2336 assert_int_equal(0, dynamic);
2337 assert_string_equal("xxx", leaf->units);
Radek Krejci6be5ff12018-11-26 13:18:15 +01002338
2339 assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e; typedef mybasetype {type string;}"
2340 "typedef mytype {type mybasetype; default hello;units xxx;}leaf l {type mytype;}}", LYS_IN_YANG));
Radek Krejci6be5ff12018-11-26 13:18:15 +01002341 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2342 assert_non_null(type);
Radek Krejcia1911222019-07-22 17:24:50 +02002343 assert_int_equal(4, type->refcount); /* 3x type reference, 1x default value's reference (typedef's default does not reference own type) */
Radek Krejci6be5ff12018-11-26 13:18:15 +01002344 assert_int_equal(LY_TYPE_STRING, type->basetype);
Radek Krejcia1911222019-07-22 17:24:50 +02002345 leaf = (struct lysc_node_leaf*)mod->compiled->data;
2346 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2347 assert_int_equal(0, dynamic);
2348 assert_string_equal("xxx", leaf->units);
Radek Krejci6be5ff12018-11-26 13:18:15 +01002349
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002350 /* mandatory leaf does not takes default value from type */
2351 assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;typedef mytype {type string; default hello;units xxx;}"
2352 "leaf l {type mytype; mandatory true;}}", LYS_IN_YANG));
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002353 type = ((struct lysc_node_leaf*)mod->compiled->data)->type;
2354 assert_non_null(type);
2355 assert_int_equal(LY_TYPE_STRING, type->basetype);
2356 assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt);
2357 assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units);
2358
Radek Krejcicdfecd92018-11-26 11:27:32 +01002359 *state = NULL;
2360 ly_ctx_destroy(ctx, NULL);
2361}
2362
Radek Krejci665421c2018-12-05 08:03:39 +01002363static void
2364test_status(void **state)
2365{
2366 *state = test_status;
2367
2368 struct ly_ctx *ctx;
Radek Krejci665421c2018-12-05 08:03:39 +01002369
2370 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2371
Radek Krejci096235c2019-01-11 11:12:19 +01002372 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
Radek Krejci665421c2018-12-05 08:03:39 +01002373 "container c {status deprecated; leaf l {status current; type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002374 logbuf_assert("A \"current\" status is in conflict with the parent's \"deprecated\" status. /aa:c/l");
Radek Krejci665421c2018-12-05 08:03:39 +01002375
Radek Krejci096235c2019-01-11 11:12:19 +01002376 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;"
Radek Krejci665421c2018-12-05 08:03:39 +01002377 "container c {status obsolete; leaf l {status current; type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002378 logbuf_assert("A \"current\" status is in conflict with the parent's \"obsolete\" status. /bb:c/l");
Radek Krejci665421c2018-12-05 08:03:39 +01002379
Radek Krejci096235c2019-01-11 11:12:19 +01002380 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;"
Radek Krejci665421c2018-12-05 08:03:39 +01002381 "container c {status obsolete; leaf l {status deprecated; type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002382 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status. /cc:c/l");
Radek Krejci665421c2018-12-05 08:03:39 +01002383
2384 *state = NULL;
2385 ly_ctx_destroy(ctx, NULL);
2386}
2387
Radek Krejcie86bf772018-12-14 11:39:53 +01002388static void
Radek Krejcif2de0ed2019-05-02 14:13:18 +02002389test_grouping(void **state)
2390{
2391 *state = test_grouping;
2392
2393 struct ly_ctx *ctx;
2394
2395 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2396
2397 /* result ok, but a warning about not used locally scoped grouping printed */
2398 assert_non_null(lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; grouping grp1 {leaf a1 {type string;}}"
2399 "container a {leaf x {type string;} grouping grp2 {leaf a2 {type string;}}}}", LYS_IN_YANG));
2400 logbuf_assert("Locally scoped grouping \"grp2\" not used.");
2401 logbuf_clean();
2402
2403 /* result ok - when statement or leafref target must be checked only at the place where the grouping is really instantiated */
2404 assert_non_null(lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; grouping grp {"
2405 "leaf ref {type leafref {path \"../name\";}}"
2406 "leaf cond {type string; when \"../name = 'specialone'\";}}}", LYS_IN_YANG));
2407 logbuf_assert("");
2408
2409
2410 /* invalid - error in a non-instantiated grouping */
2411 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2412 "grouping grp {leaf x {type leafref;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002413 logbuf_assert("Missing path substatement for leafref type. /aa:{grouping='grp'}/x");
Radek Krejcif2de0ed2019-05-02 14:13:18 +02002414 logbuf_clean();
2415 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;"
2416 "container a {grouping grp {leaf x {type leafref;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002417 logbuf_assert("Missing path substatement for leafref type. /aa:a/{grouping='grp'}/x");
Radek Krejcif2de0ed2019-05-02 14:13:18 +02002418
2419
2420 *state = NULL;
2421 ly_ctx_destroy(ctx, NULL);
2422}
2423
2424static void
Radek Krejcie86bf772018-12-14 11:39:53 +01002425test_uses(void **state)
2426{
2427 *state = test_uses;
2428
2429 struct ly_ctx *ctx;
2430 struct lys_module *mod;
Radek Krejci3641f562019-02-13 15:38:40 +01002431 const struct lysc_node *parent, *child;
Radek Krejci32b6ecd2019-04-12 10:41:24 +02002432 const struct lysc_node_container *cont;
Radek Krejcie86bf772018-12-14 11:39:53 +01002433
2434 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2435
Radek Krejci0af46292019-01-11 16:02:31 +01002436 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module grp {namespace urn:grp;prefix g; typedef mytype {type string;} feature f;"
2437 "grouping grp {leaf x {type mytype;} leaf y {type string; if-feature f;}}}");
Radek Krejcie86bf772018-12-14 11:39:53 +01002438 assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;import grp {prefix g;}"
2439 "grouping grp_a_top {leaf a1 {type int8;}}"
2440 "container a {uses grp_a; uses grp_a_top; uses g:grp; grouping grp_a {leaf a2 {type uint8;}}}}", LYS_IN_YANG));
Radek Krejcie86bf772018-12-14 11:39:53 +01002441 assert_non_null((parent = mod->compiled->data));
2442 assert_int_equal(LYS_CONTAINER, parent->nodetype);
2443 assert_non_null((child = ((struct lysc_node_container*)parent)->child));
2444 assert_string_equal("a2", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002445 assert_ptr_equal(mod, child->module);
Radek Krejcie86bf772018-12-14 11:39:53 +01002446 assert_non_null((child = child->next));
2447 assert_string_equal("a1", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002448 assert_ptr_equal(mod, child->module);
Radek Krejcie86bf772018-12-14 11:39:53 +01002449 assert_non_null((child = child->next));
2450 assert_string_equal("x", child->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01002451 assert_ptr_equal(mod, child->module);
Radek Krejci0af46292019-01-11 16:02:31 +01002452 assert_non_null((child = child->next));
2453 assert_string_equal("y", child->name);
2454 assert_non_null(child->iffeatures);
2455 assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures));
2456 assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures[0].features));
2457 assert_string_equal("f", child->iffeatures[0].features[0]->name);
2458 assert_int_equal(LY_EINVAL, lys_feature_enable(mod->compiled->imports[0].module, "f"));
2459 logbuf_assert("Module \"grp\" is not implemented so all its features are permanently disabled without a chance to change it.");
2460 assert_int_equal(0, lysc_iffeature_value(&child->iffeatures[0]));
2461
2462 /* make the imported module implemented and enable the feature */
2463 assert_non_null(mod = ly_ctx_get_module(ctx, "grp", NULL));
Radek Krejci77a8bcd2019-09-11 11:20:02 +02002464 assert_int_equal(LY_SUCCESS, lys_set_implemented(mod));
Radek Krejci0af46292019-01-11 16:02:31 +01002465 assert_int_equal(LY_SUCCESS, lys_feature_enable(mod, "f"));
2466 assert_string_equal("f", child->iffeatures[0].features[0]->name);
2467 assert_int_equal(1, lysc_iffeature_value(&child->iffeatures[0]));
Radek Krejcie86bf772018-12-14 11:39:53 +01002468
Michal Vasko175012e2019-11-06 15:49:14 +01002469 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule bsub {belongs-to b {prefix b;} grouping grp {leaf b {when 1; type string;} leaf c {type string;}}}");
Radek Krejci00b874b2019-02-12 10:54:50 +01002470 assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;include bsub;uses grp {when 2;}}", LYS_IN_YANG));
Radek Krejcib1b59152019-01-07 13:21:56 +01002471 assert_non_null(mod->compiled->data);
2472 assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype);
2473 assert_string_equal("b", mod->compiled->data->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002474 assert_int_equal(2, LY_ARRAY_SIZE(mod->compiled->data->when));
Michal Vasko175012e2019-11-06 15:49:14 +01002475 assert_int_equal(1, mod->compiled->data->when[0]->refcount);
2476 assert_non_null(mod->compiled->data->when[0]->context);
2477 assert_string_equal("b", mod->compiled->data->when[0]->context->name);
2478 assert_int_equal(2, mod->compiled->data->when[1]->refcount);
2479 assert_null(mod->compiled->data->when[1]->context);
2480
2481 assert_int_equal(LYS_LEAF, mod->compiled->data->next->nodetype);
2482 assert_string_equal("c", mod->compiled->data->next->name);
2483 assert_int_equal(1, LY_ARRAY_SIZE(mod->compiled->data->next->when));
2484 assert_int_equal(2, mod->compiled->data->next->when[0]->refcount);
2485 assert_null(mod->compiled->data->next->when[0]->context);
Radek Krejcib1b59152019-01-07 13:21:56 +01002486
Radek Krejci7f6a3812019-01-07 13:48:57 +01002487 logbuf_clean();
2488 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:ii;prefix ii;"
2489 "grouping grp {leaf l {type string;}leaf k {type string; status obsolete;}}"
2490 "uses grp {status deprecated;}}", LYS_IN_YANG));
Radek Krejci7f6a3812019-01-07 13:48:57 +01002491 assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype);
2492 assert_string_equal("l", mod->compiled->data->name);
2493 assert_true(LYS_STATUS_DEPRC & mod->compiled->data->flags);
2494 assert_int_equal(LYS_LEAF, mod->compiled->data->next->nodetype);
2495 assert_string_equal("k", mod->compiled->data->next->name);
2496 assert_true(LYS_STATUS_OBSLT & mod->compiled->data->next->flags);
2497 logbuf_assert(""); /* no warning about inheriting deprecated flag from uses */
2498
Radek Krejci3641f562019-02-13 15:38:40 +01002499 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; grouping grp {container g;}"
2500 "container top {uses grp {augment g {leaf x {type int8;}}}}}", LYS_IN_YANG));
2501 assert_non_null(mod->compiled->data);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002502 assert_non_null(child = lysc_node_children(mod->compiled->data, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01002503 assert_string_equal("g", child->name);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002504 assert_non_null(child = lysc_node_children(child, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01002505 assert_string_equal("x", child->name);
2506
Radek Krejci32b6ecd2019-04-12 10:41:24 +02002507 assert_non_null(mod = lys_parse_mem(ctx, "module e {yang-version 1.1;namespace urn:e;prefix e; grouping grp {action g { description \"super g\";}}"
2508 "container top {action e; uses grp {refine g {description \"ultra g\";}}}}", LYS_IN_YANG));
2509 assert_non_null(mod->compiled->data);
2510 cont = (const struct lysc_node_container*)mod->compiled->data;
2511 assert_non_null(cont->actions);
2512 assert_int_equal(2, LY_ARRAY_SIZE(cont->actions));
2513 assert_string_equal("e", cont->actions[1].name);
2514 assert_string_equal("g", cont->actions[0].name);
2515 assert_string_equal("ultra g", cont->actions[0].dsc);
2516
2517 assert_non_null(mod = lys_parse_mem(ctx, "module f {yang-version 1.1;namespace urn:f;prefix f; grouping grp {notification g { description \"super g\";}}"
2518 "container top {notification f; uses grp {refine g {description \"ultra g\";}}}}", LYS_IN_YANG));
2519 assert_non_null(mod->compiled->data);
2520 cont = (const struct lysc_node_container*)mod->compiled->data;
2521 assert_non_null(cont->notifs);
2522 assert_int_equal(2, LY_ARRAY_SIZE(cont->notifs));
2523 assert_string_equal("f", cont->notifs[1].name);
2524 assert_string_equal("g", cont->notifs[0].name);
2525 assert_string_equal("ultra g", cont->notifs[0].dsc);
2526
Radek Krejci684faf22019-05-27 14:31:16 +02002527 /* empty grouping */
2528 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g; grouping grp; uses grp;}", LYS_IN_YANG));
2529 assert_null(mod->compiled->data);
2530
Radek Krejcie86bf772018-12-14 11:39:53 +01002531 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +01002532 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;uses missinggrp;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002533 logbuf_assert("Grouping \"missinggrp\" referenced by a uses statement not found. /aa:{uses='missinggrp'}");
Radek Krejcie86bf772018-12-14 11:39:53 +01002534
Radek Krejci096235c2019-01-11 11:12:19 +01002535 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;uses grp;"
Radek Krejcie86bf772018-12-14 11:39:53 +01002536 "grouping grp {leaf a{type string;}uses grp1;}"
2537 "grouping grp1 {leaf b {type string;}uses grp2;}"
2538 "grouping grp2 {leaf c {type string;}uses grp;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002539 logbuf_assert("Grouping \"grp\" references itself through a uses statement. /bb:{uses='grp'}/{uses='grp1'}/{uses='grp2'}/{uses='grp'}");
Radek Krejcie86bf772018-12-14 11:39:53 +01002540
Radek Krejci096235c2019-01-11 11:12:19 +01002541 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;uses a:missingprefix;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002542 logbuf_assert("Invalid prefix used for grouping reference. /cc:{uses='a:missingprefix'}");
Radek Krejci76b3e962018-12-14 17:01:25 +01002543
Radek Krejci096235c2019-01-11 11:12:19 +01002544 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;grouping grp{leaf a{type string;}}"
Radek Krejci76b3e962018-12-14 17:01:25 +01002545 "leaf a {type string;}uses grp;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002546 logbuf_assert("Duplicate identifier \"a\" of data definition/RPC/action/Notification statement. /dd:{uses='grp'}/dd:a");
Radek Krejci76b3e962018-12-14 17:01:25 +01002547
Radek Krejci096235c2019-01-11 11:12:19 +01002548 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;grouping grp {leaf l {type string; status deprecated;}}"
Radek Krejci7f6a3812019-01-07 13:48:57 +01002549 "uses grp {status obsolete;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002550 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status. /ee:{uses='grp'}/ee:l");
Radek Krejci7f6a3812019-01-07 13:48:57 +01002551
Radek Krejci95710c92019-02-11 15:49:55 +01002552 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;grouping grp {leaf l {type string;}}"
2553 "leaf l {type int8;}uses grp;}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002554 logbuf_assert("Duplicate identifier \"l\" of data definition/RPC/action/Notification statement. /ff:{uses='grp'}/ff:l");
Radek Krejci95710c92019-02-11 15:49:55 +01002555 assert_null(lys_parse_mem(ctx, "module fg {namespace urn:fg;prefix fg;grouping grp {leaf m {type string;}}"
2556 "uses grp;leaf m {type int8;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002557 logbuf_assert("Duplicate identifier \"m\" of data definition/RPC/action/Notification statement. /fg:m");
Radek Krejci95710c92019-02-11 15:49:55 +01002558
Radek Krejci3641f562019-02-13 15:38:40 +01002559
2560 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg; grouping grp {container g;}"
2561 "leaf g {type string;}"
2562 "container top {uses grp {augment /g {leaf x {type int8;}}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002563 logbuf_assert("Invalid descendant-schema-nodeid value \"/g\" - absolute-schema-nodeid used. /gg:top/{uses='grp'}/{augment='/g'}");
Radek Krejci3641f562019-02-13 15:38:40 +01002564
Radek Krejci32b6ecd2019-04-12 10:41:24 +02002565 assert_non_null(mod = lys_parse_mem(ctx, "module hh {yang-version 1.1;namespace urn:hh;prefix hh;"
2566 "grouping grp {notification g { description \"super g\";}}"
2567 "container top {notification h; uses grp {refine h {description \"ultra h\";}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002568 logbuf_assert("Invalid descendant-schema-nodeid value \"h\" - target node not found. /hh:top/{uses='grp'}/{refine='h'}");
Radek Krejci32b6ecd2019-04-12 10:41:24 +02002569
2570 assert_non_null(mod = lys_parse_mem(ctx, "module ii {yang-version 1.1;namespace urn:ii;prefix ii;"
2571 "grouping grp {action g { description \"super g\";}}"
2572 "container top {action i; uses grp {refine i {description \"ultra i\";}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002573 logbuf_assert("Invalid descendant-schema-nodeid value \"i\" - target node not found. /ii:top/{uses='grp'}/{refine='i'}");
Radek Krejci3641f562019-02-13 15:38:40 +01002574
Radek Krejcie86bf772018-12-14 11:39:53 +01002575 *state = NULL;
2576 ly_ctx_destroy(ctx, NULL);
2577}
2578
Radek Krejci01342af2019-01-03 15:18:08 +01002579static void
2580test_refine(void **state)
2581{
2582 *state = test_refine;
2583
2584 struct ly_ctx *ctx;
2585 struct lys_module *mod;
2586 struct lysc_node *parent, *child;
Radek Krejcia1911222019-07-22 17:24:50 +02002587 struct lysc_node_leaf *leaf;
2588 struct lysc_node_leaflist *llist;
2589 int dynamic;
Radek Krejci01342af2019-01-03 15:18:08 +01002590
2591 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2592
Radek Krejci096235c2019-01-11 11:12:19 +01002593 assert_non_null(lys_parse_mem(ctx, "module grp {yang-version 1.1;namespace urn:grp;prefix g; feature f;typedef mytype {type string; default cheers!;}"
2594 "grouping grp {container c {leaf l {type mytype; default goodbye;}"
2595 "leaf-list ll {type mytype; default goodbye; max-elements 6;}"
2596 "choice ch {default a; leaf a {type int8;}leaf b{type uint8;}}"
2597 "leaf x {type mytype; mandatory true; must 1;}"
2598 "anydata a {mandatory false; if-feature f; description original; reference original;}"
2599 "container c {config false; leaf l {type string;}}}}}", LYS_IN_YANG));
Radek Krejci01342af2019-01-03 15:18:08 +01002600
Radek Krejcif0089082019-01-07 16:42:01 +01002601 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 +01002602 "uses g:grp {refine c/l {default hello; config false;}"
Radek Krejci6b22ab72019-01-07 15:39:20 +01002603 "refine c/ll {default hello;default world; min-elements 2; max-elements 5;}"
Radek Krejcif0089082019-01-07 16:42:01 +01002604 "refine c/ch {default b;config true; if-feature fa;}"
Radek Krejcif3404542019-01-08 13:28:42 +01002605 "refine c/x {mandatory false; must ../ll;description refined; reference refined;}"
2606 "refine c/a {mandatory true; must 1; if-feature fa;description refined; reference refined;}"
Radek Krejci9a54f1f2019-01-07 13:47:55 +01002607 "refine c/c {config true;presence indispensable;}}}", LYS_IN_YANG));
Radek Krejci01342af2019-01-03 15:18:08 +01002608 assert_non_null((parent = mod->compiled->data));
2609 assert_int_equal(LYS_CONTAINER, parent->nodetype);
2610 assert_string_equal("c", parent->name);
Radek Krejcia1911222019-07-22 17:24:50 +02002611 assert_non_null((leaf = (struct lysc_node_leaf*)((struct lysc_node_container*)parent)->child));
2612 assert_int_equal(LYS_LEAF, leaf->nodetype);
2613 assert_string_equal("l", leaf->name);
2614 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2615 assert_int_equal(0, dynamic);
2616 assert_int_equal(LYS_CONFIG_R, leaf->flags & LYS_CONFIG_MASK);
2617 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
2618 assert_int_equal(LYS_LEAFLIST, llist->nodetype);
2619 assert_string_equal("ll", llist->name);
2620 assert_int_equal(2, LY_ARRAY_SIZE(llist->dflts));
2621 assert_string_equal("hello", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
2622 assert_int_equal(0, dynamic);
2623 assert_string_equal("world", llist->dflts[1]->realtype->plugin->print(llist->dflts[1], LYD_XML, NULL, NULL, &dynamic));
2624 assert_int_equal(0, dynamic);
2625 assert_int_equal(2, llist->min);
2626 assert_int_equal(5, llist->max);
2627 assert_non_null(child = llist->next);
Radek Krejci01342af2019-01-03 15:18:08 +01002628 assert_int_equal(LYS_CHOICE, child->nodetype);
2629 assert_string_equal("ch", child->name);
2630 assert_string_equal("b", ((struct lysc_node_choice*)child)->dflt->name);
2631 assert_true(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->dflt->flags);
2632 assert_false(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->cases[0].flags);
Radek Krejcif0089082019-01-07 16:42:01 +01002633 assert_non_null(child->iffeatures);
2634 assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures));
Radek Krejcia1911222019-07-22 17:24:50 +02002635 assert_non_null(leaf = (struct lysc_node_leaf*)child->next);
2636 assert_int_equal(LYS_LEAF, leaf->nodetype);
2637 assert_string_equal("x", leaf->name);
2638 assert_false(LYS_MAND_TRUE & leaf->flags);
2639 assert_string_equal("cheers!", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2640 assert_int_equal(0, dynamic);
2641 assert_non_null(leaf->musts);
2642 assert_int_equal(2, LY_ARRAY_SIZE(leaf->musts));
2643 assert_string_equal("refined", leaf->dsc);
2644 assert_string_equal("refined", leaf->ref);
2645 assert_non_null(child = leaf->next);
Radek Krejci7f6a3812019-01-07 13:48:57 +01002646 assert_int_equal(LYS_ANYDATA, child->nodetype);
2647 assert_string_equal("a", child->name);
2648 assert_true(LYS_MAND_TRUE & child->flags);
Radek Krejci9a564c92019-01-07 14:53:57 +01002649 assert_non_null(((struct lysc_node_anydata*)child)->musts);
2650 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_anydata*)child)->musts));
Radek Krejcif0089082019-01-07 16:42:01 +01002651 assert_non_null(child->iffeatures);
2652 assert_int_equal(2, LY_ARRAY_SIZE(child->iffeatures));
Radek Krejcif3404542019-01-08 13:28:42 +01002653 assert_string_equal("refined", child->dsc);
2654 assert_string_equal("refined", child->ref);
Radek Krejci7f6a3812019-01-07 13:48:57 +01002655 assert_non_null(child = child->next);
Radek Krejcib1b59152019-01-07 13:21:56 +01002656 assert_int_equal(LYS_CONTAINER, child->nodetype);
2657 assert_string_equal("c", child->name);
Radek Krejci7f6a3812019-01-07 13:48:57 +01002658 assert_true(LYS_PRESENCE & child->flags);
Radek Krejcib1b59152019-01-07 13:21:56 +01002659 assert_true(LYS_CONFIG_W & child->flags);
2660 assert_true(LYS_CONFIG_W & ((struct lysc_node_container*)child)->child->flags);
Radek Krejci01342af2019-01-03 15:18:08 +01002661
2662 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 +01002663 "uses g:grp {status deprecated; refine c/x {default hello; mandatory false;}}}", LYS_IN_YANG));
Radek Krejcia1911222019-07-22 17:24:50 +02002664 assert_non_null((leaf = (struct lysc_node_leaf*)((struct lysc_node_container*)mod->compiled->data)->child->prev->prev->prev));
2665 assert_int_equal(LYS_LEAF, leaf->nodetype);
2666 assert_string_equal("x", leaf->name);
2667 assert_false(LYS_MAND_TRUE & leaf->flags);
2668 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2669 assert_int_equal(0, dynamic);
Radek Krejci01342af2019-01-03 15:18:08 +01002670
2671 /* invalid */
Radek Krejci096235c2019-01-11 11:12:19 +01002672 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002673 "uses g:grp {refine c {default hello;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002674 logbuf_assert("Invalid refine of default - container cannot hold default value(s). /aa:{uses='g:grp'}/{refine='c'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002675
Radek Krejci096235c2019-01-11 11:12:19 +01002676 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002677 "uses g:grp {refine c/l {default hello; default world;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002678 logbuf_assert("Invalid refine of default - leaf cannot hold 2 default values. /bb:{uses='g:grp'}/{refine='c/l'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002679
Radek Krejci096235c2019-01-11 11:12:19 +01002680 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002681 "uses g:grp {refine c/ll {default hello; default world;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002682 logbuf_assert("Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules. /cc:{uses='g:grp'}/{refine='c/ll'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002683
Radek Krejci096235c2019-01-11 11:12:19 +01002684 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002685 "uses g:grp {refine c/ll {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002686 logbuf_assert("Invalid refine of mandatory - leaf-list cannot hold mandatory statement. /dd:{uses='g:grp'}/{refine='c/ll'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002687
Radek Krejci096235c2019-01-11 11:12:19 +01002688 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002689 "uses g:grp {refine c/l {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002690 logbuf_assert("Invalid refine of mandatory - leaf already has \"default\" statement. /ee:{uses='g:grp'}/{refine='c/l'}");
Radek Krejci096235c2019-01-11 11:12:19 +01002691 assert_null(lys_parse_mem(ctx, "module ef {namespace urn:ef;prefix ef;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002692 "uses g:grp {refine c/ch {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002693 logbuf_assert("Invalid refine of mandatory - choice already has \"default\" statement. /ef:{uses='g:grp'}/{refine='c/ch'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002694
Radek Krejci096235c2019-01-11 11:12:19 +01002695 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002696 "uses g:grp {refine c/ch/a/a {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002697 logbuf_assert("Invalid refine of mandatory under the default case. /ff:{uses='g:grp'}/{refine='c/ch/a/a'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002698
Radek Krejci096235c2019-01-11 11:12:19 +01002699 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;import grp {prefix g;}"
Radek Krejci01342af2019-01-03 15:18:08 +01002700 "uses g:grp {refine c/x {default hello;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002701 logbuf_assert("Invalid refine of default - the node is mandatory. /gg:{uses='g:grp'}/{refine='c/x'}");
Radek Krejci01342af2019-01-03 15:18:08 +01002702
Radek Krejci096235c2019-01-11 11:12:19 +01002703 assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;import grp {prefix g;}"
Radek Krejcib1b59152019-01-07 13:21:56 +01002704 "uses g:grp {refine c/c/l {config true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002705 logbuf_assert("Invalid refine of config - configuration node cannot be child of any state data node. /hh:{uses='g:grp'}/{refine='c/c/l'}");
Radek Krejcib1b59152019-01-07 13:21:56 +01002706
Radek Krejci096235c2019-01-11 11:12:19 +01002707 assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;grouping grp {leaf l {type string; status deprecated;}}"
Radek Krejcib1b59152019-01-07 13:21:56 +01002708 "uses grp {status obsolete;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002709 logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status. /ii:{uses='grp'}/ii:l");
Radek Krejcib1b59152019-01-07 13:21:56 +01002710
Radek Krejci096235c2019-01-11 11:12:19 +01002711 assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;import grp {prefix g;}"
Radek Krejci9a54f1f2019-01-07 13:47:55 +01002712 "uses g:grp {refine c/x {presence nonsence;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002713 logbuf_assert("Invalid refine of presence statement - leaf cannot hold the presence statement. /jj:{uses='g:grp'}/{refine='c/x'}");
Radek Krejci9a54f1f2019-01-07 13:47:55 +01002714
Radek Krejci096235c2019-01-11 11:12:19 +01002715 assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;import grp {prefix g;}"
Radek Krejci9a564c92019-01-07 14:53:57 +01002716 "uses g:grp {refine c/ch {must 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002717 logbuf_assert("Invalid refine of must statement - choice cannot hold any must statement. /kk:{uses='g:grp'}/{refine='c/ch'}");
Radek Krejci9a564c92019-01-07 14:53:57 +01002718
Radek Krejci096235c2019-01-11 11:12:19 +01002719 assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;import grp {prefix g;}"
Radek Krejci6b22ab72019-01-07 15:39:20 +01002720 "uses g:grp {refine c/x {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002721 logbuf_assert("Invalid refine of min-elements statement - leaf cannot hold this statement. /ll:{uses='g:grp'}/{refine='c/x'}");
Radek Krejci6b22ab72019-01-07 15:39:20 +01002722
Radek Krejci096235c2019-01-11 11:12:19 +01002723 assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;import grp {prefix g;}"
Radek Krejcif2271f12019-01-07 16:42:23 +01002724 "uses g:grp {refine c/ll {min-elements 10;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002725 logbuf_assert("Invalid refine of min-elements statement - \"min-elements\" is bigger than \"max-elements\". /mm:{uses='g:grp'}/{refine='c/ll'}");
Radek Krejcif2271f12019-01-07 16:42:23 +01002726
Radek Krejci01342af2019-01-03 15:18:08 +01002727 *state = NULL;
2728 ly_ctx_destroy(ctx, NULL);
2729}
Radek Krejcie86bf772018-12-14 11:39:53 +01002730
Radek Krejci95710c92019-02-11 15:49:55 +01002731static void
2732test_augment(void **state)
2733{
2734 *state = test_augment;
2735
2736 struct ly_ctx *ctx;
2737 struct lys_module *mod;
2738 const struct lysc_node *node;
2739 const struct lysc_node_choice *ch;
2740 const struct lysc_node_case *c;
Radek Krejcif538ce52019-03-05 10:46:14 +01002741 const struct lysc_action *rpc;
Radek Krejci95710c92019-02-11 15:49:55 +01002742
2743 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2744
2745 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module a {namespace urn:a;prefix a; typedef atype {type string;}"
2746 "container top {leaf a {type string;}}}");
2747 assert_non_null(lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;import a {prefix a;}"
2748 "leaf b {type a:atype;}}", LYS_IN_YANG));
2749 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module c {namespace urn:c;prefix c; import a {prefix a;}"
2750 "augment /a:top/ { container c {leaf c {type a:atype;}}}}");
2751 assert_non_null(lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;import a {prefix a;} import c {prefix c;}"
2752 "augment /a:top/c:c/ { leaf d {type a:atype;} leaf c {type string;}}}", LYS_IN_YANG));
2753 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "a")));
2754 assert_non_null(ly_ctx_get_module_implemented(ctx, "b"));
2755 assert_non_null(ly_ctx_get_module_implemented(ctx, "c"));
2756 assert_non_null(ly_ctx_get_module_implemented(ctx, "d"));
2757 assert_non_null(node = mod->compiled->data);
2758 assert_string_equal(node->name, "top");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002759 assert_non_null(node = lysc_node_children(node, 0));
Radek Krejci95710c92019-02-11 15:49:55 +01002760 assert_string_equal(node->name, "a");
2761 assert_non_null(node = node->next);
2762 assert_string_equal(node->name, "c");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002763 assert_non_null(node = lysc_node_children(node, 0));
Radek Krejci95710c92019-02-11 15:49:55 +01002764 assert_string_equal(node->name, "c");
2765 assert_non_null(node = node->next);
2766 assert_string_equal(node->name, "d");
2767 assert_non_null(node = node->next);
2768 assert_string_equal(node->name, "c");
2769
2770 assert_non_null((mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e;choice ch {leaf a {type string;}}"
Radek Krejci00b874b2019-02-12 10:54:50 +01002771 "augment /ch/c {when 1; leaf lc2 {type uint16;}}"
2772 "augment /ch { when 1; leaf b {type int8;} case c {leaf lc1 {type uint8;}}}}", LYS_IN_YANG)));
Radek Krejci95710c92019-02-11 15:49:55 +01002773 assert_non_null((ch = (const struct lysc_node_choice*)mod->compiled->data));
2774 assert_null(mod->compiled->data->next);
2775 assert_string_equal("ch", ch->name);
2776 assert_non_null(c = ch->cases);
2777 assert_string_equal("a", c->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002778 assert_null(c->when);
Radek Krejci95710c92019-02-11 15:49:55 +01002779 assert_string_equal("a", c->child->name);
2780 assert_non_null(c = (const struct lysc_node_case*)c->next);
2781 assert_string_equal("b", c->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002782 assert_non_null(c->when);
Radek Krejci95710c92019-02-11 15:49:55 +01002783 assert_string_equal("b", c->child->name);
2784 assert_non_null(c = (const struct lysc_node_case*)c->next);
2785 assert_string_equal("c", c->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002786 assert_non_null(c->when);
Radek Krejci95710c92019-02-11 15:49:55 +01002787 assert_string_equal("lc1", ((const struct lysc_node_case*)c)->child->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002788 assert_null(((const struct lysc_node_case*)c)->child->when);
Radek Krejci95710c92019-02-11 15:49:55 +01002789 assert_string_equal("lc2", ((const struct lysc_node_case*)c)->child->next->name);
Radek Krejci00b874b2019-02-12 10:54:50 +01002790 assert_non_null(((const struct lysc_node_case*)c)->child->next->when);
Radek Krejci95710c92019-02-11 15:49:55 +01002791 assert_ptr_equal(ch->cases->child->prev, ((const struct lysc_node_case*)c)->child->next);
2792 assert_null(c->next);
2793
2794 assert_non_null((mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;grouping g {leaf a {type string;}}"
2795 "container c;"
2796 "augment /c {uses g;}}", LYS_IN_YANG)));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002797 assert_non_null(node = lysc_node_children(mod->compiled->data, 0));
Radek Krejci95710c92019-02-11 15:49:55 +01002798 assert_string_equal(node->name, "a");
2799
Radek Krejci339f5292019-02-11 16:42:34 +01002800 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule gsub {belongs-to g {prefix g;}"
2801 "augment /c {container sub;}}");
2802 assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;include gsub; container c;"
2803 "augment /c/sub {leaf main {type string;}}}", LYS_IN_YANG));
2804 assert_non_null(mod->compiled->data);
2805 assert_string_equal("c", mod->compiled->data->name);
2806 assert_non_null(node = ((struct lysc_node_container*)mod->compiled->data)->child);
2807 assert_string_equal("sub", node->name);
2808 assert_non_null(node = ((struct lysc_node_container*)node)->child);
2809 assert_string_equal("main", node->name);
2810
Radek Krejcif538ce52019-03-05 10:46:14 +01002811 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module himp {namespace urn:hi;prefix hi;container top; rpc func;}");
Radek Krejci733988a2019-02-15 15:12:44 +01002812 assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;import himp {prefix hi;}container top;"
2813 "augment /hi:top {container p {presence XXX; leaf x {mandatory true;type string;}}}"
2814 "augment /hi:top {list ll {key x;leaf x {type string;}leaf y {mandatory true; type string;}}}"
2815 "augment /hi:top {leaf l {type string; mandatory true; config false;}}"
2816 "augment /top {leaf l {type string; mandatory true;}}}", LYS_IN_YANG));
2817 assert_non_null(node = mod->compiled->data);
2818 assert_non_null(node = ((struct lysc_node_container*)node)->child);
2819 assert_string_equal("l", node->name);
2820 assert_true(node->flags & LYS_MAND_TRUE);
2821 assert_non_null(mod = ly_ctx_get_module_implemented(ctx, "himp"));
Radek Krejcife909632019-02-12 15:34:42 +01002822 assert_non_null(node = mod->compiled->data);
2823 assert_non_null(node = ((struct lysc_node_container*)node)->child);
2824 assert_string_equal("p", node->name);
Radek Krejci733988a2019-02-15 15:12:44 +01002825 assert_non_null(node = node->next);
2826 assert_string_equal("ll", node->name);
2827 assert_non_null(node = node->next);
2828 assert_string_equal("l", node->name);
2829 assert_true(node->flags & LYS_CONFIG_R);
Radek Krejcife909632019-02-12 15:34:42 +01002830
Radek Krejcif538ce52019-03-05 10:46:14 +01002831 assert_non_null(lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;import himp {prefix hi;}"
2832 "augment /hi:func/input {leaf x {type string;}}"
2833 "augment /hi:func/output {leaf y {type string;}}}", LYS_IN_YANG));
2834 assert_non_null(mod = ly_ctx_get_module_implemented(ctx, "himp"));
2835 assert_non_null(rpc = mod->compiled->rpcs);
2836 assert_int_equal(1, LY_ARRAY_SIZE(rpc));
2837 assert_non_null(rpc->input.data);
2838 assert_string_equal("x", rpc->input.data->name);
2839 assert_null(rpc->input.data->next);
2840 assert_non_null(rpc->output.data);
2841 assert_string_equal("y", rpc->output.data->name);
2842 assert_null(rpc->output.data->next);
2843
Radek Krejci95710c92019-02-11 15:49:55 +01002844 assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; container c {leaf a {type string;}}"
2845 "augment /x {leaf a {type int8;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002846 logbuf_assert("Invalid absolute-schema-nodeid value \"/x\" - target node not found. /aa:{augment='/x'}");
Radek Krejci95710c92019-02-11 15:49:55 +01002847
2848 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; container c {leaf a {type string;}}"
2849 "augment /c {leaf a {type int8;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002850 logbuf_assert("Duplicate identifier \"a\" of data definition/RPC/action/Notification statement. /bb:{augment='/c'}/a");
Radek Krejci95710c92019-02-11 15:49:55 +01002851
2852
Radek Krejci339f5292019-02-11 16:42:34 +01002853 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; container c {leaf a {type string;}}"
2854 "augment /c/a {leaf a {type int8;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002855 logbuf_assert("Augment's absolute-schema-nodeid \"/c/a\" refers to a leaf node which is not an allowed augment's target. /cc:{augment='/c/a'}");
Radek Krejci339f5292019-02-11 16:42:34 +01002856
2857 assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; container c {leaf a {type string;}}"
2858 "augment /c {case b {leaf d {type int8;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002859 logbuf_assert("Invalid augment of container node which is not allowed to contain case node \"b\". /dd:{augment='/c'}");
Radek Krejci339f5292019-02-11 16:42:34 +01002860
Radek Krejci733988a2019-02-15 15:12:44 +01002861 assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; import himp {prefix hi;}"
2862 "augment /hi:top {container c {leaf d {mandatory true; type int8;}}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002863 logbuf_assert("Invalid augment adding mandatory node \"c\" without making it conditional via when statement. /ee:{augment='/hi:top'}");
Radek Krejcife909632019-02-12 15:34:42 +01002864
Radek Krejci3641f562019-02-13 15:38:40 +01002865 assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff; container top;"
2866 "augment ../top {leaf x {type int8;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002867 logbuf_assert("Invalid absolute-schema-nodeid value \"../top\" - missing starting \"/\". /ff:{augment='../top'}");
Radek Krejci95710c92019-02-11 15:49:55 +01002868
Radek Krejcif538ce52019-03-05 10:46:14 +01002869 assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg; rpc func;"
2870 "augment /func {leaf x {type int8;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02002871 logbuf_assert("Augment's absolute-schema-nodeid \"/func\" refers to a RPC/action node which is not an allowed augment's target. /gg:{augment='/func'}");
Radek Krejcif538ce52019-03-05 10:46:14 +01002872
Radek Krejci95710c92019-02-11 15:49:55 +01002873 *state = NULL;
2874 ly_ctx_destroy(ctx, NULL);
2875}
2876
Radek Krejciccd20f12019-02-15 14:12:27 +01002877static void
2878test_deviation(void **state)
2879{
2880 *state = test_deviation;
2881
2882 struct ly_ctx *ctx;
2883 struct lys_module *mod;
2884 const struct lysc_node *node;
Radek Krejci7af64242019-02-18 13:07:53 +01002885 const struct lysc_node_list *list;
Radek Krejcia1911222019-07-22 17:24:50 +02002886 const struct lysc_node_leaflist *llist;
2887 const struct lysc_node_leaf *leaf;
Radek Krejci474f9b82019-07-24 11:36:37 +02002888 const char *str;
Radek Krejcia1911222019-07-22 17:24:50 +02002889 int dynamic;
Radek Krejciccd20f12019-02-15 14:12:27 +01002890
2891 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx));
2892
2893 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module a {namespace urn:a;prefix a;"
Radek Krejci88ef64b2019-02-18 16:02:06 +01002894 "container top {leaf a {type string;} leaf b {type string;} leaf c {type string;}}"
2895 "choice ch {default c; case b {leaf b{type string;}} case a {leaf a{type string;} leaf x {type string;}}"
Radek Krejcif538ce52019-03-05 10:46:14 +01002896 " case c {leaf c{type string;}}}"
2897 "rpc func1 { input { leaf x {type int8;}} output {leaf y {type int8;}}}"
2898 "rpc func2;}");
Radek Krejciccd20f12019-02-15 14:12:27 +01002899 assert_non_null(lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;import a {prefix a;}"
Radek Krejci88ef64b2019-02-18 16:02:06 +01002900 "deviation /a:top/a:b {deviate not-supported;}"
2901 "deviation /a:ch/a:a/a:x {deviate not-supported;}"
2902 "deviation /a:ch/a:c/a:c {deviate not-supported;}"
2903 "deviation /a:ch/a:b {deviate not-supported;}"
Radek Krejcif538ce52019-03-05 10:46:14 +01002904 "deviation /a:ch/a:a/a:a {deviate not-supported;}"
2905 "deviation /a:func1/a:input {deviate not-supported;}"
2906 "deviation /a:func1/a:output {deviate not-supported;}"
2907 "deviation /a:func2 {deviate not-supported;}}", LYS_IN_YANG));
Radek Krejciccd20f12019-02-15 14:12:27 +01002908 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "a")));
2909 assert_non_null(node = mod->compiled->data);
2910 assert_string_equal(node->name, "top");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002911 assert_non_null(node = lysc_node_children(node, 0));
Radek Krejciccd20f12019-02-15 14:12:27 +01002912 assert_string_equal(node->name, "a");
2913 assert_non_null(node = node->next);
2914 assert_string_equal(node->name, "c");
Radek Krejci88ef64b2019-02-18 16:02:06 +01002915 assert_null(node = node->next);
2916 assert_non_null(node = mod->compiled->data->next);
2917 assert_string_equal("ch", node->name);
2918 assert_null(((struct lysc_node_choice*)node)->dflt);
2919 assert_null(((struct lysc_node_choice*)node)->cases);
Radek Krejcif538ce52019-03-05 10:46:14 +01002920 assert_int_equal(1, LY_ARRAY_SIZE(mod->compiled->rpcs));
2921 assert_null(mod->compiled->rpcs[0].input.data);
2922 assert_null(mod->compiled->rpcs[0].output.data);
Radek Krejciccd20f12019-02-15 14:12:27 +01002923
2924 assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mytype {type string; units kilometers;}"
2925 "leaf c1 {type mytype;} leaf c2 {type mytype; units meters;} leaf c3 {type mytype; units meters;}"
2926 "deviation /c1 {deviate add {units meters;}}"
2927 "deviation /c2 {deviate delete {units meters;}}"
2928 "deviation /c3 {deviate replace {units centimeters;}}}", LYS_IN_YANG));
2929 assert_non_null(node = mod->compiled->data);
2930 assert_string_equal("c1", node->name);
2931 assert_string_equal("meters", ((struct lysc_node_leaf*)node)->units);
2932 assert_non_null(node = node->next);
2933 assert_string_equal("c2", node->name);
2934 assert_null(((struct lysc_node_leaf*)node)->units);
2935 assert_non_null(node = node->next);
2936 assert_string_equal("c3", node->name);
2937 assert_string_equal("centimeters", ((struct lysc_node_leaf*)node)->units);
2938
2939 assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; leaf c1 {type string; must 1;}"
Radek Krejcib4532d12019-02-15 16:13:29 +01002940 "container c2 {presence yes; must 1; must 2;} leaf c3 {type string; must 1; must 3;}"
Radek Krejciccd20f12019-02-15 14:12:27 +01002941 "deviation /c1 {deviate add {must 3;}}"
2942 "deviation /c2 {deviate delete {must 2;}}"
2943 "deviation /c3 {deviate delete {must 3; must 1;}}}", LYS_IN_YANG));
2944 assert_non_null(node = mod->compiled->data);
2945 assert_string_equal("c1", node->name);
2946 assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaf*)node)->musts));
2947 assert_string_equal("3", ((struct lysc_node_leaf*)node)->musts[1].cond->expr);
2948 assert_non_null(node = node->next);
2949 assert_string_equal("c2", node->name);
Radek Krejcib4532d12019-02-15 16:13:29 +01002950 assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_container*)node)->musts));
2951 assert_string_equal("1", ((struct lysc_node_container*)node)->musts[0].cond->expr);
Radek Krejciccd20f12019-02-15 14:12:27 +01002952 assert_non_null(node = node->next);
2953 assert_string_equal("c3", node->name);
2954 assert_null(((struct lysc_node_leaf*)node)->musts);
2955
Radek Krejcib4532d12019-02-15 16:13:29 +01002956 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module e {yang-version 1.1; namespace urn:e;prefix e; typedef mytype {type string; default nothing;}"
Radek Krejci468a94f2019-02-15 14:52:36 +01002957 "choice a {default a;leaf a {type string;} leaf b {type string;} leaf c {type string; mandatory true;}}"
Radek Krejciccd20f12019-02-15 14:12:27 +01002958 "choice b {default a;leaf a {type string;} leaf b {type string;}}"
2959 "leaf c {default hello; type string;}"
Radek Krejcib4532d12019-02-15 16:13:29 +01002960 "leaf-list d {default hello; default world; type string;}"
2961 "leaf c2 {type mytype;} leaf-list d2 {type mytype;}}");
Radek Krejciccd20f12019-02-15 14:12:27 +01002962 assert_non_null(lys_parse_mem(ctx, "module f {yang-version 1.1; namespace urn:f;prefix f;import e {prefix x;}"
2963 "deviation /x:a {deviate delete {default a;}}"
2964 "deviation /x:b {deviate delete {default x:a;}}"
2965 "deviation /x:c {deviate delete {default hello;}}"
2966 "deviation /x:d {deviate delete {default world;}}}", LYS_IN_YANG));
2967 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e")));
2968 assert_non_null(node = mod->compiled->data);
2969 assert_null(((struct lysc_node_choice*)node)->dflt);
2970 assert_non_null(node = node->next);
2971 assert_null(((struct lysc_node_choice*)node)->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02002972 assert_non_null(leaf = (struct lysc_node_leaf*)node->next);
2973 assert_null(leaf->dflt);
2974 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
2975 assert_int_equal(1, LY_ARRAY_SIZE(llist->dflts));
2976 assert_string_equal("hello", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
2977 assert_int_equal(0, dynamic);
2978 assert_non_null(leaf = (struct lysc_node_leaf*)llist->next);
2979 assert_string_equal("nothing", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
2980 assert_int_equal(0, dynamic);
2981 assert_int_equal(5, leaf->dflt->realtype->refcount); /* 3x type reference, 2x default value reference (typedef's default does not reference own type) */
2982 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
2983 assert_int_equal(1, LY_ARRAY_SIZE(llist->dflts));
2984 assert_string_equal("nothing", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
2985 assert_int_equal(0, dynamic);
Radek Krejciccd20f12019-02-15 14:12:27 +01002986
2987 assert_non_null(lys_parse_mem(ctx, "module g {yang-version 1.1; namespace urn:g;prefix g;import e {prefix x;}"
2988 "deviation /x:b {deviate add {default x:b;}}"
2989 "deviation /x:c {deviate add {default bye;}}"
Radek Krejcib4532d12019-02-15 16:13:29 +01002990 "deviation /x:d {deviate add {default all; default people;}}"
Radek Krejci462cf252019-07-24 09:49:08 +02002991 "deviation /x:c2 {deviate add {default hi; must 1;}}"
Radek Krejcib4532d12019-02-15 16:13:29 +01002992 "deviation /x:d2 {deviate add {default hi; default all;}}}", LYS_IN_YANG));
Radek Krejciccd20f12019-02-15 14:12:27 +01002993 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e")));
2994 assert_non_null(node = mod->compiled->data);
2995 assert_null(((struct lysc_node_choice*)node)->dflt);
2996 assert_non_null(node = node->next);
2997 assert_non_null(((struct lysc_node_choice*)node)->dflt);
2998 assert_string_equal("b", ((struct lysc_node_choice*)node)->dflt->name);
Radek Krejcia1911222019-07-22 17:24:50 +02002999 assert_non_null(leaf = (struct lysc_node_leaf*)node->next);
3000 assert_non_null(leaf->dflt);
3001 assert_string_equal("bye", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
3002 assert_int_equal(0, dynamic);
3003 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
3004 assert_int_equal(3, LY_ARRAY_SIZE(llist->dflts));
3005 assert_string_equal("hello", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
3006 assert_int_equal(0, dynamic);
3007 assert_string_equal("all", llist->dflts[1]->realtype->plugin->print(llist->dflts[1], LYD_XML, NULL, NULL, &dynamic));
3008 assert_int_equal(0, dynamic);
3009 assert_string_equal("people", llist->dflts[2]->realtype->plugin->print(llist->dflts[2], LYD_XML, NULL, NULL, &dynamic));
3010 assert_int_equal(0, dynamic);
3011 assert_non_null(leaf = (struct lysc_node_leaf*)llist->next);
3012 assert_non_null(leaf->dflt);
3013 assert_string_equal("hi", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
3014 assert_int_equal(0, dynamic);
3015 assert_int_equal(6, leaf->dflt->realtype->refcount); /* 3x type reference, 3x default value reference
3016 - previous type's default values were replaced by node's default values where d2 now has 2 default values */
Radek Krejci462cf252019-07-24 09:49:08 +02003017 assert_int_equal(1, LY_ARRAY_SIZE(leaf->musts));
3018 assert_ptr_equal(leaf->musts[0].module, ly_ctx_get_module_implemented(ctx, "g"));
Radek Krejcia1911222019-07-22 17:24:50 +02003019 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
3020 assert_int_equal(2, LY_ARRAY_SIZE(llist->dflts));
3021 assert_string_equal("hi", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
3022 assert_int_equal(0, dynamic);
3023 assert_string_equal("all", llist->dflts[1]->realtype->plugin->print(llist->dflts[1], LYD_XML, NULL, NULL, &dynamic));
3024 assert_int_equal(0, dynamic);
Radek Krejciccd20f12019-02-15 14:12:27 +01003025
3026 assert_non_null(lys_parse_mem(ctx, "module h {yang-version 1.1; namespace urn:h;prefix h;import e {prefix x;}"
3027 "deviation /x:b {deviate replace {default x:a;}}"
3028 "deviation /x:c {deviate replace {default hello;}}}", LYS_IN_YANG));
3029 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e")));
3030 assert_non_null(node = mod->compiled->data);
3031 assert_null(((struct lysc_node_choice*)node)->dflt);
3032 assert_non_null(node = node->next);
3033 assert_non_null(((struct lysc_node_choice*)node)->dflt);
3034 assert_string_equal("a", ((struct lysc_node_choice*)node)->dflt->name);
Radek Krejcia1911222019-07-22 17:24:50 +02003035 assert_non_null(leaf = (struct lysc_node_leaf*)node->next);
3036 assert_non_null(leaf->dflt);
3037 assert_string_equal("hello", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
3038 assert_int_equal(0, dynamic);
Radek Krejciccd20f12019-02-15 14:12:27 +01003039
Radek Krejci7af64242019-02-18 13:07:53 +01003040 ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module i {namespace urn:i;prefix i;"
3041 "list l1 {key a; leaf a {type string;} leaf b {type string;} leaf c {type string;}}"
3042 "list l2 {key a; unique \"b c\"; unique \"d\"; leaf a {type string;} leaf b {type string;}"
3043 " leaf c {type string;} leaf d {type string;}}}");
3044 assert_non_null(lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;import i {prefix i;}"
3045 "augment /i:l1 {leaf j_c {type string;}}"
3046 "deviation /i:l1 {deviate add {unique \"i:b j_c\"; }}"
3047 "deviation /i:l1 {deviate add {unique \"i:c\";}}"
3048 "deviation /i:l2 {deviate delete {unique \"d\"; unique \"b c\";}}}", LYS_IN_YANG));
3049 assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "i")));
3050 assert_non_null(list = (struct lysc_node_list*)mod->compiled->data);
3051 assert_string_equal("l1", list->name);
3052 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques));
3053 assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0]));
3054 assert_string_equal("b", list->uniques[0][0]->name);
3055 assert_string_equal("j_c", list->uniques[0][1]->name);
3056 assert_int_equal(1, LY_ARRAY_SIZE(list->uniques[1]));
3057 assert_string_equal("c", list->uniques[1][0]->name);
3058 assert_non_null(list = (struct lysc_node_list*)list->next);
3059 assert_string_equal("l2", list->name);
3060 assert_null(list->uniques);
3061
Radek Krejci93dcc392019-02-19 10:43:38 +01003062 assert_non_null(mod = lys_parse_mem(ctx, "module k {namespace urn:k;prefix k; leaf a {type string;}"
3063 "container top {leaf x {type string;} leaf y {type string; config false;}}"
3064 "deviation /a {deviate add {config false; }}"
3065 "deviation /top {deviate add {config false;}}}", LYS_IN_YANG));
3066 assert_non_null(node = mod->compiled->data);
3067 assert_string_equal("a", node->name);
3068 assert_true(node->flags & LYS_CONFIG_R);
3069 assert_non_null(node = node->next);
3070 assert_string_equal("top", node->name);
3071 assert_true(node->flags & LYS_CONFIG_R);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003072 assert_non_null(node = lysc_node_children(node, 0));
Radek Krejci93dcc392019-02-19 10:43:38 +01003073 assert_string_equal("x", node->name);
3074 assert_true(node->flags & LYS_CONFIG_R);
3075 assert_non_null(node = node->next);
3076 assert_string_equal("y", node->name);
3077 assert_true(node->flags & LYS_CONFIG_R);
3078
3079 assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l; leaf a {config false; type string;}"
3080 "container top {config false; leaf x {type string;}}"
3081 "deviation /a {deviate replace {config true;}}"
3082 "deviation /top {deviate replace {config true;}}}", LYS_IN_YANG));
3083 assert_non_null(node = mod->compiled->data);
3084 assert_string_equal("a", node->name);
3085 assert_true(node->flags & LYS_CONFIG_W);
3086 assert_non_null(node = node->next);
3087 assert_string_equal("top", node->name);
3088 assert_true(node->flags & LYS_CONFIG_W);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003089 assert_non_null(node = lysc_node_children(node, 0));
Radek Krejci93dcc392019-02-19 10:43:38 +01003090 assert_string_equal("x", node->name);
3091 assert_true(node->flags & LYS_CONFIG_W);
3092
Radek Krejcif1421c22019-02-19 13:05:20 +01003093 assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;"
3094 "container a {leaf a {type string;}}"
3095 "container b {leaf b {mandatory true; type string;}}"
3096 "deviation /a/a {deviate add {mandatory true;}}"
3097 "deviation /b/b {deviate replace {mandatory false;}}}", LYS_IN_YANG));
3098 assert_non_null(node = mod->compiled->data);
3099 assert_string_equal("a", node->name);
3100 assert_true((node->flags & LYS_MAND_MASK) == LYS_MAND_TRUE);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003101 assert_true((lysc_node_children(node, 0)->flags & LYS_MAND_MASK) == LYS_MAND_TRUE);
Radek Krejcif1421c22019-02-19 13:05:20 +01003102 assert_non_null(node = node->next);
3103 assert_string_equal("b", node->name);
3104 assert_false(node->flags & LYS_MAND_MASK); /* just unset on container */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003105 assert_true((lysc_node_children(node, 0)->flags & LYS_MAND_MASK) == LYS_MAND_FALSE);
Radek Krejcif1421c22019-02-19 13:05:20 +01003106
Radek Krejci551b12c2019-02-19 16:11:21 +01003107 assert_non_null(mod = lys_parse_mem(ctx, "module n {yang-version 1.1; namespace urn:n;prefix n;"
3108 "leaf a {default test; type string;}"
3109 "leaf b {mandatory true; type string;}"
3110 "deviation /a {deviate add {mandatory true;} deviate delete {default test;}}"
3111 "deviation /b {deviate add {default test;} deviate replace {mandatory false;}}}", LYS_IN_YANG));
3112 assert_non_null(node = mod->compiled->data);
3113 assert_string_equal("a", node->name);
3114 assert_null(((struct lysc_node_leaf*)node)->dflt);
3115 assert_true((node->flags & LYS_MAND_MASK) == LYS_MAND_TRUE);
3116 assert_non_null(node = node->next);
3117 assert_string_equal("b", node->name);
3118 assert_non_null(((struct lysc_node_leaf*)node)->dflt);
3119 assert_true((node->flags & LYS_MAND_MASK) == LYS_MAND_FALSE);
3120
3121 assert_non_null(mod = lys_parse_mem(ctx, "module o {namespace urn:o;prefix o;"
3122 "leaf-list a {type string;}"
3123 "list b {config false;}"
3124 "leaf-list c {min-elements 1; max-elements 10; type string;}"
3125 "list d {min-elements 10; max-elements 100; config false;}"
3126 "deviation /a {deviate add {min-elements 1; max-elements 10;}}"
3127 "deviation /b {deviate add {min-elements 10; max-elements 100;}}"
3128 "deviation /c {deviate replace {min-elements 10; max-elements 100;}}"
3129 "deviation /d {deviate replace {min-elements 1; max-elements 10;}}}", LYS_IN_YANG));
3130 assert_non_null(node = mod->compiled->data);
3131 assert_string_equal("a", node->name);
3132 assert_int_equal(1, ((struct lysc_node_leaflist*)node)->min);
3133 assert_int_equal(10, ((struct lysc_node_leaflist*)node)->max);
3134 assert_non_null(node = node->next);
3135 assert_string_equal("b", node->name);
3136 assert_int_equal(10, ((struct lysc_node_list*)node)->min);
3137 assert_int_equal(100, ((struct lysc_node_list*)node)->max);
3138 assert_non_null(node = node->next);
3139 assert_string_equal("c", node->name);
3140 assert_int_equal(10, ((struct lysc_node_leaflist*)node)->min);
3141 assert_int_equal(100, ((struct lysc_node_leaflist*)node)->max);
3142 assert_non_null(node = node->next);
3143 assert_string_equal("d", node->name);
3144 assert_int_equal(1, ((struct lysc_node_list*)node)->min);
3145 assert_int_equal(10, ((struct lysc_node_list*)node)->max);
3146
Radek Krejci33f72892019-02-21 10:36:58 +01003147 assert_non_null(mod = lys_parse_mem(ctx, "module p {yang-version 1.1; namespace urn:p;prefix p; typedef mytype {type int8; default 1;}"
3148 "leaf a {type string; default 10;} leaf-list b {type string;}"
3149 "deviation /a {deviate replace {type mytype;}}"
3150 "deviation /b {deviate replace {type mytype;}}}", LYS_IN_YANG));
Radek Krejcia1911222019-07-22 17:24:50 +02003151 assert_non_null(leaf = (struct lysc_node_leaf*)mod->compiled->data);
3152 assert_string_equal("a", leaf->name);
3153 assert_int_equal(LY_TYPE_INT8, leaf->type->basetype);
3154 assert_string_equal("10", leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, NULL, NULL, &dynamic));
3155 assert_int_equal(0, dynamic);
3156 assert_int_equal(10, leaf->dflt->uint8);
3157 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
3158 assert_string_equal("b", llist->name);
3159 assert_int_equal(LY_TYPE_INT8, llist->type->basetype);
3160 assert_int_equal(1, LY_ARRAY_SIZE(llist->dflts));
3161 assert_string_equal("1", llist->dflts[0]->realtype->plugin->print(llist->dflts[0], LYD_XML, NULL, NULL, &dynamic));
3162 assert_int_equal(0, dynamic);
3163 assert_int_equal(1, llist->dflts[0]->uint8);
Radek Krejci33f72892019-02-21 10:36:58 +01003164
Radek Krejci950f6a52019-09-12 17:15:32 +02003165 /* instance-identifiers with NULL canonical_cach are changed to string types with a canonical_cache value equal to the original value */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003166 assert_non_null(mod = lys_parse_mem(ctx, "module q {yang-version 1.1; namespace urn:q;prefix q; import e {prefix e;}"
Radek Krejci1c0c3442019-07-23 16:08:47 +02003167 "leaf q {type instance-identifier; default \"/e:d2\";}"
3168 "leaf-list ql {type instance-identifier; default \"/e:d\"; default \"/e:d2\";}}", LYS_IN_YANG));
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003169 assert_non_null(lys_parse_mem(ctx, "module qdev {yang-version 1.1; namespace urn:qdev;prefix qd; import q {prefix q;}"
Radek Krejci1c0c3442019-07-23 16:08:47 +02003170 "deviation /q:q { deviate replace {type string;}}"
3171 "deviation /q:ql { deviate replace {type string;}}}", LYS_IN_YANG));
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003172 assert_non_null(leaf = (struct lysc_node_leaf*)mod->compiled->data);
3173 assert_int_equal(LY_TYPE_STRING, leaf->dflt->realtype->basetype);
Radek Krejci950f6a52019-09-12 17:15:32 +02003174 assert_non_null(leaf->dflt->canonical_cache);
3175 assert_string_equal("/e:d2", leaf->dflt->canonical_cache);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003176 assert_non_null(llist = (struct lysc_node_leaflist*)leaf->next);
3177 assert_int_equal(2, LY_ARRAY_SIZE(llist->dflts));
3178 assert_int_equal(2, LY_ARRAY_SIZE(llist->dflts_mods));
3179 assert_ptr_equal(llist->dflts_mods[0], mod);
3180 assert_int_equal(LY_TYPE_STRING, llist->dflts[0]->realtype->basetype);
Radek Krejci950f6a52019-09-12 17:15:32 +02003181 assert_string_equal("/e:d", llist->dflts[0]->canonical_cache);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003182 assert_ptr_equal(llist->dflts_mods[1], mod);
3183 assert_int_equal(LY_TYPE_STRING, llist->dflts[0]->realtype->basetype);
Radek Krejci950f6a52019-09-12 17:15:32 +02003184 assert_string_equal("/e:d2", llist->dflts[1]->canonical_cache);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003185
3186 assert_non_null(mod = lys_parse_mem(ctx, "module r {yang-version 1.1; namespace urn:r;prefix r;"
3187 "typedef mytype {type uint8; default 200;}"
3188 "leaf r {type mytype;} leaf-list lr {type mytype;}"
3189 "deviation /r:r {deviate replace {type string;}}"
3190 "deviation /r:lr {deviate replace {type string;}}}", LYS_IN_YANG));
3191 assert_non_null(leaf = (struct lysc_node_leaf*)mod->compiled->data);
3192 assert_string_equal("r", leaf->name);
3193 assert_null(leaf->dflt);
3194 assert_null(leaf->dflt_mod);
3195 assert_non_null(llist = (struct lysc_node_leaflist* )leaf->next);
3196 assert_string_equal("lr", llist->name);
3197 assert_null(llist->dflts);
3198 assert_null(llist->dflts_mods);
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003199
Radek Krejci474f9b82019-07-24 11:36:37 +02003200 assert_non_null(mod = lys_parse_mem(ctx, "module s {yang-version 1.1; namespace urn:s;prefix s;"
3201 "leaf s {type instance-identifier {require-instance true;} default /s:x;}"
3202 "leaf x {type string;} leaf y {type string;}"
3203 "deviation /s:s {deviate replace {default /s:y;}}}", LYS_IN_YANG));
3204 assert_non_null(leaf = (struct lysc_node_leaf*)mod->compiled->data);
3205 assert_string_equal("s", leaf->name);
3206 assert_non_null(leaf->dflt);
3207 assert_non_null(str = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, mod, &dynamic));
3208 assert_string_equal("/s:y", str);
3209 if (dynamic) { free((char*)str); }
3210
Radek Krejci88ef64b2019-02-18 16:02:06 +01003211 assert_null(lys_parse_mem(ctx, "module aa1 {namespace urn:aa1;prefix aa1;import a {prefix a;}"
Radek Krejciccd20f12019-02-15 14:12:27 +01003212 "deviation /a:top/a:z {deviate not-supported;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003213 logbuf_assert("Invalid absolute-schema-nodeid value \"/a:top/a:z\" - target node not found. /aa1:{deviation='/a:top/a:z'}");
Radek Krejci88ef64b2019-02-18 16:02:06 +01003214 assert_non_null(lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa2;import a {prefix a;}"
3215 "deviation /a:top/a:a {deviate not-supported;}"
3216 "deviation /a:top/a:a {deviate add {default error;}}}", LYS_IN_YANG));
3217 /* warning */
3218 logbuf_assert("Useless multiple (2) deviates on node \"/a:top/a:a\" since the node is not-supported.");
Radek Krejciccd20f12019-02-15 14:12:27 +01003219
3220 assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;import a {prefix a;}"
3221 "deviation a:top/a:a {deviate not-supported;}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003222 logbuf_assert("Invalid absolute-schema-nodeid value \"a:top/a:a\" - missing starting \"/\". /bb:{deviation='a:top/a:a'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003223
3224 assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; container c;"
3225 "deviation /c {deviate add {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003226 logbuf_assert("Invalid deviation of container node - it is not possible to add \"units\" property. /cc:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003227 assert_null(lys_parse_mem(ctx, "module cd {namespace urn:cd;prefix cd; leaf c {type string; units centimeters;}"
3228 "deviation /c {deviate add {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003229 logbuf_assert("Invalid deviation adding \"units\" property which already exists (with value \"centimeters\"). /cd:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003230
3231 assert_null(lys_parse_mem(ctx, "module dd1 {namespace urn:dd1;prefix dd1; container c;"
3232 "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003233 logbuf_assert("Invalid deviation of container node - it is not possible to delete \"units\" property. /dd1:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003234 assert_null(lys_parse_mem(ctx, "module dd2 {namespace urn:dd2;prefix dd2; leaf c {type string;}"
3235 "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003236 logbuf_assert("Invalid deviation deleting \"units\" property \"meters\" which is not present. /dd2:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003237 assert_null(lys_parse_mem(ctx, "module dd3 {namespace urn:dd3;prefix dd3; leaf c {type string; units centimeters;}"
3238 "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003239 logbuf_assert("Invalid deviation deleting \"units\" property \"meters\" which does not match the target's property value \"centimeters\"."
3240 " /dd3:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003241
3242 assert_null(lys_parse_mem(ctx, "module ee1 {namespace urn:ee1;prefix ee1; container c;"
3243 "deviation /c {deviate replace {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003244 logbuf_assert("Invalid deviation of container node - it is not possible to replace \"units\" property. /ee1:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003245 assert_null(lys_parse_mem(ctx, "module ee2 {namespace urn:ee2;prefix ee2; leaf c {type string;}"
3246 "deviation /c {deviate replace {units meters;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003247 logbuf_assert("Invalid deviation replacing \"units\" property \"meters\" which is not present. /ee2:{deviation='/c'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003248
3249 /* the default is already deleted in /e:a byt module f */
3250 assert_null(lys_parse_mem(ctx, "module ff1 {namespace urn:ff1;prefix ff1; import e {prefix e;}"
3251 "deviation /e:a {deviate delete {default x:a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003252 logbuf_assert("Invalid deviation deleting \"default\" property \"x:a\" which is not present. /ff1:{deviation='/e:a'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003253 assert_null(lys_parse_mem(ctx, "module ff2 {namespace urn:ff2;prefix ff2; import e {prefix e;}"
3254 "deviation /e:b {deviate delete {default x:a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003255 logbuf_assert("Invalid deviation deleting \"default\" property \"x:a\" of choice. "
3256 "The prefix does not match any imported module of the deviation module. /ff2:{deviation='/e:b'}");
Radek Krejci88ef64b2019-02-18 16:02:06 +01003257 assert_null(lys_parse_mem(ctx, "module ff3 {namespace urn:ff3;prefix ff3; import e {prefix e;}"
3258 "deviation /e:b {deviate delete {default e:b;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003259 logbuf_assert("Invalid deviation deleting \"default\" property \"e:b\" of choice does not match the default case name \"a\". /ff3:{deviation='/e:b'}");
Radek Krejci88ef64b2019-02-18 16:02:06 +01003260 assert_null(lys_parse_mem(ctx, "module ff4 {namespace urn:ff4;prefix ff4; import e {prefix e;}"
3261 "deviation /e:b {deviate delete {default ff4:a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003262 logbuf_assert("Invalid deviation deleting \"default\" property \"ff4:a\" of choice. The prefix does not match the default case's module. /ff4:{deviation='/e:b'}");
Radek Krejci88ef64b2019-02-18 16:02:06 +01003263 assert_null(lys_parse_mem(ctx, "module ff5 {namespace urn:ff5;prefix ff5; anyxml a;"
3264 "deviation /a {deviate delete {default x;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003265 logbuf_assert("Invalid deviation of anyxml node - it is not possible to delete \"default\" property. /ff5:{deviation='/a'}");
Radek Krejci1c0c3442019-07-23 16:08:47 +02003266 assert_null(lys_parse_mem(ctx, "module ff6 {namespace urn:ff6;prefix ff6; import e {prefix e;}"
3267 "deviation /e:c {deviate delete {default hi;}}}", LYS_IN_YANG));
3268 logbuf_assert("Invalid deviation deleting \"default\" property \"hi\" which does not match the target's property value \"hello\". /ff6:{deviation='/e:c'}");
3269 assert_null(lys_parse_mem(ctx, "module ff7 {namespace urn:ff7;prefix ff7; import e {prefix e;}"
3270 "deviation /e:d {deviate delete {default hi;}}}", LYS_IN_YANG));
3271 logbuf_assert("Invalid deviation deleting \"default\" property \"hi\" which does not match any of the target's property values. /ff7:{deviation='/e:d'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003272
3273 assert_null(lys_parse_mem(ctx, "module gg1 {namespace urn:gg1;prefix gg1; import e {prefix e;}"
3274 "deviation /e:b {deviate add {default e:a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003275 logbuf_assert("Invalid deviation adding \"default\" property which already exists (with value \"a\"). /gg1:{deviation='/e:b'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003276 assert_null(lys_parse_mem(ctx, "module gg2 {namespace urn:gg2;prefix gg2; import e {prefix e;}"
Radek Krejci468a94f2019-02-15 14:52:36 +01003277 "deviation /e:a {deviate add {default x:a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003278 logbuf_assert("Invalid deviation adding \"default\" property \"x:a\" of choice. "
3279 "The prefix does not match any imported module of the deviation module. /gg2:{deviation='/e:a'}");
Radek Krejci468a94f2019-02-15 14:52:36 +01003280 assert_null(lys_parse_mem(ctx, "module gg3 {namespace urn:gg3;prefix gg3; import e {prefix e;}"
3281 "deviation /e:a {deviate add {default a;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003282 logbuf_assert("Invalid deviation adding \"default\" property \"a\" of choice - the specified case does not exists. /gg3:{deviation='/e:a'}");
Radek Krejci468a94f2019-02-15 14:52:36 +01003283 assert_null(lys_parse_mem(ctx, "module gg4 {namespace urn:gg4;prefix gg4; import e {prefix e;}"
Radek Krejciccd20f12019-02-15 14:12:27 +01003284 "deviation /e:c {deviate add {default hi;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003285 logbuf_assert("Invalid deviation adding \"default\" property which already exists (with value \"hello\"). /gg4:{deviation='/e:c'}");
Radek Krejci468a94f2019-02-15 14:52:36 +01003286 assert_null(lys_parse_mem(ctx, "module gg4 {namespace urn:gg4;prefix gg4; import e {prefix e;}"
3287 "deviation /e:a {deviate add {default e:c;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003288 logbuf_assert("Invalid deviation adding \"default\" property \"e:c\" of choice - mandatory node \"c\" under the default case. /gg4:{deviation='/e:a'}");
Radek Krejci88ef64b2019-02-18 16:02:06 +01003289 assert_null(lys_parse_mem(ctx, "module gg5 {namespace urn:gg5;prefix gg5; leaf x {type string; mandatory true;}"
3290 "deviation /x {deviate add {default error;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003291 logbuf_assert("Invalid deviation combining default value and mandatory leaf. /gg5:{deviation='/x'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003292
3293 assert_null(lys_parse_mem(ctx, "module hh1 {yang-version 1.1; namespace urn:hh1;prefix hh1; import e {prefix e;}"
3294 "deviation /e:d {deviate replace {default hi;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003295 logbuf_assert("Invalid deviation of leaf-list node - it is not possible to replace \"default\" property. /hh1:{deviation='/e:d'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003296
Radek Krejci7af64242019-02-18 13:07:53 +01003297 assert_null(lys_parse_mem(ctx, "module ii1 {namespace urn:ii1;prefix ii1; import i {prefix i;}"
3298 "deviation /i:l1 {deviate delete {unique x;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003299 logbuf_assert("Invalid deviation deleting \"unique\" property \"x\" which does not match any of the target's property values. /ii1:{deviation='/i:l1'}");
Radek Krejci7af64242019-02-18 13:07:53 +01003300 assert_null(lys_parse_mem(ctx, "module ii2 {namespace urn:ii2;prefix ii2; import i {prefix i;} leaf x { type string;}"
3301 "deviation /i:l2 {deviate delete {unique d;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003302 logbuf_assert("Invalid deviation deleting \"unique\" property \"d\" which does not match any of the target's property values. /ii2:{deviation='/i:l2'}");
Radek Krejci7af64242019-02-18 13:07:53 +01003303 assert_null(lys_parse_mem(ctx, "module ii3 {namespace urn:ii3;prefix ii3; leaf x { type string;}"
3304 "deviation /x {deviate delete {unique d;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003305 logbuf_assert("Invalid deviation of leaf node - it is not possible to delete \"unique\" property. /ii3:{deviation='/x'}");
Radek Krejci7af64242019-02-18 13:07:53 +01003306 assert_null(lys_parse_mem(ctx, "module ii4 {namespace urn:ii4;prefix ii4; leaf x { type string;}"
3307 "deviation /x {deviate add {unique d;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003308 logbuf_assert("Invalid deviation of leaf node - it is not possible to add \"unique\" property. /ii4:{deviation='/x'}");
Radek Krejciccd20f12019-02-15 14:12:27 +01003309
Radek Krejci93dcc392019-02-19 10:43:38 +01003310 assert_null(lys_parse_mem(ctx, "module jj1 {namespace urn:jj1;prefix jj1; choice ch {case a {leaf a{type string;}}}"
3311 "deviation /ch/a {deviate add {config false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003312 logbuf_assert("Invalid deviation of case node - it is not possible to add \"config\" property. /jj1:{deviation='/ch/a'}");
Radek Krejci93dcc392019-02-19 10:43:38 +01003313 assert_null(lys_parse_mem(ctx, "module jj2 {namespace urn:jj2;prefix jj2; container top {config false; leaf x {type string;}}"
3314 "deviation /top/x {deviate add {config true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003315 logbuf_assert("Invalid deviation of config - configuration node cannot be child of any state data node. /jj2:{deviation='/top/x'}");
Radek Krejci93dcc392019-02-19 10:43:38 +01003316 assert_null(lys_parse_mem(ctx, "module jj3 {namespace urn:jj3;prefix jj3; container top {leaf x {type string;}}"
3317 "deviation /top/x {deviate replace {config false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003318 logbuf_assert("Invalid deviation replacing \"config\" property \"config false\" which is not present. /jj3:{deviation='/top/x'}");
Radek Krejci93dcc392019-02-19 10:43:38 +01003319 assert_null(lys_parse_mem(ctx, "module jj4 {namespace urn:jj4;prefix jj4; choice ch {case a {leaf a{type string;}}}"
3320 "deviation /ch/a {deviate replace {config false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003321 logbuf_assert("Invalid deviation of case node - it is not possible to replace \"config\" property. /jj4:{deviation='/ch/a'}");
Radek Krejci93dcc392019-02-19 10:43:38 +01003322 assert_null(lys_parse_mem(ctx, "module jj5 {namespace urn:jj5;prefix jj5; container top {leaf x {type string; config true;}}"
3323 "deviation /top {deviate add {config false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003324 logbuf_assert("Invalid deviation of config - configuration node cannot be child of any state data node. /jj5:{deviation='/top'}");
Radek Krejcif1421c22019-02-19 13:05:20 +01003325 assert_null(lys_parse_mem(ctx, "module jj6 {namespace urn:jj6;prefix jj6; leaf x {config false; type string;}"
3326 "deviation /x {deviate add {config true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003327 logbuf_assert("Invalid deviation adding \"config\" property which already exists (with value \"config false\"). /jj6:{deviation='/x'}");
Radek Krejcif1421c22019-02-19 13:05:20 +01003328
3329 assert_null(lys_parse_mem(ctx, "module kk1 {namespace urn:kk1;prefix kk1; container top {leaf a{type string;}}"
3330 "deviation /top {deviate add {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003331 logbuf_assert("Invalid deviation of mandatory - container cannot hold mandatory statement. /kk1:{deviation='/top'}");
Radek Krejcif1421c22019-02-19 13:05:20 +01003332 assert_null(lys_parse_mem(ctx, "module kk2 {namespace urn:kk2;prefix kk2; container top {leaf a{type string;}}"
3333 "deviation /top {deviate replace {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003334 logbuf_assert("Invalid deviation replacing \"mandatory\" property \"mandatory true\" which is not present. /kk2:{deviation='/top'}");
Radek Krejcif1421c22019-02-19 13:05:20 +01003335 assert_null(lys_parse_mem(ctx, "module kk3 {namespace urn:kk3;prefix kk3; container top {leaf x {type string;}}"
3336 "deviation /top/x {deviate replace {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003337 logbuf_assert("Invalid deviation replacing \"mandatory\" property \"mandatory true\" which is not present. /kk3:{deviation='/top/x'}");
Radek Krejcif1421c22019-02-19 13:05:20 +01003338 assert_null(lys_parse_mem(ctx, "module kk4 {namespace urn:kk4;prefix kk4; leaf x {mandatory true; type string;}"
3339 "deviation /x {deviate add {mandatory false;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003340 logbuf_assert("Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory true\"). /kk4:{deviation='/x'}");
Radek Krejci93dcc392019-02-19 10:43:38 +01003341
Radek Krejci551b12c2019-02-19 16:11:21 +01003342 assert_null(lys_parse_mem(ctx, "module ll1 {namespace urn:ll1;prefix ll1; leaf x {default test; type string;}"
3343 "deviation /x {deviate add {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003344 logbuf_assert("Invalid deviation combining default value and mandatory leaf. /ll1:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003345 assert_null(lys_parse_mem(ctx, "module ll2 {yang-version 1.1; namespace urn:ll2;prefix ll2; leaf-list x {default test; type string;}"
3346 "deviation /x {deviate add {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003347 logbuf_assert("Invalid deviation combining default value and mandatory leaf-list. /ll2:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003348 assert_null(lys_parse_mem(ctx, "module ll2 {namespace urn:ll2;prefix ll2; choice ch {default a; leaf a {type string;} leaf b {type string;}}"
3349 "deviation /ch {deviate add {mandatory true;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003350 logbuf_assert("Invalid deviation combining default case and mandatory choice. /ll2:{deviation='/ch'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003351
3352 assert_null(lys_parse_mem(ctx, "module mm1 {namespace urn:mm1;prefix mm1; leaf-list x {min-elements 10; type string;}"
3353 "deviation /x {deviate add {max-elements 5;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003354 logbuf_assert("Invalid combination of min-elements and max-elements after deviation: min value 10 is bigger than max value 5. /mm1:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003355 assert_null(lys_parse_mem(ctx, "module mm2 {namespace urn:mm2;prefix mm2; leaf-list x {max-elements 10; type string;}"
3356 "deviation /x {deviate add {min-elements 20;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003357 logbuf_assert("Invalid combination of min-elements and max-elements after deviation: min value 20 is bigger than max value 10. /mm2:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003358 assert_null(lys_parse_mem(ctx, "module mm3 {namespace urn:mm3;prefix mm3; list x {min-elements 5; max-elements 10; config false;}"
3359 "deviation /x {deviate replace {max-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003360 logbuf_assert("Invalid combination of min-elements and max-elements after deviation: min value 5 is bigger than max value 1. /mm3:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003361 assert_null(lys_parse_mem(ctx, "module mm4 {namespace urn:mm4;prefix mm4; list x {min-elements 5; max-elements 10; config false;}"
3362 "deviation /x {deviate replace {min-elements 20;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003363 logbuf_assert("Invalid combination of min-elements and max-elements after deviation: min value 20 is bigger than max value 10. /mm4:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003364 assert_null(lys_parse_mem(ctx, "module mm5 {namespace urn:mm5;prefix mm5; leaf-list x {type string; min-elements 5;}"
3365 "deviation /x {deviate add {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003366 logbuf_assert("Invalid deviation adding \"min-elements\" property which already exists (with value \"5\"). /mm5:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003367 assert_null(lys_parse_mem(ctx, "module mm6 {namespace urn:mm6;prefix mm6; list x {config false; min-elements 5;}"
3368 "deviation /x {deviate add {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003369 logbuf_assert("Invalid deviation adding \"min-elements\" property which already exists (with value \"5\"). /mm6:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003370 assert_null(lys_parse_mem(ctx, "module mm7 {namespace urn:mm7;prefix mm7; leaf-list x {type string; max-elements 5;}"
3371 "deviation /x {deviate add {max-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003372 logbuf_assert("Invalid deviation adding \"max-elements\" property which already exists (with value \"5\"). /mm7:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003373 assert_null(lys_parse_mem(ctx, "module mm8 {namespace urn:mm8;prefix mm8; list x {config false; max-elements 5;}"
3374 "deviation /x {deviate add {max-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003375 logbuf_assert("Invalid deviation adding \"max-elements\" property which already exists (with value \"5\"). /mm8:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003376 assert_null(lys_parse_mem(ctx, "module mm9 {namespace urn:mm9;prefix mm9; leaf-list x {type string;}"
3377 "deviation /x {deviate replace {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003378 logbuf_assert("Invalid deviation replacing with \"min-elements\" property \"1\" which is not present. /mm9:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003379 assert_null(lys_parse_mem(ctx, "module mm10 {namespace urn:mm10;prefix mm10; list x {config false;}"
3380 "deviation /x {deviate replace {min-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003381 logbuf_assert("Invalid deviation replacing with \"min-elements\" property \"1\" which is not present. /mm10:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003382 assert_null(lys_parse_mem(ctx, "module mm11 {namespace urn:mm11;prefix mm11; leaf-list x {type string;}"
3383 "deviation /x {deviate replace {max-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003384 logbuf_assert("Invalid deviation replacing with \"max-elements\" property \"1\" which is not present. /mm11:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003385 assert_null(lys_parse_mem(ctx, "module mm12 {namespace urn:mm12;prefix mm12; list x {config false; }"
3386 "deviation /x {deviate replace {max-elements 1;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003387 logbuf_assert("Invalid deviation replacing with \"max-elements\" property \"1\" which is not present. /mm12:{deviation='/x'}");
Radek Krejci551b12c2019-02-19 16:11:21 +01003388
Radek Krejci33f72892019-02-21 10:36:58 +01003389 assert_null(lys_parse_mem(ctx, "module nn1 {namespace urn:nn1;prefix nn1; anyxml x;"
3390 "deviation /x {deviate replace {type string;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003391 logbuf_assert("Invalid deviation of anyxml node - it is not possible to replace \"type\" property. /nn1:{deviation='/x'}");
Radek Krejci33f72892019-02-21 10:36:58 +01003392 assert_null(lys_parse_mem(ctx, "module nn2 {namespace urn:nn2;prefix nn2; leaf-list x {type string;}"
3393 "deviation /x {deviate replace {type empty;}}}", LYS_IN_YANG));
Radek Krejci327de162019-06-14 12:52:07 +02003394 logbuf_assert("Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules. /nn2:{deviation='/x'}");
Radek Krejci33f72892019-02-21 10:36:58 +01003395
Radek Krejci1c0c3442019-07-23 16:08:47 +02003396 assert_null(lys_parse_mem(ctx, "module oo1 {namespace urn:oo1;prefix oo1; leaf x {type uint16; default 300;}"
3397 "deviation /x {deviate replace {type uint8;}}}", LYS_IN_YANG));
3398 logbuf_assert("Invalid deviation replacing leaf's type - the leaf's default value \"300\" does not match the type "
3399 "(Value \"300\" is out of uint8's min/max bounds.). /oo1:{deviation='/x'}");
3400 assert_null(lys_parse_mem(ctx, "module oo2 {yang-version 1.1;namespace urn:oo2;prefix oo2; leaf-list x {type uint16; default 10; default 300;}"
3401 "deviation /x {deviate replace {type uint8;}}}", LYS_IN_YANG));
3402 logbuf_assert("Invalid deviation replacing leaf-list's type - the leaf-list's default value \"300\" does not match the type "
3403 "(Value \"300\" is out of uint8's min/max bounds.). /oo2:{deviation='/x'}");
3404 assert_null(lys_parse_mem(ctx, "module oo3 {namespace urn:oo3;prefix oo3; leaf x {type uint8;}"
3405 "deviation /x {deviate add {default 300;}}}", LYS_IN_YANG));
3406 logbuf_assert("Invalid deviation setting \"default\" property \"300\" which does not fit the type "
3407 "(Value \"300\" is out of uint8's min/max bounds.). /oo3:{deviation='/x'}");
3408
Radek Krejci474f9b82019-07-24 11:36:37 +02003409/* TODO recompiling reference object after deviation changes schema tree
3410 assert_non_null(lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp; leaf l { type leafref {path /c/x;}}"
3411 "container c {leaf x {type string;} leaf y {type string;}}}", LYS_IN_YANG));
3412 assert_null(lys_parse_mem(ctx, "module pp1 {namespace urn:pp1;prefix pp1; import pp {prefix pp;}"
3413 "deviation /pp:c/pp:x {deviate not-supported;}}", LYS_IN_YANG));
3414 logbuf_assert("???. /pp:l}");
3415*/
3416
Radek Krejciccd20f12019-02-15 14:12:27 +01003417 *state = NULL;
3418 ly_ctx_destroy(ctx, NULL);
3419}
3420
Radek Krejcidd4e8d42018-10-16 14:55:43 +02003421int main(void)
3422{
3423 const struct CMUnitTest tests[] = {
Radek Krejci4f28eda2018-11-12 11:46:16 +01003424 cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown),
3425 cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown),
3426 cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown),
Radek Krejci0f07bed2018-11-13 14:01:40 +01003427 cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown),
3428 cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown),
Radek Krejcicda74152018-11-13 15:27:32 +01003429 cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown),
Radek Krejci8b764662018-11-14 14:15:13 +01003430 cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown),
3431 cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown),
Radek Krejci6cba4292018-11-15 17:33:29 +01003432 cmocka_unit_test_setup_teardown(test_type_dec64, logger_setup, logger_teardown),
Radek Krejci16c0f822018-11-16 10:46:10 +01003433 cmocka_unit_test_setup_teardown(test_type_instanceid, logger_setup, logger_teardown),
Radek Krejci555cb5b2018-11-16 14:54:33 +01003434 cmocka_unit_test_setup_teardown(test_type_identityref, logger_setup, logger_teardown),
Radek Krejcia3045382018-11-22 14:30:31 +01003435 cmocka_unit_test_setup_teardown(test_type_leafref, logger_setup, logger_teardown),
Radek Krejci43699232018-11-23 14:59:46 +01003436 cmocka_unit_test_setup_teardown(test_type_empty, logger_setup, logger_teardown),
Radek Krejcicdfecd92018-11-26 11:27:32 +01003437 cmocka_unit_test_setup_teardown(test_type_union, logger_setup, logger_teardown),
3438 cmocka_unit_test_setup_teardown(test_type_dflt, logger_setup, logger_teardown),
Radek Krejci665421c2018-12-05 08:03:39 +01003439 cmocka_unit_test_setup_teardown(test_status, logger_setup, logger_teardown),
Radek Krejci4f28eda2018-11-12 11:46:16 +01003440 cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown),
Radek Krejci0e5d8382018-11-28 16:37:53 +01003441 cmocka_unit_test_setup_teardown(test_node_leaflist, logger_setup, logger_teardown),
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003442 cmocka_unit_test_setup_teardown(test_node_list, logger_setup, logger_teardown),
Radek Krejci056d0a82018-12-06 16:57:25 +01003443 cmocka_unit_test_setup_teardown(test_node_choice, logger_setup, logger_teardown),
Radek Krejci9800fb82018-12-13 14:26:23 +01003444 cmocka_unit_test_setup_teardown(test_node_anydata, logger_setup, logger_teardown),
Radek Krejcif538ce52019-03-05 10:46:14 +01003445 cmocka_unit_test_setup_teardown(test_action, logger_setup, logger_teardown),
Radek Krejcifc11bd72019-04-11 16:00:05 +02003446 cmocka_unit_test_setup_teardown(test_notification, logger_setup, logger_teardown),
Radek Krejcif2de0ed2019-05-02 14:13:18 +02003447 cmocka_unit_test_setup_teardown(test_grouping, logger_setup, logger_teardown),
Radek Krejcie86bf772018-12-14 11:39:53 +01003448 cmocka_unit_test_setup_teardown(test_uses, logger_setup, logger_teardown),
Radek Krejci01342af2019-01-03 15:18:08 +01003449 cmocka_unit_test_setup_teardown(test_refine, logger_setup, logger_teardown),
Radek Krejci95710c92019-02-11 15:49:55 +01003450 cmocka_unit_test_setup_teardown(test_augment, logger_setup, logger_teardown),
Radek Krejciccd20f12019-02-15 14:12:27 +01003451 cmocka_unit_test_setup_teardown(test_deviation, logger_setup, logger_teardown),
Radek Krejcidd4e8d42018-10-16 14:55:43 +02003452 };
3453
3454 return cmocka_run_group_tests(tests, NULL, NULL);
3455}