Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1 | /* |
| 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 Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 15 | #include "../../src/common.c" |
| 16 | #include "../../src/log.c" |
| 17 | #include "../../src/set.c" |
| 18 | #include "../../src/xpath.c" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 19 | #include "../../src/parser_yang.c" |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 20 | #include "../../src/tree_schema_helpers.c" |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 21 | #include "../../src/tree_schema_free.c" |
| 22 | #include "../../src/tree_schema_compile.c" |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 23 | #include "../../src/tree_schema.c" |
| 24 | #include "../../src/context.c" |
| 25 | #include "../../src/hash_table.c" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 26 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 27 | #include <stdarg.h> |
| 28 | #include <stddef.h> |
| 29 | #include <setjmp.h> |
| 30 | #include <cmocka.h> |
| 31 | |
| 32 | #include <stdio.h> |
| 33 | #include <string.h> |
| 34 | |
| 35 | #include "libyang.h" |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 36 | |
| 37 | #define BUFSIZE 1024 |
| 38 | char logbuf[BUFSIZE] = {0}; |
| 39 | |
| 40 | /* set to 0 to printing error messages to stderr instead of checking them in code */ |
| 41 | #define ENABLE_LOGGER_CHECKING 1 |
| 42 | |
| 43 | #if ENABLE_LOGGER_CHECKING |
| 44 | static void |
| 45 | logger(LY_LOG_LEVEL level, const char *msg, const char *path) |
| 46 | { |
| 47 | (void) level; /* unused */ |
| 48 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 49 | if (path && path[0]) { |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 50 | snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path); |
| 51 | } else { |
| 52 | strncpy(logbuf, msg, BUFSIZE - 1); |
| 53 | } |
| 54 | } |
| 55 | #endif |
| 56 | |
| 57 | static int |
| 58 | logger_setup(void **state) |
| 59 | { |
| 60 | (void) state; /* unused */ |
| 61 | #if ENABLE_LOGGER_CHECKING |
| 62 | ly_set_log_clb(logger, 1); |
| 63 | #endif |
| 64 | return 0; |
| 65 | } |
| 66 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 67 | static int |
| 68 | logger_teardown(void **state) |
| 69 | { |
| 70 | (void) state; /* unused */ |
| 71 | #if ENABLE_LOGGER_CHECKING |
| 72 | if (*state) { |
| 73 | fprintf(stderr, "%s\n", logbuf); |
| 74 | } |
| 75 | #endif |
| 76 | return 0; |
| 77 | } |
| 78 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 79 | void |
| 80 | logbuf_clean(void) |
| 81 | { |
| 82 | logbuf[0] = '\0'; |
| 83 | } |
| 84 | |
| 85 | #if ENABLE_LOGGER_CHECKING |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 86 | # define logbuf_assert(str) assert_string_equal(logbuf, str);logbuf_clean() |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 87 | #else |
| 88 | # define logbuf_assert(str) |
| 89 | #endif |
| 90 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 91 | static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name), |
| 92 | const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format, |
| 93 | const char **module_data, void (**free_module_data)(void *model_data, void *user_data)) |
| 94 | { |
| 95 | *module_data = user_data; |
| 96 | *format = LYS_IN_YANG; |
| 97 | *free_module_data = NULL; |
| 98 | return LY_SUCCESS; |
| 99 | } |
| 100 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 101 | static void |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 102 | reset_mod(struct ly_ctx *ctx, struct lys_module *module) |
| 103 | { |
| 104 | lysc_module_free(module->compiled, NULL); |
| 105 | lysp_module_free(module->parsed); |
| 106 | |
| 107 | FREE_STRING(module->ctx, module->name); |
| 108 | FREE_STRING(module->ctx, module->ns); |
| 109 | FREE_STRING(module->ctx, module->prefix); |
| 110 | FREE_STRING(module->ctx, module->filepath); |
| 111 | FREE_STRING(module->ctx, module->org); |
| 112 | FREE_STRING(module->ctx, module->contact); |
| 113 | FREE_STRING(module->ctx, module->dsc); |
| 114 | FREE_STRING(module->ctx, module->ref); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 115 | FREE_ARRAY(module->ctx, module->off_features, lysc_feature_free); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 116 | |
| 117 | memset(module, 0, sizeof *module); |
| 118 | module->ctx = ctx; |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 119 | module->implemented = 1; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static void |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 123 | test_module(void **state) |
| 124 | { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 125 | *state = test_module; |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 126 | |
| 127 | const char *str; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 128 | struct ly_parser_ctx ctx = {0}; |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 129 | struct lys_module mod = {0}; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 130 | struct lysc_feature *f; |
| 131 | struct lysc_iffeature *iff; |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 132 | |
| 133 | str = "module test {namespace urn:test; prefix t;" |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 134 | "feature f1;feature f2 {if-feature f1;}}"; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 135 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx)); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 136 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 137 | |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 138 | assert_int_equal(LY_EINVAL, lys_compile(NULL, 0)); |
| 139 | logbuf_assert("Invalid argument mod (lys_compile())."); |
| 140 | assert_int_equal(LY_EINVAL, lys_compile(&mod, 0)); |
| 141 | logbuf_assert("Invalid argument mod->parsed (lys_compile())."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 142 | assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, str, &mod)); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 143 | mod.implemented = 0; |
| 144 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0)); |
| 145 | assert_null(mod.compiled); |
| 146 | mod.implemented = 1; |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 147 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0)); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 148 | assert_non_null(mod.compiled); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 149 | assert_string_equal("test", mod.name); |
| 150 | assert_string_equal("urn:test", mod.ns); |
| 151 | assert_string_equal("t", mod.prefix); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 152 | /* features */ |
| 153 | assert_non_null(mod.compiled->features); |
| 154 | assert_int_equal(2, LY_ARRAY_SIZE(mod.compiled->features)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 155 | f = &mod.compiled->features[1]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 156 | assert_non_null(f->iffeatures); |
| 157 | assert_int_equal(1, LY_ARRAY_SIZE(f->iffeatures)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 158 | iff = &f->iffeatures[0]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 159 | assert_non_null(iff->expr); |
| 160 | assert_non_null(iff->features); |
| 161 | assert_int_equal(1, LY_ARRAY_SIZE(iff->features)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 162 | assert_ptr_equal(&mod.compiled->features[0], iff->features[0]); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 163 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 164 | lysc_module_free(mod.compiled, NULL); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 165 | |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 166 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, LYSC_OPT_FREE_SP)); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 167 | assert_non_null(mod.compiled); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 168 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 169 | lysc_module_free(mod.compiled, NULL); |
| 170 | mod.compiled = NULL; |
| 171 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 172 | /* submodules cannot be compiled directly */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 173 | str = "submodule test {belongs-to xxx {prefix x;}}"; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 174 | assert_int_equal(LY_EINVAL, yang_parse_module(&ctx, str, &mod)); |
| 175 | logbuf_assert("Input data contains submodule which cannot be parsed directly without its main module."); |
| 176 | assert_null(mod.parsed); |
| 177 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 178 | |
| 179 | /* data definition name collision in top level */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 180 | 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)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 182 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
| 183 | logbuf_assert("Duplicate identifier \"a\" of data definition statement."); |
| 184 | assert_null(mod.compiled); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 185 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 186 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 187 | *state = NULL; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 188 | ly_ctx_destroy(ctx.ctx, NULL); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 191 | static void |
| 192 | test_feature(void **state) |
| 193 | { |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 194 | *state = test_feature; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 195 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 196 | struct ly_parser_ctx ctx = {0}; |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 197 | struct lys_module mod = {0}, *modp; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 198 | const char *str; |
| 199 | struct lysc_feature *f, *f1; |
| 200 | |
| 201 | str = "module a {namespace urn:a;prefix a;yang-version 1.1;\n" |
| 202 | "feature f1 {description test1;reference test2;status current;} feature f2; feature f3;\n" |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 203 | "feature orfeature {if-feature \"f1 or f2\";}\n" |
| 204 | "feature andfeature {if-feature \"f1 and f2\";}\n" |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 205 | "feature f6 {if-feature \"not f1\";}\n" |
Radek Krejci | dde18c5 | 2018-10-24 14:43:04 +0200 | [diff] [blame] | 206 | "feature f7 {if-feature \"(f2 and f3) or (not f1)\";}\n" |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 207 | "feature f8 {if-feature \"f1 or f2 or f3 or orfeature or andfeature\";}\n" |
| 208 | "feature f9 {if-feature \"not not f1\";}}"; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 209 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 210 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx)); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 211 | reset_mod(ctx.ctx, &mod); |
| 212 | |
| 213 | assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, str, &mod)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 214 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 215 | assert_non_null(mod.compiled); |
| 216 | assert_non_null(mod.compiled->features); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 217 | assert_int_equal(9, LY_ARRAY_SIZE(mod.compiled->features)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 218 | /* all features are disabled by default */ |
| 219 | LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) { |
| 220 | assert_int_equal(0, lysc_feature_value(f)); |
| 221 | } |
| 222 | /* enable f1 */ |
| 223 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1")); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 224 | f1 = &mod.compiled->features[0]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 225 | assert_int_equal(1, lysc_feature_value(f1)); |
| 226 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 227 | /* enable orfeature */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 228 | f = &mod.compiled->features[3]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 229 | assert_int_equal(0, lysc_feature_value(f)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 230 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "orfeature")); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 231 | assert_int_equal(1, lysc_feature_value(f)); |
| 232 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 233 | /* enable andfeature - no possible since f2 is disabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 234 | f = &mod.compiled->features[4]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 235 | assert_int_equal(0, lysc_feature_value(f)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 236 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature")); |
| 237 | logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s)."); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 238 | assert_int_equal(0, lysc_feature_value(f)); |
| 239 | |
| 240 | /* first enable f2, so f5 can be enabled then */ |
| 241 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f2")); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 242 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "andfeature")); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 243 | assert_int_equal(1, lysc_feature_value(f)); |
| 244 | |
| 245 | /* f1 is enabled, so f6 cannot be enabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 246 | f = &mod.compiled->features[5]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 247 | assert_int_equal(0, lysc_feature_value(f)); |
| 248 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "f6")); |
| 249 | logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s)."); |
| 250 | assert_int_equal(0, lysc_feature_value(f)); |
| 251 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 252 | /* so disable f1 - andfeature will became also disabled */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 253 | assert_int_equal(1, lysc_feature_value(f1)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 254 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1")); |
| 255 | assert_int_equal(0, lysc_feature_value(f1)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 256 | assert_int_equal(0, lysc_feature_value(&mod.compiled->features[4])); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 257 | /* while orfeature is stille enabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 258 | assert_int_equal(1, lysc_feature_value(&mod.compiled->features[3])); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 259 | /* and finally f6 can be enabled */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 260 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f6")); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 261 | assert_int_equal(1, lysc_feature_value(&mod.compiled->features[5])); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 262 | |
| 263 | /* complex evaluation of f7: f1 and f3 are disabled, while f2 is enabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 264 | assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[6].iffeatures[0])); |
Radek Krejci | dde18c5 | 2018-10-24 14:43:04 +0200 | [diff] [blame] | 265 | /* long evaluation of f8 to need to reallocate internal stack for operators */ |
| 266 | assert_int_equal(1, lysc_iffeature_value(&mod.compiled->features[7].iffeatures[0])); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 267 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 268 | /* double negation of disabled f1 -> disabled */ |
| 269 | assert_int_equal(0, lysc_iffeature_value(&mod.compiled->features[8].iffeatures[0])); |
| 270 | |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 271 | /* disable all features */ |
| 272 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "*")); |
| 273 | LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) { |
| 274 | assert_int_equal(0, lys_feature_value(&mod, f->name)); |
| 275 | } |
| 276 | /* re-setting already set feature */ |
| 277 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1")); |
| 278 | assert_int_equal(0, lys_feature_value(&mod, "f1")); |
| 279 | |
| 280 | /* enabling feature that cannot be enabled due to its if-features */ |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 281 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1")); |
| 282 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature")); |
| 283 | logbuf_assert("Feature \"andfeature\" cannot be enabled since it is disabled by its if-feature condition(s)."); |
Radek Krejci | ca3db00 | 2018-11-01 10:31:01 +0100 | [diff] [blame] | 284 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "*")); |
| 285 | logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s)."); |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 286 | /* test if not changed */ |
| 287 | assert_int_equal(1, lys_feature_value(&mod, "f1")); |
| 288 | assert_int_equal(0, lys_feature_value(&mod, "f2")); |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 289 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 290 | assert_non_null(modp = lys_parse_mem(ctx.ctx, "module b {namespace urn:b;prefix b;" |
| 291 | "feature f1 {if-feature f2;}feature f2;}", LYS_IN_YANG)); |
| 292 | assert_non_null(modp->compiled); |
| 293 | assert_non_null(modp->compiled->features); |
| 294 | assert_int_equal(2, LY_ARRAY_SIZE(modp->compiled->features)); |
| 295 | assert_non_null(modp->compiled->features[0].iffeatures); |
| 296 | assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[0].iffeatures)); |
| 297 | assert_non_null(modp->compiled->features[0].iffeatures[0].features); |
| 298 | assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[0].iffeatures[0].features)); |
| 299 | assert_ptr_equal(&modp->compiled->features[1], modp->compiled->features[0].iffeatures[0].features[0]); |
| 300 | assert_non_null(modp->compiled->features); |
| 301 | assert_int_equal(2, LY_ARRAY_SIZE(modp->compiled->features)); |
| 302 | assert_non_null(modp->compiled->features[1].depfeatures); |
| 303 | assert_int_equal(1, LY_ARRAY_SIZE(modp->compiled->features[1].depfeatures)); |
| 304 | assert_ptr_equal(&modp->compiled->features[0], modp->compiled->features[1].depfeatures[0]); |
| 305 | |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 306 | /* invalid reference */ |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 307 | assert_int_equal(LY_EINVAL, lys_feature_enable(&mod, "xxx")); |
| 308 | logbuf_assert("Feature \"xxx\" not found in module \"a\"."); |
| 309 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 310 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 311 | |
| 312 | /* some invalid expressions */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 313 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 314 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 315 | logbuf_assert("Invalid value \"f1\" of if-feature - unable to find feature \"f1\"."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 316 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 317 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 318 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 319 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 320 | logbuf_assert("Invalid value \"f and\" of if-feature - unexpected end of expression."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 321 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 322 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 323 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 324 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 325 | logbuf_assert("Invalid value \"or\" of if-feature - unexpected end of expression."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 326 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 327 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 328 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 329 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 330 | logbuf_assert("Invalid value \"(f1\" of if-feature - non-matching opening and closing parentheses."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 331 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 332 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 333 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 334 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 335 | logbuf_assert("Invalid value \"f1)\" of if-feature - non-matching opening and closing parentheses."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 336 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 337 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 338 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 339 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 340 | logbuf_assert("Invalid value \"---\" of if-feature - unable to find feature \"---\"."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 341 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 342 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 343 | 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)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 344 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 345 | logbuf_assert("Invalid value \"not f1\" of if-feature - YANG 1.1 expression in YANG 1.0 module."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 346 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 347 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 348 | assert_int_equal(LY_SUCCESS, yang_parse_module(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f1;}", &mod)); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 349 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
| 350 | logbuf_assert("Duplicate identifier \"f1\" of feature statement."); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 351 | reset_mod(ctx.ctx, &mod); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 352 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 353 | ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "submodule sz {belongs-to z {prefix z;} feature f1;}"); |
| 354 | assert_null(lys_parse_mem(ctx.ctx, "module z{namespace urn:z; prefix z; include sz;feature f1;}", LYS_IN_YANG)); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 355 | logbuf_assert("Duplicate identifier \"f1\" of feature statement."); |
| 356 | |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 357 | assert_null(lys_parse_mem(ctx.ctx, "module aa{namespace urn:aa; prefix aa; feature f1 {if-feature f2;} feature f2 {if-feature f1;}}", LYS_IN_YANG)); |
| 358 | logbuf_assert("Feature \"f1\" is indirectly referenced from itself."); |
| 359 | assert_null(lys_parse_mem(ctx.ctx, "module ab{namespace urn:ab; prefix ab; feature f1 {if-feature f1;}}", LYS_IN_YANG)); |
| 360 | logbuf_assert("Feature \"f1\" is referenced from itself."); |
| 361 | |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 362 | /* import reference */ |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 363 | assert_non_null(modp = lys_parse_mem(ctx.ctx, str, LYS_IN_YANG)); |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 364 | assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f1")); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 365 | assert_non_null(modp = lys_parse_mem(ctx.ctx, "module c{namespace urn:c; prefix c; import a {prefix a;} feature f1; feature f2{if-feature 'a:f1';}}", LYS_IN_YANG)); |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 366 | assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f2")); |
| 367 | assert_int_equal(0, lys_feature_value(modp, "f1")); |
| 368 | assert_int_equal(1, lys_feature_value(modp, "f2")); |
| 369 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 370 | *state = NULL; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 371 | ly_ctx_destroy(ctx.ctx, NULL); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 372 | } |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 373 | |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 374 | static void |
| 375 | test_identity(void **state) |
| 376 | { |
Radek Krejci | 7f2a536 | 2018-11-28 13:05:37 +0100 | [diff] [blame] | 377 | *state = test_identity; |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 378 | |
| 379 | struct ly_ctx *ctx; |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 380 | struct lys_module *mod1, *mod2; |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 381 | |
| 382 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
Radek Krejci | 4d483a8 | 2019-01-17 13:12:50 +0100 | [diff] [blame] | 383 | assert_non_null(mod1 = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; identity a1;}", LYS_IN_YANG)); |
| 384 | assert_non_null(mod2 = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; import a {prefix a;}" |
| 385 | "identity b1; identity b2; identity b3 {base b1; base b:b2; base a:a1;}" |
| 386 | "identity b4 {base b:b1; base b3;}}", LYS_IN_YANG)); |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 387 | |
| 388 | assert_non_null(mod1->compiled); |
| 389 | assert_non_null(mod1->compiled->identities); |
| 390 | assert_non_null(mod2->compiled); |
| 391 | assert_non_null(mod2->compiled->identities); |
| 392 | |
| 393 | assert_non_null(mod1->compiled->identities[0].derived); |
| 394 | assert_int_equal(1, LY_ARRAY_SIZE(mod1->compiled->identities[0].derived)); |
| 395 | assert_ptr_equal(mod1->compiled->identities[0].derived[0], &mod2->compiled->identities[2]); |
| 396 | assert_non_null(mod2->compiled->identities[0].derived); |
| 397 | assert_int_equal(2, LY_ARRAY_SIZE(mod2->compiled->identities[0].derived)); |
| 398 | assert_ptr_equal(mod2->compiled->identities[0].derived[0], &mod2->compiled->identities[2]); |
| 399 | assert_ptr_equal(mod2->compiled->identities[0].derived[1], &mod2->compiled->identities[3]); |
| 400 | assert_non_null(mod2->compiled->identities[1].derived); |
| 401 | assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived)); |
| 402 | assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[2]); |
| 403 | assert_non_null(mod2->compiled->identities[2].derived); |
| 404 | assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[2].derived)); |
| 405 | assert_ptr_equal(mod2->compiled->identities[2].derived[0], &mod2->compiled->identities[3]); |
| 406 | |
Radek Krejci | 4d483a8 | 2019-01-17 13:12:50 +0100 | [diff] [blame] | 407 | assert_non_null(mod2 = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;" |
| 408 | "identity c2 {base c1;} identity c1;}", LYS_IN_YANG)); |
| 409 | assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived)); |
| 410 | assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[0]); |
| 411 | |
| 412 | assert_null(lys_parse_mem(ctx, "module aa{namespace urn:aa; prefix aa; identity i1;identity i1;}", LYS_IN_YANG)); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 413 | logbuf_assert("Duplicate identifier \"i1\" of identity statement."); |
| 414 | |
Radek Krejci | 4d483a8 | 2019-01-17 13:12:50 +0100 | [diff] [blame] | 415 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule sbb {belongs-to bb {prefix bb;} identity i1;}"); |
| 416 | assert_null(lys_parse_mem(ctx, "module bb{namespace urn:bb; prefix bb; include sbb;identity i1;}", LYS_IN_YANG)); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 417 | logbuf_assert("Duplicate identifier \"i1\" of identity statement."); |
| 418 | |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 419 | assert_null(lys_parse_mem(ctx, "module cc{namespace urn:cc; prefix cc; identity i1 {base i2;}}", LYS_IN_YANG)); |
| 420 | logbuf_assert("Unable to find base (i2) of identity \"i1\"."); |
| 421 | |
| 422 | assert_null(lys_parse_mem(ctx, "module dd{namespace urn:dd; prefix dd; identity i1 {base i1;}}", LYS_IN_YANG)); |
| 423 | logbuf_assert("Identity \"i1\" is derived from itself."); |
| 424 | 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)); |
| 425 | logbuf_assert("Identity \"i1\" is indirectly derived from itself."); |
| 426 | |
Radek Krejci | 7f2a536 | 2018-11-28 13:05:37 +0100 | [diff] [blame] | 427 | *state = NULL; |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 428 | ly_ctx_destroy(ctx, NULL); |
| 429 | } |
| 430 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 431 | static void |
| 432 | test_node_container(void **state) |
| 433 | { |
| 434 | (void) state; /* unused */ |
| 435 | |
| 436 | struct ly_ctx *ctx; |
| 437 | struct lys_module *mod; |
| 438 | struct lysc_node_container *cont; |
| 439 | |
| 440 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 441 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;container c;}", LYS_IN_YANG)); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 442 | assert_non_null(mod->compiled); |
| 443 | assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data)); |
| 444 | assert_int_equal(LYS_CONTAINER, cont->nodetype); |
| 445 | assert_string_equal("c", cont->name); |
| 446 | assert_true(cont->flags & LYS_CONFIG_W); |
| 447 | assert_true(cont->flags & LYS_STATUS_CURR); |
| 448 | |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 449 | 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 Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 450 | logbuf_assert("Missing explicit \"deprecated\" status that was already specified in parent, inheriting."); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 451 | assert_non_null(mod->compiled); |
| 452 | assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data)); |
| 453 | assert_true(cont->flags & LYS_CONFIG_R); |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 454 | assert_true(cont->flags & LYS_STATUS_DEPRC); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 455 | assert_non_null((cont = (struct lysc_node_container*)cont->child)); |
| 456 | assert_int_equal(LYS_CONTAINER, cont->nodetype); |
| 457 | assert_true(cont->flags & LYS_CONFIG_R); |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 458 | assert_true(cont->flags & LYS_STATUS_DEPRC); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 459 | assert_string_equal("child", cont->name); |
| 460 | |
| 461 | ly_ctx_destroy(ctx, NULL); |
| 462 | } |
| 463 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 464 | static void |
| 465 | test_node_leaflist(void **state) |
| 466 | { |
| 467 | *state = test_node_leaflist; |
| 468 | |
| 469 | struct ly_ctx *ctx; |
| 470 | struct lys_module *mod; |
| 471 | struct lysc_type *type; |
| 472 | struct lysc_node_leaflist *ll; |
| 473 | |
| 474 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 475 | |
| 476 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;" |
| 477 | "typedef mytype {type union {type leafref {path ../target;} type string;}}" |
| 478 | "leaf-list ll1 {type union {type decimal64 {fraction-digits 2;} type mytype;}}" |
| 479 | "leaf-list ll2 {type leafref {path ../target;}}" |
| 480 | "leaf target {type int8;}}", |
| 481 | LYS_IN_YANG)); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 482 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 483 | assert_non_null(type); |
| 484 | assert_int_equal(1, type->refcount); |
| 485 | assert_int_equal(LY_TYPE_UNION, type->basetype); |
| 486 | assert_non_null(((struct lysc_type_union*)type)->types); |
| 487 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types)); |
| 488 | assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype); |
| 489 | assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype); |
| 490 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype); |
| 491 | assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype); |
| 492 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype); |
| 493 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 494 | assert_non_null(type); |
| 495 | assert_int_equal(1, type->refcount); |
| 496 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 497 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 498 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype); |
| 499 | |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 500 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf-list ll {type string;}}", LYS_IN_YANG)); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 501 | assert_non_null(mod->compiled); |
| 502 | assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data)); |
| 503 | assert_int_equal(0, ll->min); |
| 504 | assert_int_equal((uint32_t)-1, ll->max); |
| 505 | |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 506 | 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 Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 507 | "leaf-list ll1 {type mytype;default 1; default 1; config false;}" |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 508 | "leaf-list ll2 {type mytype; ordered-by user;}}", LYS_IN_YANG)); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 509 | assert_non_null(mod->compiled); |
| 510 | assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data)); |
| 511 | assert_non_null(ll->dflts); |
| 512 | assert_int_equal(3, ll->type->refcount); |
| 513 | assert_int_equal(2, LY_ARRAY_SIZE(ll->dflts)); |
| 514 | assert_string_equal("1", ll->dflts[0]); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 515 | assert_string_equal("1", ll->dflts[1]); |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 516 | assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_DFLT | LYS_SET_CONFIG, ll->flags); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 517 | assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data->next)); |
| 518 | assert_non_null(ll->dflts); |
| 519 | assert_int_equal(3, ll->type->refcount); |
| 520 | assert_int_equal(1, LY_ARRAY_SIZE(ll->dflts)); |
| 521 | assert_string_equal("10", ll->dflts[0]); |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 522 | assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, ll->flags); |
| 523 | |
| 524 | /* ordered-by is ignored for state data, RPC/action output parameters and notification content |
| 525 | * TODO test also, RPC output parameters and notification content */ |
| 526 | assert_non_null(mod = lys_parse_mem(ctx, "module d {yang-version 1.1;namespace urn:d;prefix d;" |
| 527 | "leaf-list ll {config false; type string; ordered-by user;}}", LYS_IN_YANG)); |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 528 | /* but warning is present: */ |
| 529 | logbuf_assert("The ordered-by statement is ignored in lists representing state data, RPC/action output parameters or notification content ()."); |
| 530 | assert_non_null(mod->compiled); |
| 531 | assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data)); |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 532 | assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_CONFIG, ll->flags); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 533 | |
| 534 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 535 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf-list ll {type empty;}}", LYS_IN_YANG)); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 536 | logbuf_assert("Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules."); |
| 537 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 538 | 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 Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 539 | logbuf_assert("Leaf-list of type \"empty\" must not have a default value (x)."); |
| 540 | |
| 541 | assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;" |
| 542 | "leaf-list ll {config false;type string; default one;default two;default one;}}", LYS_IN_YANG)); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 543 | assert_non_null(mod->compiled); |
| 544 | assert_non_null((ll = (struct lysc_node_leaflist*)mod->compiled->data)); |
| 545 | assert_non_null(ll->dflts); |
| 546 | assert_int_equal(3, LY_ARRAY_SIZE(ll->dflts)); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 547 | assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;" |
| 548 | "leaf-list ll {type string; default one;default two;default one;}}", LYS_IN_YANG)); |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 549 | logbuf_assert("Configuration leaf-list has multiple defaults of the same value \"one\"."); |
| 550 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 551 | *state = NULL; |
| 552 | ly_ctx_destroy(ctx, NULL); |
| 553 | } |
| 554 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 555 | static void |
| 556 | test_node_list(void **state) |
| 557 | { |
| 558 | *state = test_node_list; |
| 559 | |
| 560 | struct ly_ctx *ctx; |
| 561 | struct lys_module *mod; |
| 562 | struct lysc_node_list *list; |
| 563 | |
| 564 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 565 | |
| 566 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;" |
| 567 | "list l1 {key \"x y\"; ordered-by user; leaf x {type string; when 1;}leaf y{type string;if-feature f;}}" |
| 568 | "list l2 {config false;leaf value {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 569 | list = (struct lysc_node_list*)mod->compiled->data; |
| 570 | assert_non_null(list); |
| 571 | assert_non_null(list->keys); |
| 572 | assert_int_equal(2, LY_ARRAY_SIZE(list->keys)); |
| 573 | assert_string_equal("x", list->keys[0]->name); |
| 574 | assert_string_equal("y", list->keys[1]->name); |
| 575 | assert_non_null(list->child); |
| 576 | assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_ORDBY_USER, list->flags); |
| 577 | assert_true(list->child->flags & LYS_KEY); |
| 578 | assert_true(list->child->next->flags & LYS_KEY); |
| 579 | list = (struct lysc_node_list*)mod->compiled->data->next; |
| 580 | assert_non_null(list); |
| 581 | assert_null(list->keys); |
| 582 | assert_non_null(list->child); |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 583 | assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_CONFIG, list->flags); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 584 | assert_false(list->child->flags & LYS_KEY); |
| 585 | |
| 586 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;" |
| 587 | "list l {key a; unique \"a c/b:b\"; unique \"c/e d\";" |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 588 | "leaf a {type string; default x;} leaf d {type string;config false;}" |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 589 | "container c {leaf b {type string;}leaf e{type string;config false;}}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 590 | list = (struct lysc_node_list*)mod->compiled->data; |
| 591 | assert_non_null(list); |
| 592 | assert_string_equal("l", list->name); |
| 593 | assert_non_null(list->keys); |
| 594 | assert_int_equal(1, LY_ARRAY_SIZE(list->keys)); |
| 595 | assert_string_equal("a", list->keys[0]->name); |
| 596 | assert_true(list->keys[0]->flags & LYS_KEY); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 597 | assert_null(list->keys[0]->dflt); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 598 | assert_non_null(list->uniques); |
| 599 | assert_int_equal(2, LY_ARRAY_SIZE(list->uniques)); |
| 600 | assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0])); |
| 601 | assert_string_equal("a", list->uniques[0][0]->name); |
| 602 | assert_true(list->uniques[0][0]->flags & LYS_UNIQUE); |
| 603 | assert_string_equal("b", list->uniques[0][1]->name); |
| 604 | assert_true(list->uniques[0][1]->flags & LYS_UNIQUE); |
| 605 | assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[1])); |
| 606 | assert_string_equal("e", list->uniques[1][0]->name); |
| 607 | assert_true(list->uniques[1][0]->flags & LYS_UNIQUE); |
| 608 | assert_string_equal("d", list->uniques[1][1]->name); |
| 609 | assert_true(list->uniques[1][1]->flags & LYS_UNIQUE); |
| 610 | |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 611 | assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c;" |
| 612 | "list l {key a;leaf a {type empty;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 613 | list = (struct lysc_node_list*)mod->compiled->data; |
| 614 | assert_non_null(list); |
| 615 | assert_string_equal("l", list->name); |
| 616 | assert_non_null(list->keys); |
| 617 | assert_int_equal(1, LY_ARRAY_SIZE(list->keys)); |
| 618 | assert_string_equal("a", list->keys[0]->name); |
| 619 | assert_true(list->keys[0]->flags & LYS_KEY); |
| 620 | assert_int_equal(LY_TYPE_EMPTY, list->keys[0]->type->basetype); |
| 621 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 622 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 623 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;list l;}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 624 | logbuf_assert("Missing key in list representing configuration data."); |
| 625 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 626 | assert_null(lys_parse_mem(ctx, "module bb {yang-version 1.1; namespace urn:bb;prefix bb;" |
| 627 | "list l {key x; leaf x {type string; when 1;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 628 | logbuf_assert("List's key \"x\" must not have any \"when\" statement."); |
| 629 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 630 | assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;feature f;" |
| 631 | "list l {key x; leaf x {type string; if-feature f;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 632 | logbuf_assert("List's key \"x\" must not have any \"if-feature\" statement."); |
| 633 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 634 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;" |
| 635 | "list l {key x; leaf x {type string; config false;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 636 | logbuf_assert("Key of the configuration list must not be status leaf."); |
| 637 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 638 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;" |
| 639 | "list l {config false;key x; leaf x {type string; config true;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 640 | logbuf_assert("Configuration node cannot be child of any state data node."); |
| 641 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 642 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;" |
| 643 | "list l {key x; leaf-list x {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 644 | logbuf_assert("The list's key \"x\" not found."); |
| 645 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 646 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;" |
| 647 | "list l {key x; unique y;leaf x {type string;} leaf-list y {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 648 | logbuf_assert("Unique's descendant-schema-nodeid \"y\" refers to a leaf-list node instead of a leaf."); |
| 649 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 650 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;" |
| 651 | "list l {key x; unique \"x y\";leaf x {type string;} leaf y {config false; type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 652 | logbuf_assert("Unique statement \"x y\" refers to leafs with different config type."); |
| 653 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 654 | assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;" |
| 655 | "list l {key x; unique a:x;leaf x {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 656 | logbuf_assert("Invalid descendant-schema-nodeid value \"a:x\" - prefix \"a\" not defined in module \"ii\"."); |
| 657 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 658 | assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;" |
| 659 | "list l {key x; unique c/x;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 660 | logbuf_assert("Invalid descendant-schema-nodeid value \"c/x\" - target node not found."); |
| 661 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 662 | assert_null( lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;" |
| 663 | "list l {key x; unique c^y;leaf x {type string;}container c {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 664 | logbuf_assert("Invalid descendant-schema-nodeid value \"c^\" - missing \"/\" as node-identifier separator."); |
| 665 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 666 | assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;" |
| 667 | "list l {key \"x y x\";leaf x {type string;}leaf y {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 668 | logbuf_assert("Duplicated key identifier \"x\"."); |
| 669 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 670 | assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;" |
| 671 | "list l {key x;leaf x {type empty;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 672 | logbuf_assert("Key of a list can be of type \"empty\" only in YANG 1.1 modules."); |
| 673 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 674 | *state = NULL; |
| 675 | ly_ctx_destroy(ctx, NULL); |
| 676 | } |
| 677 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 678 | static void |
| 679 | test_node_choice(void **state) |
| 680 | { |
| 681 | *state = test_node_choice; |
| 682 | |
| 683 | struct ly_ctx *ctx; |
| 684 | struct lys_module *mod; |
| 685 | struct lysc_node_choice *ch; |
| 686 | struct lysc_node_case *cs; |
| 687 | |
| 688 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 689 | |
| 690 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;feature f;" |
Radek Krejci | 18f2b8a | 2018-12-12 16:41:21 +0100 | [diff] [blame] | 691 | "choice ch {default a:b; case a {leaf a1 {type string;}leaf a2 {type string;}}" |
| 692 | "leaf b {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 693 | ch = (struct lysc_node_choice*)mod->compiled->data; |
| 694 | assert_non_null(ch); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 695 | assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, ch->flags); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 696 | cs = ch->cases; |
| 697 | assert_non_null(cs); |
| 698 | assert_string_equal("a", cs->name); |
| 699 | assert_ptr_equal(ch, cs->parent); |
| 700 | assert_non_null(cs->child); |
Radek Krejci | 18f2b8a | 2018-12-12 16:41:21 +0100 | [diff] [blame] | 701 | assert_string_equal("a1", cs->child->name); |
| 702 | assert_non_null(cs->child->next); |
| 703 | assert_string_equal("a2", cs->child->next->name); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 704 | assert_ptr_equal(cs, cs->child->parent); |
| 705 | cs = (struct lysc_node_case*)cs->next; |
| 706 | assert_non_null(cs); |
| 707 | assert_string_equal("b", cs->name); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 708 | assert_int_equal(LYS_STATUS_CURR | LYS_SET_DFLT, cs->flags); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 709 | assert_ptr_equal(ch, cs->parent); |
| 710 | assert_non_null(cs->child); |
| 711 | assert_string_equal("b", cs->child->name); |
| 712 | assert_ptr_equal(cs, cs->child->parent); |
Radek Krejci | 18f2b8a | 2018-12-12 16:41:21 +0100 | [diff] [blame] | 713 | assert_ptr_equal(ch->cases->child->next, cs->child->prev); |
| 714 | assert_ptr_equal(ch->cases->child->next->next, cs->child); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 715 | assert_ptr_equal(ch->cases->child->prev, cs->child); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 716 | assert_ptr_equal(ch->dflt, cs); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 717 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 718 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;" |
| 719 | "choice ch {case a {leaf x {type string;}}leaf x {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 720 | logbuf_assert("Duplicate identifier \"x\" of data definition statement."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 721 | assert_null(lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa;" |
| 722 | "choice ch {case a {leaf y {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 723 | logbuf_assert("Duplicate identifier \"y\" of data definition statement."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 724 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;" |
| 725 | "choice ch {case a {leaf x {type string;}}leaf a {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 726 | logbuf_assert("Duplicate identifier \"a\" of case statement."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 727 | assert_null(lys_parse_mem(ctx, "module bb2 {namespace urn:bb2;prefix bb;" |
| 728 | "choice ch {case b {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 729 | logbuf_assert("Duplicate identifier \"b\" of case statement."); |
| 730 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 731 | assert_null(lys_parse_mem(ctx, "module ca {namespace urn:ca;prefix ca;" |
| 732 | "choice ch {default c;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 733 | logbuf_assert("Default case \"c\" not found."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 734 | assert_null(lys_parse_mem(ctx, "module cb {namespace urn:cb;prefix cb; import a {prefix a;}" |
| 735 | "choice ch {default a:a;case a {leaf x {type string;}}case b {leaf y {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 736 | logbuf_assert("Invalid default case referencing a case from different YANG module (by prefix \"a\")."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 737 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;" |
| 738 | "choice ch {default a;case a {leaf x {mandatory true;type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 739 | logbuf_assert("Mandatory node \"x\" under the default case \"a\"."); |
| 740 | /* TODO check with mandatory nodes from augment placed into the case */ |
| 741 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 742 | *state = NULL; |
| 743 | ly_ctx_destroy(ctx, NULL); |
| 744 | } |
| 745 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 746 | static void |
| 747 | test_node_anydata(void **state) |
| 748 | { |
| 749 | *state = test_node_anydata; |
| 750 | |
| 751 | struct ly_ctx *ctx; |
| 752 | struct lys_module *mod; |
| 753 | struct lysc_node_anydata *any; |
| 754 | |
| 755 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 756 | |
| 757 | assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;" |
| 758 | "anydata any {config false;mandatory true;}}", LYS_IN_YANG)); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 759 | any = (struct lysc_node_anydata*)mod->compiled->data; |
| 760 | assert_non_null(any); |
| 761 | assert_int_equal(LYS_ANYDATA, any->nodetype); |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 762 | assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE | LYS_SET_CONFIG, any->flags); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 763 | |
| 764 | logbuf_clean(); |
| 765 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;" |
| 766 | "anyxml any;}", LYS_IN_YANG)); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 767 | any = (struct lysc_node_anydata*)mod->compiled->data; |
| 768 | assert_non_null(any); |
| 769 | assert_int_equal(LYS_ANYXML, any->nodetype); |
| 770 | assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR, any->flags); |
| 771 | logbuf_assert("Use of anyxml to define configuration data is not recommended."); /* warning */ |
| 772 | |
| 773 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 774 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;anydata any;}", LYS_IN_YANG)); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 775 | logbuf_assert("Invalid keyword \"anydata\" as a child of \"module\" - the statement is allowed only in YANG 1.1 modules. Line number 1."); |
| 776 | |
| 777 | *state = NULL; |
| 778 | ly_ctx_destroy(ctx, NULL); |
| 779 | } |
| 780 | |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 781 | /** |
| 782 | * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types, |
| 783 | * do not test the expression itself |
| 784 | */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 785 | static void |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 786 | test_type_range(void **state) |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 787 | { |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 788 | *state = test_type_range; |
| 789 | |
| 790 | struct ly_ctx *ctx; |
| 791 | struct lys_module *mod; |
| 792 | struct lysc_type *type; |
| 793 | |
| 794 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 795 | |
| 796 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 797 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 798 | assert_non_null(type); |
| 799 | assert_int_equal(LY_TYPE_INT8, type->basetype); |
| 800 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 801 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 802 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 803 | assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 804 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 805 | assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 806 | assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 807 | |
| 808 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 809 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 810 | assert_non_null(type); |
| 811 | assert_int_equal(LY_TYPE_INT16, type->basetype); |
| 812 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 813 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 814 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 815 | assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 816 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 817 | assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 818 | assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 819 | |
| 820 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 821 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 822 | assert_non_null(type); |
| 823 | assert_int_equal(LY_TYPE_INT32, type->basetype); |
| 824 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 825 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 826 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 827 | assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 828 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 829 | assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 830 | assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 831 | |
| 832 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 833 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 834 | assert_non_null(type); |
| 835 | assert_int_equal(LY_TYPE_INT64, type->basetype); |
| 836 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 837 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 838 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 839 | assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 840 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 841 | assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 842 | assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 843 | |
| 844 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 845 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 846 | assert_non_null(type); |
| 847 | assert_int_equal(LY_TYPE_UINT8, type->basetype); |
| 848 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 849 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 850 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 851 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 852 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 853 | assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 854 | assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 855 | |
| 856 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 857 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 858 | assert_non_null(type); |
| 859 | assert_int_equal(LY_TYPE_UINT16, type->basetype); |
| 860 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 861 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 862 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 863 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 864 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 865 | assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 866 | assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 867 | |
| 868 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 869 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 870 | assert_non_null(type); |
| 871 | assert_int_equal(LY_TYPE_UINT32, type->basetype); |
| 872 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 873 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 874 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 875 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 876 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 877 | assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 878 | assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 879 | |
| 880 | 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 Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 881 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 882 | assert_non_null(type); |
| 883 | assert_int_equal(LY_TYPE_UINT64, type->basetype); |
| 884 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 885 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 886 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 887 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 888 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 889 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 890 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 891 | |
| 892 | assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}" |
| 893 | "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG)); |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 894 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 895 | assert_non_null(type); |
| 896 | assert_int_equal(3, type->refcount); |
| 897 | assert_int_equal(LY_TYPE_UINT8, type->basetype); |
| 898 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 899 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 900 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 901 | |
Radek Krejci | f139404 | 2019-01-08 10:53:34 +0100 | [diff] [blame] | 902 | assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;" |
| 903 | "typedef mytype {type uint8 {range 1..100{description \"one to hundred\";reference A;}}}" |
| 904 | "leaf l {type mytype {range 1..10 {description \"one to ten\";reference B;}}}}", LYS_IN_YANG)); |
Radek Krejci | f139404 | 2019-01-08 10:53:34 +0100 | [diff] [blame] | 905 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 906 | assert_non_null(type); |
| 907 | assert_int_equal(1, type->refcount); |
| 908 | assert_int_equal(LY_TYPE_UINT8, type->basetype); |
| 909 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 910 | assert_string_equal("one to ten", ((struct lysc_type_num*)type)->range->dsc); |
| 911 | assert_string_equal("B", ((struct lysc_type_num*)type)->range->ref); |
| 912 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 913 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 914 | assert_int_equal(1, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 915 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 916 | |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 917 | *state = NULL; |
| 918 | ly_ctx_destroy(ctx, NULL); |
| 919 | } |
| 920 | |
| 921 | static void |
| 922 | test_type_length(void **state) |
| 923 | { |
| 924 | *state = test_type_length; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 925 | |
| 926 | struct ly_ctx *ctx; |
| 927 | struct lys_module *mod; |
| 928 | struct lysc_type *type; |
| 929 | |
| 930 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 931 | |
Radek Krejci | c5ddcc0 | 2018-11-12 13:28:18 +0100 | [diff] [blame] | 932 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 933 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 934 | assert_non_null(type); |
| 935 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 936 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
Radek Krejci | c5ddcc0 | 2018-11-12 13:28:18 +0100 | [diff] [blame] | 937 | assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag); |
| 938 | assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 939 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 940 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 941 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 942 | |
| 943 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 944 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 945 | assert_non_null(type); |
| 946 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 947 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 948 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
Radek Krejci | 0fe2075 | 2018-11-27 11:33:24 +0100 | [diff] [blame] | 949 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 950 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 951 | |
| 952 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 953 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 954 | assert_non_null(type); |
| 955 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 956 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 957 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 958 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
Radek Krejci | 0fe2075 | 2018-11-27 11:33:24 +0100 | [diff] [blame] | 959 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 960 | |
| 961 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 962 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 963 | assert_non_null(type); |
| 964 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 965 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 966 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 967 | assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 968 | assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 969 | |
| 970 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 971 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 972 | assert_non_null(type); |
| 973 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 974 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 975 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 976 | assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 977 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 978 | |
| 979 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 980 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 981 | assert_non_null(type); |
| 982 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 983 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 984 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 985 | assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 986 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 987 | assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 988 | assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 989 | |
| 990 | 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 991 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 992 | assert_non_null(type); |
| 993 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 994 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 995 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 996 | assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 997 | assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 998 | assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 999 | assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 1000 | |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1001 | assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}" |
| 1002 | "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1003 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1004 | assert_non_null(type); |
| 1005 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 1006 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 1007 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 1008 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 1009 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 1010 | |
| 1011 | assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}" |
| 1012 | "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1013 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1014 | assert_non_null(type); |
| 1015 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 1016 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 1017 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 1018 | assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 1019 | assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 1020 | |
| 1021 | assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}" |
| 1022 | "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1023 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1024 | assert_non_null(type); |
| 1025 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 1026 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 1027 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 1028 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 1029 | assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 1030 | assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 1031 | assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 1032 | |
| 1033 | assert_non_null(mod = lys_parse_mem(ctx, "module k {namespace urn:k;prefix k;typedef mytype {type binary {length 10..100;}}" |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1034 | "leaf l {type mytype {length \"10..80\";}}leaf ll {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1035 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1036 | assert_non_null(type); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1037 | assert_int_equal(1, type->refcount); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1038 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 1039 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 1040 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 1041 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1042 | assert_int_equal(80, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1043 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 1044 | assert_non_null(type); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1045 | assert_int_equal(2, type->refcount); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1046 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 1047 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 1048 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 1049 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 1050 | assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 1051 | |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1052 | assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}" |
| 1053 | "typedef mytype2 {type mytype {pattern '[0-9]*';}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG)); |
Radek Krejci | 9a191e6 | 2018-11-13 13:19:56 +0100 | [diff] [blame] | 1054 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1055 | assert_non_null(type); |
| 1056 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 1057 | assert_int_equal(1, type->refcount); |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1058 | assert_non_null(((struct lysc_type_str*)type)->length); |
| 1059 | assert_non_null(((struct lysc_type_str*)type)->length->parts); |
| 1060 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts)); |
| 1061 | assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64); |
| 1062 | assert_int_equal(100, ((struct lysc_type_str*)type)->length->parts[0].max_u64); |
Radek Krejci | 9a191e6 | 2018-11-13 13:19:56 +0100 | [diff] [blame] | 1063 | |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1064 | assert_non_null(mod = lys_parse_mem(ctx, "module m {namespace urn:m;prefix m;typedef mytype {type string {length 10;}}" |
| 1065 | "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG)); |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1066 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1067 | assert_non_null(type); |
| 1068 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 1069 | assert_int_equal(1, type->refcount); |
| 1070 | assert_non_null(((struct lysc_type_str*)type)->length); |
| 1071 | assert_non_null(((struct lysc_type_str*)type)->length->parts); |
| 1072 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts)); |
| 1073 | assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64); |
| 1074 | assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].max_u64); |
| 1075 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1076 | /* invalid values */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1077 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1078 | logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1079 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1080 | logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\"."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1081 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;leaf l {type binary {length \"max .. 10\";}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1082 | logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1083 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf l {type binary {length 50..10;}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1084 | logbuf_assert("Invalid length restriction - values are not in ascending order (10)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1085 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type binary {length \"50 | 10\";}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1086 | logbuf_assert("Invalid length restriction - values are not in ascending order (10)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1087 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG)); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1088 | logbuf_assert("Invalid length restriction - unexpected data (x)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1089 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type binary {length \"50 | min\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1090 | logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | )."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1091 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1092 | logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1093 | assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1094 | logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1095 | assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1096 | logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1097 | assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1098 | logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1099 | 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 Krejci | 6489bbe | 2018-11-12 17:05:19 +0100 | [diff] [blame] | 1100 | logbuf_assert("Invalid length restriction - values are not in ascending order (15)."); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1101 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1102 | assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}" |
| 1103 | "leaf l {type mytype {length 11;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1104 | logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1105 | assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}" |
| 1106 | "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1107 | logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1108 | assert_null(lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}" |
| 1109 | "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1110 | logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1111 | assert_null(lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}" |
| 1112 | "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1113 | logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1114 | assert_null(lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}" |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1115 | "leaf l {type mytype {length 15;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1116 | logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1117 | assert_null(lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}" |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1118 | "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG)); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1119 | logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1120 | assert_null(lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}" |
Radek Krejci | 6489bbe | 2018-11-12 17:05:19 +0100 | [diff] [blame] | 1121 | "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG)); |
Radek Krejci | 6489bbe | 2018-11-12 17:05:19 +0100 | [diff] [blame] | 1122 | logbuf_assert("Invalid length restriction - the derived restriction (10..35) is not equally or more limiting."); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 1123 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1124 | assert_null(lys_parse_mem(ctx, "module ss {namespace urn:rr;prefix rr;leaf l {type binary {pattern '[0-9]*';}}}", LYS_IN_YANG)); |
Radek Krejci | 495903e | 2018-11-13 11:30:45 +0100 | [diff] [blame] | 1125 | logbuf_assert("Invalid type restrictions for binary type."); |
| 1126 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1127 | *state = NULL; |
| 1128 | ly_ctx_destroy(ctx, NULL); |
| 1129 | } |
| 1130 | |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1131 | static void |
| 1132 | test_type_pattern(void **state) |
| 1133 | { |
| 1134 | *state = test_type_pattern; |
| 1135 | |
| 1136 | struct ly_ctx *ctx; |
| 1137 | struct lys_module *mod; |
| 1138 | struct lysc_type *type; |
| 1139 | |
| 1140 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1141 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1142 | assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1; namespace urn:a;prefix a;leaf l {type string {" |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1143 | "pattern .* {error-app-tag errortag;error-message error;}" |
| 1144 | "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG)); |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1145 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1146 | assert_non_null(type); |
| 1147 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 1148 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 1149 | assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag); |
| 1150 | assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg); |
| 1151 | assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted); |
| 1152 | assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag); |
| 1153 | assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg); |
| 1154 | assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted); |
| 1155 | |
| 1156 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}" |
| 1157 | "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG)); |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1158 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1159 | assert_non_null(type); |
| 1160 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 1161 | assert_int_equal(1, type->refcount); |
| 1162 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 1163 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 1164 | assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount); |
| 1165 | assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount); |
| 1166 | |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1167 | assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}" |
| 1168 | "leaf l {type mytype {length 10;}}}", LYS_IN_YANG)); |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1169 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1170 | assert_non_null(type); |
| 1171 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 1172 | assert_int_equal(1, type->refcount); |
| 1173 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 1174 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 1175 | assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount); |
| 1176 | |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1177 | /* test substitutions */ |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1178 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type string {" |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1179 | "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG)); |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1180 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1181 | assert_non_null(type); |
| 1182 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 1183 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 1184 | /* TODO check some data "^Å™$" */ |
| 1185 | |
| 1186 | *state = NULL; |
| 1187 | ly_ctx_destroy(ctx, NULL); |
| 1188 | } |
| 1189 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1190 | static void |
| 1191 | test_type_enum(void **state) |
| 1192 | { |
| 1193 | *state = test_type_enum; |
| 1194 | |
| 1195 | struct ly_ctx *ctx; |
| 1196 | struct lys_module *mod; |
| 1197 | struct lysc_type *type; |
| 1198 | |
| 1199 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1200 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1201 | 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 Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1202 | "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}" |
| 1203 | "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1204 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1205 | assert_non_null(type); |
| 1206 | assert_int_equal(LY_TYPE_ENUM, type->basetype); |
| 1207 | assert_non_null(((struct lysc_type_enum*)type)->enums); |
| 1208 | assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums)); |
| 1209 | assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures); |
| 1210 | assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name); |
| 1211 | assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value); |
| 1212 | assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name); |
| 1213 | assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value); |
| 1214 | assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name); |
| 1215 | assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value); |
| 1216 | assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name); |
| 1217 | assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value); |
| 1218 | assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name); |
| 1219 | assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value); |
| 1220 | assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name); |
| 1221 | assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value); |
| 1222 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1223 | 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 {" |
| 1224 | "enum 11; enum min {value -2147483648;}enum x$&;" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1225 | "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}", |
| 1226 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1227 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1228 | assert_non_null(type); |
| 1229 | assert_int_equal(LY_TYPE_ENUM, type->basetype); |
| 1230 | assert_non_null(((struct lysc_type_enum*)type)->enums); |
| 1231 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums)); |
| 1232 | assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name); |
| 1233 | assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value); |
| 1234 | assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name); |
| 1235 | assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value); |
| 1236 | |
| 1237 | |
| 1238 | /* invalid cases */ |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1239 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {" |
| 1240 | "enum one {if-feature f;}}}}", LYS_IN_YANG)); |
| 1241 | 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 Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1242 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1243 | "enum one {value -2147483649;}}}}", LYS_IN_YANG)); |
| 1244 | logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1."); |
| 1245 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1246 | "enum one {value 2147483648;}}}}", LYS_IN_YANG)); |
| 1247 | logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1."); |
| 1248 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1249 | "enum one; enum one;}}}", LYS_IN_YANG)); |
| 1250 | logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1."); |
| 1251 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1252 | "enum '';}}}", LYS_IN_YANG)); |
| 1253 | logbuf_assert("Enum name must not be zero-length. Line number 1."); |
| 1254 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1255 | "enum ' x';}}}", LYS_IN_YANG)); |
| 1256 | logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1."); |
| 1257 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1258 | "enum 'x ';}}}", LYS_IN_YANG)); |
| 1259 | logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1."); |
| 1260 | assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 1261 | "enum 'inva\nlid';}}}", LYS_IN_YANG)); |
| 1262 | logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5)."); |
| 1263 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1264 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1265 | logbuf_assert("Missing enum substatement for enumeration type."); |
| 1266 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1267 | assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type enumeration {enum one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1268 | "leaf l {type mytype {enum two;}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1269 | logbuf_assert("Invalid enumeration - derived type adds new item \"two\"."); |
| 1270 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1271 | assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type enumeration {enum one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1272 | "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1273 | logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1274 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type enumeration {enum x {value 2147483647;}enum y;}}}", |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1275 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1276 | logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647."); |
| 1277 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1278 | 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 Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1279 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1280 | logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\"."); |
| 1281 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1282 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}" |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1283 | "leaf l {type mytype {enum one;}}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1284 | logbuf_assert("Missing enum substatement for enumeration type mytype."); |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1285 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1286 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}" |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1287 | "leaf l {type mytype {enum one;}}}", LYS_IN_YANG)); |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1288 | logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules."); |
| 1289 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1290 | *state = NULL; |
| 1291 | ly_ctx_destroy(ctx, NULL); |
| 1292 | } |
| 1293 | |
| 1294 | static void |
| 1295 | test_type_bits(void **state) |
| 1296 | { |
| 1297 | *state = test_type_bits; |
| 1298 | |
| 1299 | struct ly_ctx *ctx; |
| 1300 | struct lys_module *mod; |
| 1301 | struct lysc_type *type; |
| 1302 | |
| 1303 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1304 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1305 | 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 Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1306 | "bit automin; bit one {if-feature f; position 1;}" |
| 1307 | "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1308 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1309 | assert_non_null(type); |
| 1310 | assert_int_equal(LY_TYPE_BITS, type->basetype); |
| 1311 | assert_non_null(((struct lysc_type_bits*)type)->bits); |
| 1312 | assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits)); |
| 1313 | assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures); |
| 1314 | assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name); |
| 1315 | assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position); |
| 1316 | assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name); |
| 1317 | assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position); |
| 1318 | assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name); |
| 1319 | assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position); |
| 1320 | assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name); |
| 1321 | assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position); |
| 1322 | assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name); |
| 1323 | assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position); |
| 1324 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1325 | 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 {" |
| 1326 | "bit automin; bit one;bit two; bit seven {value 7;}bit eight;}} leaf l { type mytype {bit eight;bit seven;bit automin;}}}", |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1327 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1328 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1329 | assert_non_null(type); |
| 1330 | assert_int_equal(LY_TYPE_BITS, type->basetype); |
| 1331 | assert_non_null(((struct lysc_type_bits*)type)->bits); |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1332 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits)); |
| 1333 | assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name); |
| 1334 | assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position); |
| 1335 | assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name); |
| 1336 | assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position); |
| 1337 | assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name); |
| 1338 | assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1339 | |
| 1340 | |
| 1341 | /* invalid cases */ |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1342 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {" |
| 1343 | "bit one {if-feature f;}}}}", LYS_IN_YANG)); |
| 1344 | 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 Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1345 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 1346 | "bit one {position -1;}}}}", LYS_IN_YANG)); |
| 1347 | logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1."); |
| 1348 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 1349 | "bit one {value 4294967296;}}}}", LYS_IN_YANG)); |
| 1350 | logbuf_assert("Invalid value \"4294967296\" of \"value\". Line number 1."); |
| 1351 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 1352 | "bit one; bit one;}}}", LYS_IN_YANG)); |
| 1353 | logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1."); |
| 1354 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 1355 | "bit '11';}}}", LYS_IN_YANG)); |
| 1356 | logbuf_assert("Invalid identifier first character '1'. Line number 1."); |
| 1357 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 1358 | "bit 'x1$1';}}}", LYS_IN_YANG)); |
| 1359 | logbuf_assert("Invalid identifier character '$'. Line number 1."); |
| 1360 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1361 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1362 | logbuf_assert("Missing bit substatement for bits type."); |
| 1363 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1364 | assert_null(lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type bits {bit one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1365 | "leaf l {type mytype {bit two;}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1366 | logbuf_assert("Invalid bits - derived type adds new item \"two\"."); |
| 1367 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1368 | assert_null(lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type bits {bit one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1369 | "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1370 | logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1371 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type bits {bit x {position 4294967295;}bit y;}}}", |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1372 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1373 | logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295."); |
| 1374 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1375 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type bits {bit x {value 1;}bit y {value 1;}}}}", |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1376 | LYS_IN_YANG)); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1377 | logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\"."); |
| 1378 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1379 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}" |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1380 | "leaf l {type mytype {bit one;}}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1381 | logbuf_assert("Missing bit substatement for bits type mytype."); |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1382 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1383 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}" |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1384 | "leaf l {type mytype {bit one;}}}", LYS_IN_YANG)); |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1385 | logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules."); |
| 1386 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1387 | *state = NULL; |
| 1388 | ly_ctx_destroy(ctx, NULL); |
| 1389 | } |
| 1390 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1391 | static void |
| 1392 | test_type_dec64(void **state) |
| 1393 | { |
| 1394 | *state = test_type_dec64; |
| 1395 | |
| 1396 | struct ly_ctx *ctx; |
| 1397 | struct lys_module *mod; |
| 1398 | struct lysc_type *type; |
| 1399 | |
| 1400 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1401 | |
| 1402 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;leaf l {type decimal64 {" |
| 1403 | "fraction-digits 2;range min..max;}}}", LYS_IN_YANG)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1404 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1405 | assert_non_null(type); |
| 1406 | assert_int_equal(LY_TYPE_DEC64, type->basetype); |
| 1407 | assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits); |
| 1408 | assert_non_null(((struct lysc_type_dec*)type)->range); |
| 1409 | assert_non_null(((struct lysc_type_dec*)type)->range->parts); |
| 1410 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts)); |
| 1411 | assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_dec*)type)->range->parts[0].min_64); |
| 1412 | assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_dec*)type)->range->parts[0].max_64); |
| 1413 | |
| 1414 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type decimal64 {" |
| 1415 | "fraction-digits 2;range '3.14 | 5.1 | 10';}}leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1416 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1417 | assert_non_null(type); |
| 1418 | assert_int_equal(LY_TYPE_DEC64, type->basetype); |
| 1419 | assert_int_equal(2, ((struct lysc_type_dec*)type)->fraction_digits); |
| 1420 | assert_non_null(((struct lysc_type_dec*)type)->range); |
| 1421 | assert_non_null(((struct lysc_type_dec*)type)->range->parts); |
| 1422 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_dec*)type)->range->parts)); |
| 1423 | assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].min_64); |
| 1424 | assert_int_equal(314, ((struct lysc_type_dec*)type)->range->parts[0].max_64); |
| 1425 | assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].min_64); |
| 1426 | assert_int_equal(510, ((struct lysc_type_dec*)type)->range->parts[1].max_64); |
| 1427 | assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].min_64); |
| 1428 | assert_int_equal(1000, ((struct lysc_type_dec*)type)->range->parts[2].max_64); |
| 1429 | |
| 1430 | /* invalid cases */ |
| 1431 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 0;}}}", LYS_IN_YANG)); |
| 1432 | logbuf_assert("Invalid value \"0\" of \"fraction-digits\". Line number 1."); |
| 1433 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits -1;}}}", LYS_IN_YANG)); |
| 1434 | logbuf_assert("Invalid value \"-1\" of \"fraction-digits\". Line number 1."); |
| 1435 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64 {fraction-digits 19;}}}", LYS_IN_YANG)); |
| 1436 | logbuf_assert("Value \"19\" is out of \"fraction-digits\" bounds. Line number 1."); |
| 1437 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1438 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type decimal64;}}", LYS_IN_YANG)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1439 | logbuf_assert("Missing fraction-digits substatement for decimal64 type."); |
| 1440 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1441 | 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 Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1442 | logbuf_assert("Missing fraction-digits substatement for decimal64 type mytype."); |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 1443 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1444 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type decimal64 {fraction-digits 2;" |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1445 | "range '3.142';}}}", LYS_IN_YANG)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1446 | logbuf_assert("Range boundary \"3.142\" of decimal64 type exceeds defined number (2) of fraction digits."); |
| 1447 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1448 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; leaf l {type decimal64 {fraction-digits 2;" |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1449 | "range '4 | 3.14';}}}", LYS_IN_YANG)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1450 | logbuf_assert("Invalid range restriction - values are not in ascending order (3.14)."); |
| 1451 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1452 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; typedef mytype {type decimal64 {fraction-digits 2;}}" |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 1453 | "leaf l {type mytype {fraction-digits 3;}}}", LYS_IN_YANG)); |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 1454 | logbuf_assert("Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type."); |
| 1455 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1456 | assert_null(lys_parse_mem(ctx, "module de {namespace urn:de;prefix de; typedef mytype {type decimal64 {fraction-digits 2;}}" |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 1457 | "typedef mytype2 {type mytype {fraction-digits 3;}}leaf l {type mytype2;}}", LYS_IN_YANG)); |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 1458 | logbuf_assert("Invalid fraction-digits substatement for type \"mytype2\" not directly derived from decimal64 built-in type."); |
| 1459 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1460 | *state = NULL; |
| 1461 | ly_ctx_destroy(ctx, NULL); |
| 1462 | } |
| 1463 | |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 1464 | static void |
| 1465 | test_type_instanceid(void **state) |
| 1466 | { |
| 1467 | *state = test_type_instanceid; |
| 1468 | |
| 1469 | struct ly_ctx *ctx; |
| 1470 | struct lys_module *mod; |
| 1471 | struct lysc_type *type; |
| 1472 | |
| 1473 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1474 | |
| 1475 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;typedef mytype {type instance-identifier {require-instance false;}}" |
| 1476 | "leaf l1 {type instance-identifier {require-instance true;}}" |
| 1477 | "leaf l2 {type mytype;} leaf l3 {type instance-identifier;}}", LYS_IN_YANG)); |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 1478 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1479 | assert_non_null(type); |
| 1480 | assert_int_equal(LY_TYPE_INST, type->basetype); |
| 1481 | assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance); |
| 1482 | |
| 1483 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 1484 | assert_non_null(type); |
| 1485 | assert_int_equal(LY_TYPE_INST, type->basetype); |
| 1486 | assert_int_equal(0, ((struct lysc_type_instanceid*)type)->require_instance); |
| 1487 | |
| 1488 | type = ((struct lysc_node_leaf*)mod->compiled->data->next->next)->type; |
| 1489 | assert_non_null(type); |
| 1490 | assert_int_equal(LY_TYPE_INST, type->basetype); |
| 1491 | assert_int_equal(1, ((struct lysc_type_instanceid*)type)->require_instance); |
| 1492 | |
| 1493 | /* invalid cases */ |
| 1494 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type instance-identifier {require-instance yes;}}}", LYS_IN_YANG)); |
| 1495 | logbuf_assert("Invalid value \"yes\" of \"require-instance\". Line number 1."); |
| 1496 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1497 | 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 Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 1498 | logbuf_assert("Invalid type restrictions for instance-identifier type."); |
| 1499 | |
| 1500 | *state = NULL; |
| 1501 | ly_ctx_destroy(ctx, NULL); |
| 1502 | } |
| 1503 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1504 | static void |
| 1505 | test_type_identityref(void **state) |
| 1506 | { |
| 1507 | *state = test_type_identityref; |
| 1508 | |
| 1509 | struct ly_ctx *ctx; |
| 1510 | struct lys_module *mod; |
| 1511 | struct lysc_type *type; |
| 1512 | |
| 1513 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1514 | |
| 1515 | 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;}" |
| 1516 | "typedef mytype {type identityref {base i;}}" |
Radek Krejci | b83ea3e | 2018-11-23 14:29:13 +0100 | [diff] [blame] | 1517 | "leaf l1 {type mytype;} leaf l2 {type identityref {base a:k; base j;}}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1518 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1519 | assert_non_null(type); |
| 1520 | assert_int_equal(LY_TYPE_IDENT, type->basetype); |
| 1521 | assert_non_null(((struct lysc_type_identityref*)type)->bases); |
| 1522 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases)); |
| 1523 | assert_string_equal("i", ((struct lysc_type_identityref*)type)->bases[0]->name); |
| 1524 | |
| 1525 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 1526 | assert_non_null(type); |
| 1527 | assert_int_equal(LY_TYPE_IDENT, type->basetype); |
| 1528 | assert_non_null(((struct lysc_type_identityref*)type)->bases); |
| 1529 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases)); |
| 1530 | assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name); |
| 1531 | assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name); |
| 1532 | |
Radek Krejci | b83ea3e | 2018-11-23 14:29:13 +0100 | [diff] [blame] | 1533 | assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import a {prefix a;}" |
| 1534 | "leaf l {type identityref {base a:k; base a:j;}}}", LYS_IN_YANG)); |
Radek Krejci | b83ea3e | 2018-11-23 14:29:13 +0100 | [diff] [blame] | 1535 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1536 | assert_non_null(type); |
| 1537 | assert_int_equal(LY_TYPE_IDENT, type->basetype); |
| 1538 | assert_non_null(((struct lysc_type_identityref*)type)->bases); |
| 1539 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_identityref*)type)->bases)); |
| 1540 | assert_string_equal("k", ((struct lysc_type_identityref*)type)->bases[0]->name); |
| 1541 | assert_string_equal("j", ((struct lysc_type_identityref*)type)->bases[1]->name); |
| 1542 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1543 | /* invalid cases */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1544 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type identityref;}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1545 | logbuf_assert("Missing base substatement for identityref type."); |
| 1546 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1547 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; typedef mytype {type identityref;}" |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1548 | "leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1549 | logbuf_assert("Missing base substatement for identityref type mytype."); |
| 1550 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1551 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; identity i; typedef mytype {type identityref {base i;}}" |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1552 | "leaf l {type mytype {base i;}}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1553 | logbuf_assert("Invalid base substatement for the type not directly derived from identityref built-in type."); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1554 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1555 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; identity i; typedef mytype {type identityref {base i;}}" |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1556 | "typedef mytype2 {type mytype {base i;}}leaf l {type mytype2;}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1557 | logbuf_assert("Invalid base substatement for the type \"mytype2\" not directly derived from identityref built-in type."); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1558 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1559 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; identity i; identity j;" |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1560 | "leaf l {type identityref {base i;base j;}}}", LYS_IN_YANG)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1561 | logbuf_assert("Multiple bases in identityref type are allowed only in YANG 1.1 modules."); |
| 1562 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1563 | 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 Krejci | 322614f | 2018-11-16 15:05:44 +0100 | [diff] [blame] | 1564 | logbuf_assert("Unable to find base (j) of identityref."); |
| 1565 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1566 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type identityref {base x:j;}}}", LYS_IN_YANG)); |
Radek Krejci | 322614f | 2018-11-16 15:05:44 +0100 | [diff] [blame] | 1567 | logbuf_assert("Invalid prefix used for base (x:j) of identityref."); |
| 1568 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1569 | *state = NULL; |
| 1570 | ly_ctx_destroy(ctx, NULL); |
| 1571 | } |
| 1572 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1573 | static void |
| 1574 | test_type_leafref(void **state) |
| 1575 | { |
| 1576 | *state = test_type_leafref; |
| 1577 | |
| 1578 | struct ly_ctx *ctx; |
| 1579 | struct lys_module *mod; |
| 1580 | struct lysc_type *type; |
| 1581 | const char *path, *name, *prefix; |
| 1582 | size_t prefix_len, name_len; |
| 1583 | int parent_times, has_predicate; |
| 1584 | |
| 1585 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1586 | |
| 1587 | /* lys_path_token() */ |
| 1588 | path = "invalid_path"; |
| 1589 | parent_times = 0; |
| 1590 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1591 | path = ".."; |
| 1592 | parent_times = 0; |
| 1593 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1594 | path = "..["; |
| 1595 | parent_times = 0; |
| 1596 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1597 | path = "../"; |
| 1598 | parent_times = 0; |
| 1599 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1600 | path = "/"; |
| 1601 | parent_times = 0; |
| 1602 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1603 | |
| 1604 | path = "../../pref:id/xxx[predicate]/invalid!!!"; |
| 1605 | parent_times = 0; |
| 1606 | assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1607 | assert_string_equal("/xxx[predicate]/invalid!!!", path); |
| 1608 | assert_int_equal(4, prefix_len); |
| 1609 | assert_int_equal(0, strncmp("pref", prefix, prefix_len)); |
| 1610 | assert_int_equal(2, name_len); |
| 1611 | assert_int_equal(0, strncmp("id", name, name_len)); |
| 1612 | assert_int_equal(2, parent_times); |
| 1613 | assert_int_equal(0, has_predicate); |
| 1614 | assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1615 | assert_string_equal("[predicate]/invalid!!!", path); |
| 1616 | assert_int_equal(0, prefix_len); |
| 1617 | assert_null(prefix); |
| 1618 | assert_int_equal(3, name_len); |
| 1619 | assert_int_equal(0, strncmp("xxx", name, name_len)); |
| 1620 | assert_int_equal(1, has_predicate); |
| 1621 | path += 11; |
| 1622 | assert_int_equal(LY_EINVAL, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1623 | assert_string_equal("!!!", path); |
| 1624 | assert_int_equal(0, prefix_len); |
| 1625 | assert_null(prefix); |
| 1626 | assert_int_equal(7, name_len); |
| 1627 | assert_int_equal(0, strncmp("invalid", name, name_len)); |
| 1628 | |
| 1629 | path = "/absolute/prefix:path"; |
| 1630 | parent_times = 0; |
| 1631 | assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1632 | assert_string_equal("/prefix:path", path); |
| 1633 | assert_int_equal(0, prefix_len); |
| 1634 | assert_null(prefix); |
| 1635 | assert_int_equal(8, name_len); |
| 1636 | assert_int_equal(0, strncmp("absolute", name, name_len)); |
| 1637 | assert_int_equal(-1, parent_times); |
| 1638 | assert_int_equal(0, has_predicate); |
| 1639 | assert_int_equal(LY_SUCCESS, lys_path_token(&path, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)); |
| 1640 | assert_int_equal(0, *path); |
| 1641 | assert_int_equal(6, prefix_len); |
| 1642 | assert_int_equal(0, strncmp("prefix", prefix, prefix_len)); |
| 1643 | assert_int_equal(4, name_len); |
| 1644 | assert_int_equal(0, strncmp("path", name, name_len)); |
| 1645 | assert_int_equal(0, has_predicate); |
| 1646 | |
| 1647 | /* complete leafref paths */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1648 | assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a;" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1649 | "leaf ref1 {type leafref {path /a:target1;}} leaf ref2 {type leafref {path /a/target2; require-instance false;}}" |
| 1650 | "leaf target1 {type string;}container a {leaf target2 {type uint8;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1651 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1652 | assert_non_null(type); |
| 1653 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1654 | assert_string_equal("/a:target1", ((struct lysc_type_leafref*)type)->path); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1655 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1656 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1657 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1658 | assert_int_equal(1, ((struct lysc_type_leafref*)type)->require_instance); |
| 1659 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 1660 | assert_non_null(type); |
| 1661 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1662 | assert_string_equal("/a/target2", ((struct lysc_type_leafref*)type)->path); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1663 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1664 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1665 | assert_int_equal(LY_TYPE_UINT8, ((struct lysc_type_leafref*)type)->realtype->basetype); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1666 | assert_int_equal(0, ((struct lysc_type_leafref*)type)->require_instance); |
| 1667 | |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1668 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mytype {type leafref {path /b:target;}}" |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1669 | "typedef mytype2 {type mytype;} typedef mytype3 {type leafref {path /target;}} leaf ref {type mytype2;}" |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1670 | "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type string;}}", LYS_IN_YANG)); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1671 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1672 | assert_non_null(type); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1673 | assert_int_equal(1, type->refcount); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1674 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1675 | assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path); |
| 1676 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1677 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1678 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1679 | assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance); |
| 1680 | |
| 1681 | /* prefixes are reversed to check using correct context of the path! */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1682 | assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix b; import b {prefix c;}" |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1683 | "typedef mytype3 {type c:mytype {require-instance false;}}" |
| 1684 | "leaf ref1 {type b:mytype3;}leaf ref2 {type c:mytype2;}}", LYS_IN_YANG)); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1685 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1686 | assert_non_null(type); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1687 | assert_int_equal(1, type->refcount); |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1688 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1689 | assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path); |
| 1690 | assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1691 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1692 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype); |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1693 | assert_int_equal(0, ((struct lysc_type_leafref* )type)->require_instance); |
| 1694 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 1695 | assert_non_null(type); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1696 | assert_int_equal(1, type->refcount); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1697 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1698 | assert_string_equal("/b:target", ((struct lysc_type_leafref* )type)->path); |
| 1699 | assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1700 | assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance); |
| 1701 | |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1702 | /* non-prefixed nodes in path are supposed to be from the module where the leafref type is instantiated */ |
| 1703 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; import b {prefix b;}" |
| 1704 | "leaf ref {type b:mytype3;}leaf target {type int8;}}", LYS_IN_YANG)); |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1705 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1706 | assert_non_null(type); |
| 1707 | assert_int_equal(1, type->refcount); |
| 1708 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1709 | assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path); |
| 1710 | assert_ptr_not_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1711 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1712 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)type)->realtype->basetype); |
| 1713 | assert_int_equal(1, ((struct lysc_type_leafref* )type)->require_instance); |
| 1714 | |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1715 | /* conditional leafrefs */ |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1716 | assert_non_null(mod = lys_parse_mem(ctx, "module e {yang-version 1.1;namespace urn:e;prefix e;feature f1; feature f2;" |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1717 | "leaf ref1 {if-feature 'f1 and f2';type leafref {path /target;}}" |
| 1718 | "leaf target {if-feature f1; type boolean;}}", LYS_IN_YANG)); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1719 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1720 | assert_non_null(type); |
| 1721 | assert_int_equal(1, type->refcount); |
| 1722 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1723 | assert_string_equal("/target", ((struct lysc_type_leafref* )type)->path); |
| 1724 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1725 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1726 | assert_int_equal(LY_TYPE_BOOL, ((struct lysc_type_leafref*)type)->realtype->basetype); |
| 1727 | |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 1728 | assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;" |
| 1729 | "list interface{key name;leaf name{type string;}list address {key ip;leaf ip {type string;}}}" |
| 1730 | "container default-address{leaf ifname{type leafref{ path \"../../interface/name\";}}" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1731 | "leaf address {type leafref{ path \"../../interface[ name = current()/../ifname ]/address/ip\";}}}}", |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 1732 | LYS_IN_YANG)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1733 | type = ((struct lysc_node_leaf*)(*lysc_node_children_p(mod->compiled->data->prev))->prev)->type; |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 1734 | assert_non_null(type); |
| 1735 | assert_int_equal(1, type->refcount); |
| 1736 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1737 | assert_string_equal("../../interface[ name = current()/../ifname ]/address/ip", ((struct lysc_type_leafref* )type)->path); |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 1738 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1739 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1740 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1741 | |
Radek Krejci | 20e8a18 | 2018-12-07 11:43:21 +0100 | [diff] [blame] | 1742 | assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;" |
| 1743 | "leaf source {type leafref {path \"/endpoint-parent[id=current()/../field]/endpoint/name\";}}" |
| 1744 | "leaf field {type int32;}list endpoint-parent {key id;leaf id {type int32;}" |
| 1745 | "list endpoint {key name;leaf name {type string;}}}}", LYS_IN_YANG)); |
Radek Krejci | 20e8a18 | 2018-12-07 11:43:21 +0100 | [diff] [blame] | 1746 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1747 | assert_non_null(type); |
| 1748 | assert_int_equal(1, type->refcount); |
| 1749 | assert_int_equal(LY_TYPE_LEAFREF, type->basetype); |
| 1750 | assert_string_equal("/endpoint-parent[id=current()/../field]/endpoint/name", ((struct lysc_type_leafref* )type)->path); |
| 1751 | assert_ptr_equal(mod, ((struct lysc_type_leafref*)type)->path_context); |
| 1752 | assert_non_null(((struct lysc_type_leafref*)type)->realtype); |
| 1753 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_leafref*)type)->realtype->basetype); |
| 1754 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1755 | /* invalid paths */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1756 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1757 | "leaf ref1 {type leafref {path ../a/invalid;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1758 | logbuf_assert("Invalid leafref path - unable to find \"../a/invalid\"."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1759 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1760 | "leaf ref1 {type leafref {path ../../toohigh;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1761 | logbuf_assert("Invalid leafref path \"../../toohigh\" - too many \"..\" in the path."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1762 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1763 | "leaf ref1 {type leafref {path /a:invalid;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1764 | logbuf_assert("Invalid leafref path - unable to find module connected with the prefix of the node \"/a:invalid\"."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1765 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf target1 {type string;}container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1766 | "leaf ref1 {type leafref {path '/a[target2 = current()/../target1]/target2';}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1767 | logbuf_assert("Invalid leafref path - node \"/a\" is expected to be a list, but it is container."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1768 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1769 | "leaf ref1 {type leafref {path /a!invalid;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1770 | logbuf_assert("Invalid leafref path at character 3 (/a!invalid)."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1771 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;container a {leaf target2 {type uint8;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1772 | "leaf ref1 {type leafref {path /a;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1773 | logbuf_assert("Invalid leafref path \"/a\" - target node is container instead of leaf or leaf-list."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1774 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;container a {leaf target2 {type uint8; status deprecated;}}" |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1775 | "leaf ref1 {type leafref {path /a/target2;}}}", LYS_IN_YANG)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1776 | logbuf_assert("A current definition \"ref1\" is not allowed to reference deprecated definition \"target2\"."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1777 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;" |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1778 | "leaf ref1 {type leafref;}}", LYS_IN_YANG)); |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1779 | logbuf_assert("Missing path substatement for leafref type."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1780 | assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;typedef mytype {type leafref;}" |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1781 | "leaf ref1 {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 2f4a029 | 2018-11-22 15:41:53 +0100 | [diff] [blame] | 1782 | logbuf_assert("Missing path substatement for leafref type mytype."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1783 | assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;feature f;" |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1784 | "leaf ref {type leafref {path /target;}}leaf target {if-feature f;type string;}}", LYS_IN_YANG)); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1785 | logbuf_assert("Invalid leafref path \"/target\" - set of features applicable to the leafref target is not a subset of features " |
| 1786 | "applicable to the leafref itself."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1787 | assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;" |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1788 | "leaf ref {type leafref {path /target;}}leaf target {type string;config false;}}", LYS_IN_YANG)); |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1789 | logbuf_assert("Invalid leafref path \"/target\" - target is supposed to represent configuration data (as the leafref does), but it does not."); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 1790 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1791 | assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;" |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1792 | "leaf ref {type leafref {path /target; require-instance true;}}leaf target {type string;}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1793 | logbuf_assert("Leafref type can be restricted by require-instance statement only in YANG 1.1 modules."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1794 | assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type leafref {path /target;require-instance false;}}" |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1795 | "leaf ref {type mytype;}leaf target {type string;}}", LYS_IN_YANG)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1796 | logbuf_assert("Leafref type \"mytype\" can be restricted by require-instance statement only in YANG 1.1 modules."); |
| 1797 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1798 | assert_null(lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1799 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1800 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1801 | "leaf address {type leafref{ path \"/interface[name is current()/../ifname]/ip\";}}}", |
| 1802 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1803 | logbuf_assert("Invalid leafref path predicate \"[name i\" - missing \"=\" after node-identifier."); |
| 1804 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1805 | assert_null(lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1806 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1807 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1808 | "leaf address {type leafref{ path \"/interface[name=current()/../ifname/ip\";}}}", |
| 1809 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1810 | logbuf_assert("Invalid leafref path predicate \"[name=current()/../ifname/ip\" - missing predicate termination."); |
| 1811 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1812 | assert_null(lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1813 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1814 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1815 | "leaf address {type leafref{ path \"/interface[x:name=current()/../ifname]/ip\";}}}", |
| 1816 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1817 | logbuf_assert("Invalid leafref path predicate \"[x:name=current()/../ifname]\" - prefix \"x\" not defined in module \"pp\"."); |
| 1818 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1819 | assert_null(lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1820 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1821 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1822 | "leaf address {type leafref{ path \"/interface[id=current()/../ifname]/ip\";}}}", |
| 1823 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1824 | logbuf_assert("Invalid leafref path predicate \"[id=current()/../ifname]\" - predicate's key node \"id\" not found."); |
| 1825 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1826 | assert_null(lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1827 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1828 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1829 | "leaf address {type leafref{ path \"/interface[name=current() / .. / ifname][name=current()/../test]/ip\";}}}", |
| 1830 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1831 | logbuf_assert("Invalid leafref path predicate \"[name=current()/../test]\" - multiple equality tests for the key \"name\"."); |
| 1832 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1833 | assert_null(lys_parse_mem(ctx, "module ss {namespace urn:ss;prefix ss;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1834 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1835 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1836 | "leaf address {type leafref{ path \"/interface[name = ../ifname]/ip\";}}}", |
| 1837 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1838 | logbuf_assert("Invalid leafref path predicate \"[name = ../ifname]\" - missing current-function-invocation."); |
| 1839 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1840 | assert_null(lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1841 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1842 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1843 | "leaf address {type leafref{ path \"/interface[name = current()../ifname]/ip\";}}}", |
| 1844 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1845 | logbuf_assert("Invalid leafref path predicate \"[name = current()../ifname]\" - missing \"/\" after current-function-invocation."); |
| 1846 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1847 | assert_null(lys_parse_mem(ctx, "module uu {namespace urn:uu;prefix uu;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1848 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1849 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1850 | "leaf address {type leafref{ path \"/interface[name = current()/..ifname]/ip\";}}}", |
| 1851 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1852 | logbuf_assert("Invalid leafref path predicate \"[name = current()/..ifname]\" - missing \"/\" in \"../\" rel-path-keyexpr pattern."); |
| 1853 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1854 | assert_null(lys_parse_mem(ctx, "module vv {namespace urn:vv;prefix vv;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1855 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1856 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1857 | "leaf address {type leafref{ path \"/interface[name = current()/ifname]/ip\";}}}", |
| 1858 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1859 | logbuf_assert("Invalid leafref path predicate \"[name = current()/ifname]\" - at least one \"..\" is expected in rel-path-keyexpr."); |
| 1860 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1861 | assert_null(lys_parse_mem(ctx, "module ww {namespace urn:ww;prefix ww;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1862 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1863 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1864 | "leaf address {type leafref{ path \"/interface[name = current()/../]/ip\";}}}", |
| 1865 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1866 | logbuf_assert("Invalid leafref path predicate \"[name = current()/../]\" - at least one node-identifier is expected in rel-path-keyexpr."); |
| 1867 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1868 | assert_null(lys_parse_mem(ctx, "module xx {namespace urn:xx;prefix xx;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1869 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1870 | "leaf ifname{type leafref{ path \"../interface/name\";}}leaf test{type string;}" |
| 1871 | "leaf address {type leafref{ path \"/interface[name = current()/../$node]/ip\";}}}", |
| 1872 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1873 | logbuf_assert("Invalid node identifier in leafref path predicate - character 22 (of [name = current()/../$node])."); |
| 1874 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1875 | assert_null(lys_parse_mem(ctx, "module yy {namespace urn:yy;prefix yy;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1876 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1877 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1878 | "leaf address {type leafref{ path \"/interface[name=current()/../x:ifname]/ip\";}}}", |
| 1879 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1880 | logbuf_assert("Invalid leafref path predicate \"[name=current()/../x:ifname]\" - unable to find module of the node \"ifname\" in rel-path_keyexpr."); |
| 1881 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1882 | assert_null(lys_parse_mem(ctx, "module zz {namespace urn:zz;prefix zz;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1883 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1884 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1885 | "leaf address {type leafref{ path \"/interface[name=current()/../xxx]/ip\";}}}", |
| 1886 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1887 | logbuf_assert("Invalid leafref path predicate \"[name=current()/../xxx]\" - unable to find node \"current()/../xxx\" in the rel-path_keyexpr."); |
| 1888 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1889 | assert_null(lys_parse_mem(ctx, "module zza {namespace urn:zza;prefix zza;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1890 | "list interface{key name;leaf name{type string;}leaf ip {type string;}}" |
| 1891 | "leaf ifname{type leafref{ path \"../interface/name\";}}container c;" |
| 1892 | "leaf address {type leafref{ path \"/interface[name=current()/../c]/ip\";}}}", |
| 1893 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1894 | logbuf_assert("Invalid leafref path predicate \"[name=current()/../c]\" - rel-path_keyexpr \"current()/../c\" refers container instead of leaf."); |
| 1895 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1896 | assert_null(lys_parse_mem(ctx, "module zzb {namespace urn:zzb;prefix zzb;" |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1897 | "list interface{key name;leaf name{type string;}leaf ip {type string;}container c;}" |
| 1898 | "leaf ifname{type leafref{ path \"../interface/name\";}}" |
| 1899 | "leaf address {type leafref{ path \"/interface[c=current()/../ifname]/ip\";}}}", |
| 1900 | LYS_IN_YANG)); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1901 | logbuf_assert("Invalid leafref path predicate \"[c=current()/../ifname]\" - predicate's key node \"c\" not found."); |
| 1902 | |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1903 | /* circular chain */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1904 | assert_null(lys_parse_mem(ctx, "module aaa {namespace urn:aaa;prefix aaa;" |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1905 | "leaf ref1 {type leafref {path /ref2;}}" |
| 1906 | "leaf ref2 {type leafref {path /ref3;}}" |
Radek Krejci | 0c3f1ad | 2018-11-23 14:19:38 +0100 | [diff] [blame] | 1907 | "leaf ref3 {type leafref {path /ref4;}}" |
| 1908 | "leaf ref4 {type leafref {path /ref1;}}}", LYS_IN_YANG)); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1909 | logbuf_assert("Invalid leafref path \"/ref1\" - circular chain of leafrefs detected."); |
| 1910 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1911 | *state = NULL; |
| 1912 | ly_ctx_destroy(ctx, NULL); |
| 1913 | } |
| 1914 | |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1915 | static void |
| 1916 | test_type_empty(void **state) |
| 1917 | { |
| 1918 | *state = test_type_empty; |
| 1919 | |
| 1920 | struct ly_ctx *ctx; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1921 | |
| 1922 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1923 | |
| 1924 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1925 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;" |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1926 | "leaf l {type empty; default x;}}", LYS_IN_YANG)); |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1927 | logbuf_assert("Leaf of type \"empty\" must not have a default value (x)."); |
| 1928 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1929 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;typedef mytype {type empty; default x;}" |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1930 | "leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 1931 | logbuf_assert("Invalid type \"mytype\" - \"empty\" type must not have a default value (x)."); |
| 1932 | |
| 1933 | *state = NULL; |
| 1934 | ly_ctx_destroy(ctx, NULL); |
| 1935 | } |
| 1936 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1937 | |
| 1938 | static void |
| 1939 | test_type_union(void **state) |
| 1940 | { |
| 1941 | *state = test_type_union; |
| 1942 | |
| 1943 | struct ly_ctx *ctx; |
| 1944 | struct lys_module *mod; |
| 1945 | struct lysc_type *type; |
| 1946 | |
| 1947 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 1948 | |
| 1949 | assert_non_null(mod = lys_parse_mem(ctx, "module a {yang-version 1.1;namespace urn:a;prefix a; typedef mybasetype {type string;}" |
| 1950 | "typedef mytype {type union {type int8; type mybasetype;}}" |
| 1951 | "leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1952 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1953 | assert_non_null(type); |
| 1954 | assert_int_equal(2, type->refcount); |
| 1955 | assert_int_equal(LY_TYPE_UNION, type->basetype); |
| 1956 | assert_non_null(((struct lysc_type_union*)type)->types); |
| 1957 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types)); |
| 1958 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[0]->basetype); |
| 1959 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype); |
| 1960 | |
| 1961 | assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b; typedef mybasetype {type string;}" |
| 1962 | "typedef mytype {type union {type int8; type mybasetype;}}" |
| 1963 | "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1964 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1965 | assert_non_null(type); |
| 1966 | assert_int_equal(1, type->refcount); |
| 1967 | assert_int_equal(LY_TYPE_UNION, type->basetype); |
| 1968 | assert_non_null(((struct lysc_type_union*)type)->types); |
| 1969 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types)); |
| 1970 | assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype); |
| 1971 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_union*)type)->types[1]->basetype); |
| 1972 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype); |
| 1973 | |
| 1974 | assert_non_null(mod = lys_parse_mem(ctx, "module c {yang-version 1.1;namespace urn:c;prefix c; typedef mybasetype {type string;}" |
| 1975 | "typedef mytype {type union {type leafref {path ../target;} type mybasetype;}}" |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1976 | "leaf l {type union {type decimal64 {fraction-digits 2;} type mytype;}}" |
| 1977 | "leaf target {type leafref {path ../realtarget;}} leaf realtarget {type int8;}}", |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1978 | LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 1979 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 1980 | assert_non_null(type); |
| 1981 | assert_int_equal(1, type->refcount); |
| 1982 | assert_int_equal(LY_TYPE_UNION, type->basetype); |
| 1983 | assert_non_null(((struct lysc_type_union*)type)->types); |
| 1984 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types)); |
| 1985 | assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype); |
| 1986 | assert_int_equal(LY_TYPE_LEAFREF, ((struct lysc_type_union*)type)->types[1]->basetype); |
| 1987 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[2]->basetype); |
| 1988 | assert_non_null(((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype); |
| 1989 | assert_int_equal(LY_TYPE_INT8, ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[1])->realtype->basetype); |
| 1990 | |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1991 | /* invalid unions */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1992 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;typedef mytype {type union;}" |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1993 | "leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1994 | logbuf_assert("Missing type substatement for union type mytype."); |
| 1995 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1996 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type union;}}", LYS_IN_YANG)); |
| 1997 | logbuf_assert("Missing type substatement for union type."); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 1998 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1999 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;typedef mytype {type union{type int8; type string;}}" |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2000 | "leaf l {type mytype {type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2001 | logbuf_assert("Invalid type substatement for the type not directly derived from union built-in type."); |
| 2002 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2003 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;typedef mytype {type union{type int8; type string;}}" |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2004 | "typedef mytype2 {type mytype {type string;}}leaf l {type mytype2;}}", LYS_IN_YANG)); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2005 | logbuf_assert("Invalid type substatement for the type \"mytype2\" not directly derived from union built-in type."); |
| 2006 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2007 | *state = NULL; |
| 2008 | ly_ctx_destroy(ctx, NULL); |
| 2009 | } |
| 2010 | |
| 2011 | static void |
| 2012 | test_type_dflt(void **state) |
| 2013 | { |
| 2014 | *state = test_type_union; |
| 2015 | |
| 2016 | struct ly_ctx *ctx; |
| 2017 | struct lys_module *mod; |
| 2018 | struct lysc_type *type; |
| 2019 | |
| 2020 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2021 | |
| 2022 | /* default is not inherited from union's types */ |
| 2023 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a; typedef mybasetype {type string;default hello;units xxx;}" |
| 2024 | "leaf l {type union {type decimal64 {fraction-digits 2;} type mybasetype;}}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2025 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2026 | assert_non_null(type); |
| 2027 | assert_int_equal(1, type->refcount); |
| 2028 | assert_int_equal(LY_TYPE_UNION, type->basetype); |
| 2029 | assert_non_null(((struct lysc_type_union*)type)->types); |
| 2030 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_union*)type)->types)); |
| 2031 | assert_int_equal(LY_TYPE_DEC64, ((struct lysc_type_union*)type)->types[0]->basetype); |
| 2032 | assert_int_equal(LY_TYPE_STRING, ((struct lysc_type_union*)type)->types[1]->basetype); |
| 2033 | assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2034 | assert_null(((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2035 | |
| 2036 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b; typedef mybasetype {type string;default hello;units xxx;}" |
| 2037 | "leaf l {type mybasetype;}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2038 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2039 | assert_non_null(type); |
| 2040 | assert_int_equal(2, type->refcount); |
| 2041 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2042 | assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2043 | assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2044 | |
| 2045 | assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mybasetype {type string;default hello;units xxx;}" |
| 2046 | "leaf l {type mybasetype; default goodbye;units yyy;}}", LYS_IN_YANG)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2047 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2048 | assert_non_null(type); |
| 2049 | assert_int_equal(2, type->refcount); |
| 2050 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2051 | assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2052 | assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2053 | |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2054 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; typedef mybasetype {type string;default hello;units xxx;}" |
| 2055 | "typedef mytype {type mybasetype;}leaf l1 {type mytype; default goodbye;units yyy;}" |
| 2056 | "leaf l2 {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2057 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2058 | assert_non_null(type); |
| 2059 | assert_int_equal(4, type->refcount); |
| 2060 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2061 | assert_string_equal("goodbye", ((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2062 | assert_string_equal("yyy", ((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2063 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 2064 | assert_non_null(type); |
| 2065 | assert_int_equal(4, type->refcount); |
| 2066 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2067 | assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data->next)->dflt); |
| 2068 | assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data->next)->units); |
| 2069 | |
| 2070 | assert_non_null(mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e; typedef mybasetype {type string;}" |
| 2071 | "typedef mytype {type mybasetype; default hello;units xxx;}leaf l {type mytype;}}", LYS_IN_YANG)); |
Radek Krejci | 6be5ff1 | 2018-11-26 13:18:15 +0100 | [diff] [blame] | 2072 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2073 | assert_non_null(type); |
| 2074 | assert_int_equal(3, type->refcount); |
| 2075 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2076 | assert_string_equal("hello", ((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2077 | assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2078 | |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 2079 | /* mandatory leaf does not takes default value from type */ |
| 2080 | assert_non_null(mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;typedef mytype {type string; default hello;units xxx;}" |
| 2081 | "leaf l {type mytype; mandatory true;}}", LYS_IN_YANG)); |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 2082 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 2083 | assert_non_null(type); |
| 2084 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 2085 | assert_null(((struct lysc_node_leaf*)mod->compiled->data)->dflt); |
| 2086 | assert_string_equal("xxx", ((struct lysc_node_leaf*)mod->compiled->data)->units); |
| 2087 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2088 | *state = NULL; |
| 2089 | ly_ctx_destroy(ctx, NULL); |
| 2090 | } |
| 2091 | |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2092 | static void |
| 2093 | test_status(void **state) |
| 2094 | { |
| 2095 | *state = test_status; |
| 2096 | |
| 2097 | struct ly_ctx *ctx; |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2098 | |
| 2099 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2100 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2101 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;" |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2102 | "container c {status deprecated; leaf l {status current; type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2103 | logbuf_assert("A \"current\" status is in conflict with the parent's \"deprecated\" status."); |
| 2104 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2105 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;" |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2106 | "container c {status obsolete; leaf l {status current; type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2107 | logbuf_assert("A \"current\" status is in conflict with the parent's \"obsolete\" status."); |
| 2108 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2109 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;" |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2110 | "container c {status obsolete; leaf l {status deprecated; type string;}}}", LYS_IN_YANG)); |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2111 | logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status."); |
| 2112 | |
| 2113 | *state = NULL; |
| 2114 | ly_ctx_destroy(ctx, NULL); |
| 2115 | } |
| 2116 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2117 | static void |
| 2118 | test_uses(void **state) |
| 2119 | { |
| 2120 | *state = test_uses; |
| 2121 | |
| 2122 | struct ly_ctx *ctx; |
| 2123 | struct lys_module *mod; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 2124 | const struct lysc_node *parent, *child; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2125 | |
| 2126 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2127 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 2128 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module grp {namespace urn:grp;prefix g; typedef mytype {type string;} feature f;" |
| 2129 | "grouping grp {leaf x {type mytype;} leaf y {type string; if-feature f;}}}"); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2130 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;import grp {prefix g;}" |
| 2131 | "grouping grp_a_top {leaf a1 {type int8;}}" |
| 2132 | "container a {uses grp_a; uses grp_a_top; uses g:grp; grouping grp_a {leaf a2 {type uint8;}}}}", LYS_IN_YANG)); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2133 | assert_non_null((parent = mod->compiled->data)); |
| 2134 | assert_int_equal(LYS_CONTAINER, parent->nodetype); |
| 2135 | assert_non_null((child = ((struct lysc_node_container*)parent)->child)); |
| 2136 | assert_string_equal("a2", child->name); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2137 | assert_ptr_equal(mod, child->module); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2138 | assert_non_null((child = child->next)); |
| 2139 | assert_string_equal("a1", child->name); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2140 | assert_ptr_equal(mod, child->module); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2141 | assert_non_null((child = child->next)); |
| 2142 | assert_string_equal("x", child->name); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2143 | assert_ptr_equal(mod, child->module); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 2144 | assert_non_null((child = child->next)); |
| 2145 | assert_string_equal("y", child->name); |
| 2146 | assert_non_null(child->iffeatures); |
| 2147 | assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures)); |
| 2148 | assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures[0].features)); |
| 2149 | assert_string_equal("f", child->iffeatures[0].features[0]->name); |
| 2150 | assert_int_equal(LY_EINVAL, lys_feature_enable(mod->compiled->imports[0].module, "f")); |
| 2151 | logbuf_assert("Module \"grp\" is not implemented so all its features are permanently disabled without a chance to change it."); |
| 2152 | assert_int_equal(0, lysc_iffeature_value(&child->iffeatures[0])); |
| 2153 | |
| 2154 | /* make the imported module implemented and enable the feature */ |
| 2155 | assert_non_null(mod = ly_ctx_get_module(ctx, "grp", NULL)); |
| 2156 | assert_int_equal(LY_SUCCESS, ly_ctx_module_implement(ctx, mod)); |
| 2157 | assert_int_equal(LY_SUCCESS, lys_feature_enable(mod, "f")); |
| 2158 | assert_string_equal("f", child->iffeatures[0].features[0]->name); |
| 2159 | assert_int_equal(1, lysc_iffeature_value(&child->iffeatures[0])); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2160 | |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2161 | 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;}}}"); |
| 2162 | 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 Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2163 | assert_non_null(mod->compiled->data); |
| 2164 | assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype); |
| 2165 | assert_string_equal("b", mod->compiled->data->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2166 | assert_int_equal(2, LY_ARRAY_SIZE(mod->compiled->data->when)); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2167 | |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2168 | logbuf_clean(); |
| 2169 | assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:ii;prefix ii;" |
| 2170 | "grouping grp {leaf l {type string;}leaf k {type string; status obsolete;}}" |
| 2171 | "uses grp {status deprecated;}}", LYS_IN_YANG)); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2172 | assert_int_equal(LYS_LEAF, mod->compiled->data->nodetype); |
| 2173 | assert_string_equal("l", mod->compiled->data->name); |
| 2174 | assert_true(LYS_STATUS_DEPRC & mod->compiled->data->flags); |
| 2175 | assert_int_equal(LYS_LEAF, mod->compiled->data->next->nodetype); |
| 2176 | assert_string_equal("k", mod->compiled->data->next->name); |
| 2177 | assert_true(LYS_STATUS_OBSLT & mod->compiled->data->next->flags); |
| 2178 | logbuf_assert(""); /* no warning about inheriting deprecated flag from uses */ |
| 2179 | |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 2180 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; grouping grp {container g;}" |
| 2181 | "container top {uses grp {augment g {leaf x {type int8;}}}}}", LYS_IN_YANG)); |
| 2182 | assert_non_null(mod->compiled->data); |
| 2183 | assert_non_null(child = lysc_node_children(mod->compiled->data)); |
| 2184 | assert_string_equal("g", child->name); |
| 2185 | assert_non_null(child = lysc_node_children(child)); |
| 2186 | assert_string_equal("x", child->name); |
| 2187 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2188 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2189 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;uses missinggrp;}", LYS_IN_YANG)); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2190 | logbuf_assert("Grouping \"missinggrp\" referenced by a uses statement not found."); |
| 2191 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2192 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;uses grp;" |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2193 | "grouping grp {leaf a{type string;}uses grp1;}" |
| 2194 | "grouping grp1 {leaf b {type string;}uses grp2;}" |
| 2195 | "grouping grp2 {leaf c {type string;}uses grp;}}", LYS_IN_YANG)); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2196 | logbuf_assert("Grouping \"grp\" references itself through a uses statement."); |
| 2197 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2198 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;uses a:missingprefix;}", LYS_IN_YANG)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2199 | logbuf_assert("Invalid prefix used for grouping reference (a:missingprefix)."); |
| 2200 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2201 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;grouping grp{leaf a{type string;}}" |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2202 | "leaf a {type string;}uses grp;}", LYS_IN_YANG)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 2203 | logbuf_assert("Duplicate identifier \"a\" of data definition statement."); |
| 2204 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2205 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;grouping grp {leaf l {type string; status deprecated;}}" |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2206 | "uses grp {status obsolete;}}", LYS_IN_YANG)); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2207 | logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status."); |
| 2208 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2209 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;grouping grp {leaf l {type string;}}" |
| 2210 | "leaf l {type int8;}uses grp;}", LYS_IN_YANG)); |
| 2211 | logbuf_assert("Duplicate identifier \"l\" of data definition statement."); |
| 2212 | assert_null(lys_parse_mem(ctx, "module fg {namespace urn:fg;prefix fg;grouping grp {leaf m {type string;}}" |
| 2213 | "uses grp;leaf m {type int8;}}", LYS_IN_YANG)); |
| 2214 | logbuf_assert("Duplicate identifier \"m\" of data definition statement."); |
| 2215 | |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 2216 | |
| 2217 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg; grouping grp {container g;}" |
| 2218 | "leaf g {type string;}" |
| 2219 | "container top {uses grp {augment /g {leaf x {type int8;}}}}}", LYS_IN_YANG)); |
| 2220 | logbuf_assert("Invalid descendant-schema-nodeid value \"/g\" - absolute-schema-nodeid used."); |
| 2221 | |
| 2222 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2223 | *state = NULL; |
| 2224 | ly_ctx_destroy(ctx, NULL); |
| 2225 | } |
| 2226 | |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2227 | static void |
| 2228 | test_refine(void **state) |
| 2229 | { |
| 2230 | *state = test_refine; |
| 2231 | |
| 2232 | struct ly_ctx *ctx; |
| 2233 | struct lys_module *mod; |
| 2234 | struct lysc_node *parent, *child; |
| 2235 | |
| 2236 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2237 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2238 | 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!;}" |
| 2239 | "grouping grp {container c {leaf l {type mytype; default goodbye;}" |
| 2240 | "leaf-list ll {type mytype; default goodbye; max-elements 6;}" |
| 2241 | "choice ch {default a; leaf a {type int8;}leaf b{type uint8;}}" |
| 2242 | "leaf x {type mytype; mandatory true; must 1;}" |
| 2243 | "anydata a {mandatory false; if-feature f; description original; reference original;}" |
| 2244 | "container c {config false; leaf l {type string;}}}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2245 | |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 2246 | 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 Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2247 | "uses g:grp {refine c/l {default hello; config false;}" |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 2248 | "refine c/ll {default hello;default world; min-elements 2; max-elements 5;}" |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 2249 | "refine c/ch {default b;config true; if-feature fa;}" |
Radek Krejci | f340454 | 2019-01-08 13:28:42 +0100 | [diff] [blame] | 2250 | "refine c/x {mandatory false; must ../ll;description refined; reference refined;}" |
| 2251 | "refine c/a {mandatory true; must 1; if-feature fa;description refined; reference refined;}" |
Radek Krejci | 9a54f1f | 2019-01-07 13:47:55 +0100 | [diff] [blame] | 2252 | "refine c/c {config true;presence indispensable;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2253 | assert_non_null((parent = mod->compiled->data)); |
| 2254 | assert_int_equal(LYS_CONTAINER, parent->nodetype); |
| 2255 | assert_string_equal("c", parent->name); |
| 2256 | assert_non_null((child = ((struct lysc_node_container*)parent)->child)); |
| 2257 | assert_int_equal(LYS_LEAF, child->nodetype); |
| 2258 | assert_string_equal("l", child->name); |
| 2259 | assert_string_equal("hello", ((struct lysc_node_leaf*)child)->dflt); |
| 2260 | assert_int_equal(LYS_CONFIG_R, child->flags & LYS_CONFIG_MASK); |
| 2261 | assert_non_null(child = child->next); |
| 2262 | assert_int_equal(LYS_LEAFLIST, child->nodetype); |
| 2263 | assert_string_equal("ll", child->name); |
| 2264 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)child)->dflts)); |
| 2265 | assert_string_equal("hello", ((struct lysc_node_leaflist*)child)->dflts[0]); |
| 2266 | assert_string_equal("world", ((struct lysc_node_leaflist*)child)->dflts[1]); |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 2267 | assert_int_equal(2, ((struct lysc_node_leaflist*)child)->min); |
| 2268 | assert_int_equal(5, ((struct lysc_node_leaflist*)child)->max); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2269 | assert_non_null(child = child->next); |
| 2270 | assert_int_equal(LYS_CHOICE, child->nodetype); |
| 2271 | assert_string_equal("ch", child->name); |
| 2272 | assert_string_equal("b", ((struct lysc_node_choice*)child)->dflt->name); |
| 2273 | assert_true(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->dflt->flags); |
| 2274 | assert_false(LYS_SET_DFLT & ((struct lysc_node_choice*)child)->cases[0].flags); |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 2275 | assert_non_null(child->iffeatures); |
| 2276 | assert_int_equal(1, LY_ARRAY_SIZE(child->iffeatures)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2277 | assert_non_null(child = child->next); |
| 2278 | assert_int_equal(LYS_LEAF, child->nodetype); |
| 2279 | assert_string_equal("x", child->name); |
| 2280 | assert_false(LYS_MAND_TRUE & child->flags); |
| 2281 | assert_string_equal("cheers!", ((struct lysc_node_leaf*)child)->dflt); |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 2282 | assert_non_null(((struct lysc_node_leaf*)child)->musts); |
| 2283 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaf*)child)->musts)); |
Radek Krejci | f340454 | 2019-01-08 13:28:42 +0100 | [diff] [blame] | 2284 | assert_string_equal("refined", child->dsc); |
| 2285 | assert_string_equal("refined", child->ref); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2286 | assert_non_null(child = child->next); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2287 | assert_int_equal(LYS_ANYDATA, child->nodetype); |
| 2288 | assert_string_equal("a", child->name); |
| 2289 | assert_true(LYS_MAND_TRUE & child->flags); |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 2290 | assert_non_null(((struct lysc_node_anydata*)child)->musts); |
| 2291 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_anydata*)child)->musts)); |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 2292 | assert_non_null(child->iffeatures); |
| 2293 | assert_int_equal(2, LY_ARRAY_SIZE(child->iffeatures)); |
Radek Krejci | f340454 | 2019-01-08 13:28:42 +0100 | [diff] [blame] | 2294 | assert_string_equal("refined", child->dsc); |
| 2295 | assert_string_equal("refined", child->ref); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2296 | assert_non_null(child = child->next); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2297 | assert_int_equal(LYS_CONTAINER, child->nodetype); |
| 2298 | assert_string_equal("c", child->name); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2299 | assert_true(LYS_PRESENCE & child->flags); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2300 | assert_true(LYS_CONFIG_W & child->flags); |
| 2301 | assert_true(LYS_CONFIG_W & ((struct lysc_node_container*)child)->child->flags); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2302 | |
| 2303 | assert_non_null(mod = lys_parse_mem(ctx, "module b {yang-version 1.1;namespace urn:b;prefix b;import grp {prefix g;}" |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2304 | "uses g:grp {status deprecated; refine c/x {default hello; mandatory false;}}}", LYS_IN_YANG)); |
Radek Krejci | 7f6a381 | 2019-01-07 13:48:57 +0100 | [diff] [blame] | 2305 | assert_non_null((child = ((struct lysc_node_container*)mod->compiled->data)->child->prev->prev->prev)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2306 | assert_int_equal(LYS_LEAF, child->nodetype); |
| 2307 | assert_string_equal("x", child->name); |
| 2308 | assert_false(LYS_MAND_TRUE & child->flags); |
| 2309 | assert_string_equal("hello", ((struct lysc_node_leaf*)child)->dflt); |
| 2310 | |
| 2311 | /* invalid */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2312 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2313 | "uses g:grp {refine c {default hello;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2314 | logbuf_assert("Invalid refine of default in \"c\" - container cannot hold default value(s)."); |
| 2315 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2316 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2317 | "uses g:grp {refine c/l {default hello; default world;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2318 | logbuf_assert("Invalid refine of default in \"c/l\" - leaf cannot hold 2 default values."); |
| 2319 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2320 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2321 | "uses g:grp {refine c/ll {default hello; default world;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2322 | logbuf_assert("Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules."); |
| 2323 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2324 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2325 | "uses g:grp {refine c/ll {mandatory true;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2326 | logbuf_assert("Invalid refine of mandatory in \"c/ll\" - leaf-list cannot hold mandatory statement."); |
| 2327 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2328 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2329 | "uses g:grp {refine c/l {mandatory true;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2330 | logbuf_assert("Invalid refine of mandatory in \"c/l\" - leaf already has \"default\" statement."); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2331 | assert_null(lys_parse_mem(ctx, "module ef {namespace urn:ef;prefix ef;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2332 | "uses g:grp {refine c/ch {mandatory true;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2333 | logbuf_assert("Invalid refine of mandatory in \"c/ch\" - choice already has \"default\" statement."); |
| 2334 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2335 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2336 | "uses g:grp {refine c/ch/a/a {mandatory true;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2337 | logbuf_assert("Invalid refine of mandatory in \"c/ch/a/a\" - leaf under the default case."); |
| 2338 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2339 | assert_null(lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;import grp {prefix g;}" |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2340 | "uses g:grp {refine c/x {default hello;}}}", LYS_IN_YANG)); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2341 | logbuf_assert("Invalid refine of default in \"c/x\" - the node is mandatory."); |
| 2342 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2343 | assert_null(lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;import grp {prefix g;}" |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2344 | "uses g:grp {refine c/c/l {config true;}}}", LYS_IN_YANG)); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2345 | logbuf_assert("Invalid refine of config in \"c/c/l\" - configuration node cannot be child of any state data node."); |
| 2346 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2347 | assert_null(lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;grouping grp {leaf l {type string; status deprecated;}}" |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2348 | "uses grp {status obsolete;}}", LYS_IN_YANG)); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 2349 | logbuf_assert("A \"deprecated\" status is in conflict with the parent's \"obsolete\" status."); |
| 2350 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2351 | assert_null(lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;import grp {prefix g;}" |
Radek Krejci | 9a54f1f | 2019-01-07 13:47:55 +0100 | [diff] [blame] | 2352 | "uses g:grp {refine c/x {presence nonsence;}}}", LYS_IN_YANG)); |
Radek Krejci | 9a54f1f | 2019-01-07 13:47:55 +0100 | [diff] [blame] | 2353 | logbuf_assert("Invalid refine of presence statement in \"c/x\" - leaf cannot hold the presence statement."); |
| 2354 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2355 | assert_null(lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;import grp {prefix g;}" |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 2356 | "uses g:grp {refine c/ch {must 1;}}}", LYS_IN_YANG)); |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 2357 | logbuf_assert("Invalid refine of must statement in \"c/ch\" - choice cannot hold any must statement."); |
| 2358 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2359 | assert_null(lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;import grp {prefix g;}" |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 2360 | "uses g:grp {refine c/x {min-elements 1;}}}", LYS_IN_YANG)); |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 2361 | logbuf_assert("Invalid refine of min-elements statement in \"c/x\" - leaf cannot hold this statement."); |
| 2362 | |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 2363 | assert_null(lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;import grp {prefix g;}" |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 2364 | "uses g:grp {refine c/ll {min-elements 10;}}}", LYS_IN_YANG)); |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 2365 | logbuf_assert("Invalid refine of min-elements statement in \"c/ll\" - \"min-elements\" is bigger than \"max-elements\"."); |
| 2366 | |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2367 | *state = NULL; |
| 2368 | ly_ctx_destroy(ctx, NULL); |
| 2369 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2370 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2371 | static void |
| 2372 | test_augment(void **state) |
| 2373 | { |
| 2374 | *state = test_augment; |
| 2375 | |
| 2376 | struct ly_ctx *ctx; |
| 2377 | struct lys_module *mod; |
| 2378 | const struct lysc_node *node; |
| 2379 | const struct lysc_node_choice *ch; |
| 2380 | const struct lysc_node_case *c; |
| 2381 | |
| 2382 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2383 | |
| 2384 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module a {namespace urn:a;prefix a; typedef atype {type string;}" |
| 2385 | "container top {leaf a {type string;}}}"); |
| 2386 | assert_non_null(lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;import a {prefix a;}" |
| 2387 | "leaf b {type a:atype;}}", LYS_IN_YANG)); |
| 2388 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module c {namespace urn:c;prefix c; import a {prefix a;}" |
| 2389 | "augment /a:top/ { container c {leaf c {type a:atype;}}}}"); |
| 2390 | assert_non_null(lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;import a {prefix a;} import c {prefix c;}" |
| 2391 | "augment /a:top/c:c/ { leaf d {type a:atype;} leaf c {type string;}}}", LYS_IN_YANG)); |
| 2392 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "a"))); |
| 2393 | assert_non_null(ly_ctx_get_module_implemented(ctx, "b")); |
| 2394 | assert_non_null(ly_ctx_get_module_implemented(ctx, "c")); |
| 2395 | assert_non_null(ly_ctx_get_module_implemented(ctx, "d")); |
| 2396 | assert_non_null(node = mod->compiled->data); |
| 2397 | assert_string_equal(node->name, "top"); |
| 2398 | assert_non_null(node = lysc_node_children(node)); |
| 2399 | assert_string_equal(node->name, "a"); |
| 2400 | assert_non_null(node = node->next); |
| 2401 | assert_string_equal(node->name, "c"); |
| 2402 | assert_non_null(node = lysc_node_children(node)); |
| 2403 | assert_string_equal(node->name, "c"); |
| 2404 | assert_non_null(node = node->next); |
| 2405 | assert_string_equal(node->name, "d"); |
| 2406 | assert_non_null(node = node->next); |
| 2407 | assert_string_equal(node->name, "c"); |
| 2408 | |
| 2409 | assert_non_null((mod = lys_parse_mem(ctx, "module e {namespace urn:e;prefix e;choice ch {leaf a {type string;}}" |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2410 | "augment /ch/c {when 1; leaf lc2 {type uint16;}}" |
| 2411 | "augment /ch { when 1; leaf b {type int8;} case c {leaf lc1 {type uint8;}}}}", LYS_IN_YANG))); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2412 | assert_non_null((ch = (const struct lysc_node_choice*)mod->compiled->data)); |
| 2413 | assert_null(mod->compiled->data->next); |
| 2414 | assert_string_equal("ch", ch->name); |
| 2415 | assert_non_null(c = ch->cases); |
| 2416 | assert_string_equal("a", c->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2417 | assert_null(c->when); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2418 | assert_string_equal("a", c->child->name); |
| 2419 | assert_non_null(c = (const struct lysc_node_case*)c->next); |
| 2420 | assert_string_equal("b", c->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2421 | assert_non_null(c->when); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2422 | assert_string_equal("b", c->child->name); |
| 2423 | assert_non_null(c = (const struct lysc_node_case*)c->next); |
| 2424 | assert_string_equal("c", c->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2425 | assert_non_null(c->when); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2426 | assert_string_equal("lc1", ((const struct lysc_node_case*)c)->child->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2427 | assert_null(((const struct lysc_node_case*)c)->child->when); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2428 | assert_string_equal("lc2", ((const struct lysc_node_case*)c)->child->next->name); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 2429 | assert_non_null(((const struct lysc_node_case*)c)->child->next->when); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2430 | assert_ptr_equal(ch->cases->child->prev, ((const struct lysc_node_case*)c)->child->next); |
| 2431 | assert_null(c->next); |
| 2432 | |
| 2433 | assert_non_null((mod = lys_parse_mem(ctx, "module f {namespace urn:f;prefix f;grouping g {leaf a {type string;}}" |
| 2434 | "container c;" |
| 2435 | "augment /c {uses g;}}", LYS_IN_YANG))); |
| 2436 | assert_non_null(node = lysc_node_children(mod->compiled->data)); |
| 2437 | assert_string_equal(node->name, "a"); |
| 2438 | |
Radek Krejci | 339f529 | 2019-02-11 16:42:34 +0100 | [diff] [blame] | 2439 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule gsub {belongs-to g {prefix g;}" |
| 2440 | "augment /c {container sub;}}"); |
| 2441 | assert_non_null(mod = lys_parse_mem(ctx, "module g {namespace urn:g;prefix g;include gsub; container c;" |
| 2442 | "augment /c/sub {leaf main {type string;}}}", LYS_IN_YANG)); |
| 2443 | assert_non_null(mod->compiled->data); |
| 2444 | assert_string_equal("c", mod->compiled->data->name); |
| 2445 | assert_non_null(node = ((struct lysc_node_container*)mod->compiled->data)->child); |
| 2446 | assert_string_equal("sub", node->name); |
| 2447 | assert_non_null(node = ((struct lysc_node_container*)node)->child); |
| 2448 | assert_string_equal("main", node->name); |
| 2449 | |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 2450 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module himp {namespace urn:hi;prefix hi;container top;}"); |
| 2451 | assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;import himp {prefix hi;}container top;" |
| 2452 | "augment /hi:top {container p {presence XXX; leaf x {mandatory true;type string;}}}" |
| 2453 | "augment /hi:top {list ll {key x;leaf x {type string;}leaf y {mandatory true; type string;}}}" |
| 2454 | "augment /hi:top {leaf l {type string; mandatory true; config false;}}" |
| 2455 | "augment /top {leaf l {type string; mandatory true;}}}", LYS_IN_YANG)); |
| 2456 | assert_non_null(node = mod->compiled->data); |
| 2457 | assert_non_null(node = ((struct lysc_node_container*)node)->child); |
| 2458 | assert_string_equal("l", node->name); |
| 2459 | assert_true(node->flags & LYS_MAND_TRUE); |
| 2460 | assert_non_null(mod = ly_ctx_get_module_implemented(ctx, "himp")); |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 2461 | assert_non_null(node = mod->compiled->data); |
| 2462 | assert_non_null(node = ((struct lysc_node_container*)node)->child); |
| 2463 | assert_string_equal("p", node->name); |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 2464 | assert_non_null(node = node->next); |
| 2465 | assert_string_equal("ll", node->name); |
| 2466 | assert_non_null(node = node->next); |
| 2467 | assert_string_equal("l", node->name); |
| 2468 | assert_true(node->flags & LYS_CONFIG_R); |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 2469 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2470 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; container c {leaf a {type string;}}" |
| 2471 | "augment /x {leaf a {type int8;}}}", LYS_IN_YANG)); |
| 2472 | logbuf_assert("Invalid absolute-schema-nodeid value \"/x\" - target node not found."); |
| 2473 | |
| 2474 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; container c {leaf a {type string;}}" |
| 2475 | "augment /c {leaf a {type int8;}}}", LYS_IN_YANG)); |
| 2476 | logbuf_assert("Duplicate identifier \"a\" of data definition statement."); |
| 2477 | |
| 2478 | |
Radek Krejci | 339f529 | 2019-02-11 16:42:34 +0100 | [diff] [blame] | 2479 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; container c {leaf a {type string;}}" |
| 2480 | "augment /c/a {leaf a {type int8;}}}", LYS_IN_YANG)); |
| 2481 | logbuf_assert("Augment's absolute-schema-nodeid \"/c/a\" refers to a leaf node which is not an allowed augment's target."); |
| 2482 | |
| 2483 | assert_null(lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd; container c {leaf a {type string;}}" |
| 2484 | "augment /c {case b {leaf d {type int8;}}}}", LYS_IN_YANG)); |
| 2485 | logbuf_assert("Invalid augment (/c) of container node which is not allowed to contain case node \"b\"."); |
| 2486 | |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 2487 | assert_null(lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee; import himp {prefix hi;}" |
| 2488 | "augment /hi:top {container c {leaf d {mandatory true; type int8;}}}}", LYS_IN_YANG)); |
| 2489 | logbuf_assert("Invalid augment (/hi:top) adding mandatory node \"c\" without making it conditional via when statement."); |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 2490 | |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 2491 | assert_null(lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff; container top;" |
| 2492 | "augment ../top {leaf x {type int8;}}}", LYS_IN_YANG)); |
| 2493 | logbuf_assert("Invalid absolute-schema-nodeid value \"../top\" - missing starting \"/\"."); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2494 | |
| 2495 | *state = NULL; |
| 2496 | ly_ctx_destroy(ctx, NULL); |
| 2497 | } |
| 2498 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2499 | static void |
| 2500 | test_deviation(void **state) |
| 2501 | { |
| 2502 | *state = test_deviation; |
| 2503 | |
| 2504 | struct ly_ctx *ctx; |
| 2505 | struct lys_module *mod; |
| 2506 | const struct lysc_node *node; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 2507 | const struct lysc_node_list *list; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2508 | |
| 2509 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 2510 | |
| 2511 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module a {namespace urn:a;prefix a;" |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2512 | "container top {leaf a {type string;} leaf b {type string;} leaf c {type string;}}" |
| 2513 | "choice ch {default c; case b {leaf b{type string;}} case a {leaf a{type string;} leaf x {type string;}}" |
| 2514 | " case c {leaf c{type string;}}}}"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2515 | assert_non_null(lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;import a {prefix a;}" |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2516 | "deviation /a:top/a:b {deviate not-supported;}" |
| 2517 | "deviation /a:ch/a:a/a:x {deviate not-supported;}" |
| 2518 | "deviation /a:ch/a:c/a:c {deviate not-supported;}" |
| 2519 | "deviation /a:ch/a:b {deviate not-supported;}" |
| 2520 | "deviation /a:ch/a:a/a:a {deviate not-supported;}}", LYS_IN_YANG)); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2521 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "a"))); |
| 2522 | assert_non_null(node = mod->compiled->data); |
| 2523 | assert_string_equal(node->name, "top"); |
| 2524 | assert_non_null(node = lysc_node_children(node)); |
| 2525 | assert_string_equal(node->name, "a"); |
| 2526 | assert_non_null(node = node->next); |
| 2527 | assert_string_equal(node->name, "c"); |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2528 | assert_null(node = node->next); |
| 2529 | assert_non_null(node = mod->compiled->data->next); |
| 2530 | assert_string_equal("ch", node->name); |
| 2531 | assert_null(((struct lysc_node_choice*)node)->dflt); |
| 2532 | assert_null(((struct lysc_node_choice*)node)->cases); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2533 | |
| 2534 | assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c; typedef mytype {type string; units kilometers;}" |
| 2535 | "leaf c1 {type mytype;} leaf c2 {type mytype; units meters;} leaf c3 {type mytype; units meters;}" |
| 2536 | "deviation /c1 {deviate add {units meters;}}" |
| 2537 | "deviation /c2 {deviate delete {units meters;}}" |
| 2538 | "deviation /c3 {deviate replace {units centimeters;}}}", LYS_IN_YANG)); |
| 2539 | assert_non_null(node = mod->compiled->data); |
| 2540 | assert_string_equal("c1", node->name); |
| 2541 | assert_string_equal("meters", ((struct lysc_node_leaf*)node)->units); |
| 2542 | assert_non_null(node = node->next); |
| 2543 | assert_string_equal("c2", node->name); |
| 2544 | assert_null(((struct lysc_node_leaf*)node)->units); |
| 2545 | assert_non_null(node = node->next); |
| 2546 | assert_string_equal("c3", node->name); |
| 2547 | assert_string_equal("centimeters", ((struct lysc_node_leaf*)node)->units); |
| 2548 | |
| 2549 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d; leaf c1 {type string; must 1;}" |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2550 | "container c2 {presence yes; must 1; must 2;} leaf c3 {type string; must 1; must 3;}" |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2551 | "deviation /c1 {deviate add {must 3;}}" |
| 2552 | "deviation /c2 {deviate delete {must 2;}}" |
| 2553 | "deviation /c3 {deviate delete {must 3; must 1;}}}", LYS_IN_YANG)); |
| 2554 | assert_non_null(node = mod->compiled->data); |
| 2555 | assert_string_equal("c1", node->name); |
| 2556 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaf*)node)->musts)); |
| 2557 | assert_string_equal("3", ((struct lysc_node_leaf*)node)->musts[1].cond->expr); |
| 2558 | assert_non_null(node = node->next); |
| 2559 | assert_string_equal("c2", node->name); |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2560 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_container*)node)->musts)); |
| 2561 | assert_string_equal("1", ((struct lysc_node_container*)node)->musts[0].cond->expr); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2562 | assert_non_null(node = node->next); |
| 2563 | assert_string_equal("c3", node->name); |
| 2564 | assert_null(((struct lysc_node_leaf*)node)->musts); |
| 2565 | |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2566 | 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 Krejci | 468a94f | 2019-02-15 14:52:36 +0100 | [diff] [blame] | 2567 | "choice a {default a;leaf a {type string;} leaf b {type string;} leaf c {type string; mandatory true;}}" |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2568 | "choice b {default a;leaf a {type string;} leaf b {type string;}}" |
| 2569 | "leaf c {default hello; type string;}" |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2570 | "leaf-list d {default hello; default world; type string;}" |
| 2571 | "leaf c2 {type mytype;} leaf-list d2 {type mytype;}}"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2572 | assert_non_null(lys_parse_mem(ctx, "module f {yang-version 1.1; namespace urn:f;prefix f;import e {prefix x;}" |
| 2573 | "deviation /x:a {deviate delete {default a;}}" |
| 2574 | "deviation /x:b {deviate delete {default x:a;}}" |
| 2575 | "deviation /x:c {deviate delete {default hello;}}" |
| 2576 | "deviation /x:d {deviate delete {default world;}}}", LYS_IN_YANG)); |
| 2577 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e"))); |
| 2578 | assert_non_null(node = mod->compiled->data); |
| 2579 | assert_null(((struct lysc_node_choice*)node)->dflt); |
| 2580 | assert_non_null(node = node->next); |
| 2581 | assert_null(((struct lysc_node_choice*)node)->dflt); |
| 2582 | assert_non_null(node = node->next); |
| 2583 | assert_null(((struct lysc_node_leaf*)node)->dflt); |
| 2584 | assert_non_null(node = node->next); |
| 2585 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)node)->dflts)); |
| 2586 | assert_string_equal("hello", ((struct lysc_node_leaflist*)node)->dflts[0]); |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2587 | assert_non_null(node = node->next); |
| 2588 | assert_string_equal("nothing", ((struct lysc_node_leaf*)node)->dflt); |
| 2589 | assert_non_null(node = node->next); |
| 2590 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)node)->dflts)); |
| 2591 | assert_string_equal("nothing", ((struct lysc_node_leaflist*)node)->dflts[0]); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2592 | |
| 2593 | assert_non_null(lys_parse_mem(ctx, "module g {yang-version 1.1; namespace urn:g;prefix g;import e {prefix x;}" |
| 2594 | "deviation /x:b {deviate add {default x:b;}}" |
| 2595 | "deviation /x:c {deviate add {default bye;}}" |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2596 | "deviation /x:d {deviate add {default all; default people;}}" |
| 2597 | "deviation /x:c2 {deviate add {default hi;}}" |
| 2598 | "deviation /x:d2 {deviate add {default hi; default all;}}}", LYS_IN_YANG)); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2599 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e"))); |
| 2600 | assert_non_null(node = mod->compiled->data); |
| 2601 | assert_null(((struct lysc_node_choice*)node)->dflt); |
| 2602 | assert_non_null(node = node->next); |
| 2603 | assert_non_null(((struct lysc_node_choice*)node)->dflt); |
| 2604 | assert_string_equal("b", ((struct lysc_node_choice*)node)->dflt->name); |
| 2605 | assert_non_null(node = node->next); |
| 2606 | assert_non_null(((struct lysc_node_leaf*)node)->dflt); |
| 2607 | assert_string_equal("bye", ((struct lysc_node_leaf*)node)->dflt); |
| 2608 | assert_non_null(node = node->next); |
| 2609 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)node)->dflts)); |
| 2610 | assert_string_equal("hello", ((struct lysc_node_leaflist*)node)->dflts[0]); |
| 2611 | assert_string_equal("all", ((struct lysc_node_leaflist*)node)->dflts[1]); |
| 2612 | assert_string_equal("people", ((struct lysc_node_leaflist*)node)->dflts[2]); |
Radek Krejci | b4532d1 | 2019-02-15 16:13:29 +0100 | [diff] [blame] | 2613 | assert_non_null(node = node->next); |
| 2614 | assert_non_null(((struct lysc_node_leaf*)node)->dflt); |
| 2615 | assert_string_equal("hi", ((struct lysc_node_leaf*)node)->dflt); |
| 2616 | assert_non_null(node = node->next); |
| 2617 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_node_leaflist*)node)->dflts)); |
| 2618 | assert_string_equal("hi", ((struct lysc_node_leaflist*)node)->dflts[0]); |
| 2619 | assert_string_equal("all", ((struct lysc_node_leaflist*)node)->dflts[1]); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2620 | |
| 2621 | assert_non_null(lys_parse_mem(ctx, "module h {yang-version 1.1; namespace urn:h;prefix h;import e {prefix x;}" |
| 2622 | "deviation /x:b {deviate replace {default x:a;}}" |
| 2623 | "deviation /x:c {deviate replace {default hello;}}}", LYS_IN_YANG)); |
| 2624 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "e"))); |
| 2625 | assert_non_null(node = mod->compiled->data); |
| 2626 | assert_null(((struct lysc_node_choice*)node)->dflt); |
| 2627 | assert_non_null(node = node->next); |
| 2628 | assert_non_null(((struct lysc_node_choice*)node)->dflt); |
| 2629 | assert_string_equal("a", ((struct lysc_node_choice*)node)->dflt->name); |
| 2630 | assert_non_null(node = node->next); |
| 2631 | assert_non_null(((struct lysc_node_leaf*)node)->dflt); |
| 2632 | assert_string_equal("hello", ((struct lysc_node_leaf*)node)->dflt); |
| 2633 | |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 2634 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "module i {namespace urn:i;prefix i;" |
| 2635 | "list l1 {key a; leaf a {type string;} leaf b {type string;} leaf c {type string;}}" |
| 2636 | "list l2 {key a; unique \"b c\"; unique \"d\"; leaf a {type string;} leaf b {type string;}" |
| 2637 | " leaf c {type string;} leaf d {type string;}}}"); |
| 2638 | assert_non_null(lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;import i {prefix i;}" |
| 2639 | "augment /i:l1 {leaf j_c {type string;}}" |
| 2640 | "deviation /i:l1 {deviate add {unique \"i:b j_c\"; }}" |
| 2641 | "deviation /i:l1 {deviate add {unique \"i:c\";}}" |
| 2642 | "deviation /i:l2 {deviate delete {unique \"d\"; unique \"b c\";}}}", LYS_IN_YANG)); |
| 2643 | assert_non_null((mod = ly_ctx_get_module_implemented(ctx, "i"))); |
| 2644 | assert_non_null(list = (struct lysc_node_list*)mod->compiled->data); |
| 2645 | assert_string_equal("l1", list->name); |
| 2646 | assert_int_equal(2, LY_ARRAY_SIZE(list->uniques)); |
| 2647 | assert_int_equal(2, LY_ARRAY_SIZE(list->uniques[0])); |
| 2648 | assert_string_equal("b", list->uniques[0][0]->name); |
| 2649 | assert_string_equal("j_c", list->uniques[0][1]->name); |
| 2650 | assert_int_equal(1, LY_ARRAY_SIZE(list->uniques[1])); |
| 2651 | assert_string_equal("c", list->uniques[1][0]->name); |
| 2652 | assert_non_null(list = (struct lysc_node_list*)list->next); |
| 2653 | assert_string_equal("l2", list->name); |
| 2654 | assert_null(list->uniques); |
| 2655 | |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 2656 | assert_non_null(mod = lys_parse_mem(ctx, "module k {namespace urn:k;prefix k; leaf a {type string;}" |
| 2657 | "container top {leaf x {type string;} leaf y {type string; config false;}}" |
| 2658 | "deviation /a {deviate add {config false; }}" |
| 2659 | "deviation /top {deviate add {config false;}}}", LYS_IN_YANG)); |
| 2660 | assert_non_null(node = mod->compiled->data); |
| 2661 | assert_string_equal("a", node->name); |
| 2662 | assert_true(node->flags & LYS_CONFIG_R); |
| 2663 | assert_non_null(node = node->next); |
| 2664 | assert_string_equal("top", node->name); |
| 2665 | assert_true(node->flags & LYS_CONFIG_R); |
| 2666 | assert_non_null(node = lysc_node_children(node)); |
| 2667 | assert_string_equal("x", node->name); |
| 2668 | assert_true(node->flags & LYS_CONFIG_R); |
| 2669 | assert_non_null(node = node->next); |
| 2670 | assert_string_equal("y", node->name); |
| 2671 | assert_true(node->flags & LYS_CONFIG_R); |
| 2672 | |
| 2673 | assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l; leaf a {config false; type string;}" |
| 2674 | "container top {config false; leaf x {type string;}}" |
| 2675 | "deviation /a {deviate replace {config true;}}" |
| 2676 | "deviation /top {deviate replace {config true;}}}", LYS_IN_YANG)); |
| 2677 | assert_non_null(node = mod->compiled->data); |
| 2678 | assert_string_equal("a", node->name); |
| 2679 | assert_true(node->flags & LYS_CONFIG_W); |
| 2680 | assert_non_null(node = node->next); |
| 2681 | assert_string_equal("top", node->name); |
| 2682 | assert_true(node->flags & LYS_CONFIG_W); |
| 2683 | assert_non_null(node = lysc_node_children(node)); |
| 2684 | assert_string_equal("x", node->name); |
| 2685 | assert_true(node->flags & LYS_CONFIG_W); |
| 2686 | |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2687 | assert_null(lys_parse_mem(ctx, "module aa1 {namespace urn:aa1;prefix aa1;import a {prefix a;}" |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2688 | "deviation /a:top/a:z {deviate not-supported;}}", LYS_IN_YANG)); |
| 2689 | logbuf_assert("Invalid absolute-schema-nodeid value \"/a:top/a:z\" - target node not found."); |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2690 | assert_non_null(lys_parse_mem(ctx, "module aa2 {namespace urn:aa2;prefix aa2;import a {prefix a;}" |
| 2691 | "deviation /a:top/a:a {deviate not-supported;}" |
| 2692 | "deviation /a:top/a:a {deviate add {default error;}}}", LYS_IN_YANG)); |
| 2693 | /* warning */ |
| 2694 | logbuf_assert("Useless multiple (2) deviates on node \"/a:top/a:a\" since the node is not-supported."); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2695 | |
| 2696 | assert_null(lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;import a {prefix a;}" |
| 2697 | "deviation a:top/a:a {deviate not-supported;}}", LYS_IN_YANG)); |
| 2698 | logbuf_assert("Invalid absolute-schema-nodeid value \"a:top/a:a\" - missing starting \"/\"."); |
| 2699 | |
| 2700 | assert_null(lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc; container c;" |
| 2701 | "deviation /c {deviate add {units meters;}}}", LYS_IN_YANG)); |
| 2702 | logbuf_assert("Invalid deviation (/c) of container node - it is not possible to add \"units\" property."); |
| 2703 | assert_null(lys_parse_mem(ctx, "module cd {namespace urn:cd;prefix cd; leaf c {type string; units centimeters;}" |
| 2704 | "deviation /c {deviate add {units meters;}}}", LYS_IN_YANG)); |
| 2705 | logbuf_assert("Invalid deviation (/c) adding \"units\" property which already exists (with value \"centimeters\")."); |
| 2706 | |
| 2707 | assert_null(lys_parse_mem(ctx, "module dd1 {namespace urn:dd1;prefix dd1; container c;" |
| 2708 | "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG)); |
| 2709 | logbuf_assert("Invalid deviation (/c) of container node - it is not possible to delete \"units\" property."); |
| 2710 | assert_null(lys_parse_mem(ctx, "module dd2 {namespace urn:dd2;prefix dd2; leaf c {type string;}" |
| 2711 | "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG)); |
| 2712 | logbuf_assert("Invalid deviation (/c) deleting \"units\" property \"meters\" which is not present."); |
| 2713 | assert_null(lys_parse_mem(ctx, "module dd3 {namespace urn:dd3;prefix dd3; leaf c {type string; units centimeters;}" |
| 2714 | "deviation /c {deviate delete {units meters;}}}", LYS_IN_YANG)); |
| 2715 | logbuf_assert("Invalid deviation (/c) deleting \"units\" property \"meters\" which does not match the target's property value \"centimeters\"."); |
| 2716 | |
| 2717 | assert_null(lys_parse_mem(ctx, "module ee1 {namespace urn:ee1;prefix ee1; container c;" |
| 2718 | "deviation /c {deviate replace {units meters;}}}", LYS_IN_YANG)); |
| 2719 | logbuf_assert("Invalid deviation (/c) of container node - it is not possible to replace \"units\" property."); |
| 2720 | assert_null(lys_parse_mem(ctx, "module ee2 {namespace urn:ee2;prefix ee2; leaf c {type string;}" |
| 2721 | "deviation /c {deviate replace {units meters;}}}", LYS_IN_YANG)); |
| 2722 | logbuf_assert("Invalid deviation (/c) replacing \"units\" property \"meters\" which is not present."); |
| 2723 | |
| 2724 | /* the default is already deleted in /e:a byt module f */ |
| 2725 | assert_null(lys_parse_mem(ctx, "module ff1 {namespace urn:ff1;prefix ff1; import e {prefix e;}" |
| 2726 | "deviation /e:a {deviate delete {default x:a;}}}", LYS_IN_YANG)); |
| 2727 | logbuf_assert("Invalid deviation (/e:a) deleting \"default\" property \"x:a\" which is not present."); |
| 2728 | assert_null(lys_parse_mem(ctx, "module ff2 {namespace urn:ff2;prefix ff2; import e {prefix e;}" |
| 2729 | "deviation /e:b {deviate delete {default x:a;}}}", LYS_IN_YANG)); |
| 2730 | logbuf_assert("Invalid deviation (/e:b) deleting \"default\" property \"x:a\" of choice. " |
| 2731 | "The prefix does not match any imported module of the deviation module."); |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2732 | assert_null(lys_parse_mem(ctx, "module ff3 {namespace urn:ff3;prefix ff3; import e {prefix e;}" |
| 2733 | "deviation /e:b {deviate delete {default e:b;}}}", LYS_IN_YANG)); |
| 2734 | logbuf_assert("Invalid deviation (/e:b) deleting \"default\" property \"e:b\" of choice does not match the default case name \"a\"."); |
| 2735 | assert_null(lys_parse_mem(ctx, "module ff4 {namespace urn:ff4;prefix ff4; import e {prefix e;}" |
| 2736 | "deviation /e:b {deviate delete {default ff4:a;}}}", LYS_IN_YANG)); |
| 2737 | logbuf_assert("Invalid deviation (/e:b) deleting \"default\" property \"ff4:a\" of choice. The prefix does not match the default case's module."); |
| 2738 | assert_null(lys_parse_mem(ctx, "module ff5 {namespace urn:ff5;prefix ff5; anyxml a;" |
| 2739 | "deviation /a {deviate delete {default x;}}}", LYS_IN_YANG)); |
| 2740 | logbuf_assert("Invalid deviation (/a) of anyxml node - it is not possible to delete \"default\" property."); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2741 | |
| 2742 | assert_null(lys_parse_mem(ctx, "module gg1 {namespace urn:gg1;prefix gg1; import e {prefix e;}" |
| 2743 | "deviation /e:b {deviate add {default e:a;}}}", LYS_IN_YANG)); |
| 2744 | logbuf_assert("Invalid deviation (/e:b) adding \"default\" property which already exists (with value \"a\")."); |
| 2745 | assert_null(lys_parse_mem(ctx, "module gg2 {namespace urn:gg2;prefix gg2; import e {prefix e;}" |
Radek Krejci | 468a94f | 2019-02-15 14:52:36 +0100 | [diff] [blame] | 2746 | "deviation /e:a {deviate add {default x:a;}}}", LYS_IN_YANG)); |
| 2747 | logbuf_assert("Invalid deviation (/e:a) adding \"default\" property \"x:a\" of choice. " |
| 2748 | "The prefix does not match any imported module of the deviation module."); |
| 2749 | assert_null(lys_parse_mem(ctx, "module gg3 {namespace urn:gg3;prefix gg3; import e {prefix e;}" |
| 2750 | "deviation /e:a {deviate add {default a;}}}", LYS_IN_YANG)); |
| 2751 | logbuf_assert("Invalid deviation (/e:a) adding \"default\" property \"a\" of choice - the specified case does not exists."); |
| 2752 | assert_null(lys_parse_mem(ctx, "module gg4 {namespace urn:gg4;prefix gg4; import e {prefix e;}" |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2753 | "deviation /e:c {deviate add {default hi;}}}", LYS_IN_YANG)); |
| 2754 | logbuf_assert("Invalid deviation (/e:c) adding \"default\" property which already exists (with value \"hello\")."); |
Radek Krejci | 468a94f | 2019-02-15 14:52:36 +0100 | [diff] [blame] | 2755 | assert_null(lys_parse_mem(ctx, "module gg4 {namespace urn:gg4;prefix gg4; import e {prefix e;}" |
| 2756 | "deviation /e:a {deviate add {default e:c;}}}", LYS_IN_YANG)); |
| 2757 | logbuf_assert("Invalid deviation (/e:a) adding \"default\" property \"e:c\" of choice - mandatory node \"c\" under the default case."); |
Radek Krejci | 88ef64b | 2019-02-18 16:02:06 +0100 | [diff] [blame] | 2758 | assert_null(lys_parse_mem(ctx, "module gg5 {namespace urn:gg5;prefix gg5; leaf x {type string; mandatory true;}" |
| 2759 | "deviation /x {deviate add {default error;}}}", LYS_IN_YANG)); |
| 2760 | logbuf_assert("Invalid deviation (/x) adding \"default\" property \"error\" into a mandatory node."); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2761 | |
| 2762 | assert_null(lys_parse_mem(ctx, "module hh1 {yang-version 1.1; namespace urn:hh1;prefix hh1; import e {prefix e;}" |
| 2763 | "deviation /e:d {deviate replace {default hi;}}}", LYS_IN_YANG)); |
| 2764 | logbuf_assert("Invalid deviation (/e:d) of leaf-list node - it is not possible to replace \"default\" property."); |
| 2765 | |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 2766 | assert_null(lys_parse_mem(ctx, "module ii1 {namespace urn:ii1;prefix ii1; import i {prefix i;}" |
| 2767 | "deviation /i:l1 {deviate delete {unique x;}}}", LYS_IN_YANG)); |
| 2768 | logbuf_assert("Invalid deviation (/i:l1) deleting \"unique\" property \"x\" which does not match any of the target's property values."); |
| 2769 | assert_null(lys_parse_mem(ctx, "module ii2 {namespace urn:ii2;prefix ii2; import i {prefix i;} leaf x { type string;}" |
| 2770 | "deviation /i:l2 {deviate delete {unique d;}}}", LYS_IN_YANG)); |
| 2771 | logbuf_assert("Invalid deviation (/i:l2) deleting \"unique\" property \"d\" which does not match any of the target's property values."); |
| 2772 | assert_null(lys_parse_mem(ctx, "module ii3 {namespace urn:ii3;prefix ii3; leaf x { type string;}" |
| 2773 | "deviation /x {deviate delete {unique d;}}}", LYS_IN_YANG)); |
| 2774 | logbuf_assert("Invalid deviation (/x) of leaf node - it is not possible to delete \"unique\" property."); |
| 2775 | assert_null(lys_parse_mem(ctx, "module ii4 {namespace urn:ii4;prefix ii4; leaf x { type string;}" |
| 2776 | "deviation /x {deviate add {unique d;}}}", LYS_IN_YANG)); |
| 2777 | logbuf_assert("Invalid deviation (/x) of leaf node - it is not possible to add \"unique\" property."); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2778 | |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame^] | 2779 | assert_null(lys_parse_mem(ctx, "module jj1 {namespace urn:jj1;prefix jj1; choice ch {case a {leaf a{type string;}}}" |
| 2780 | "deviation /ch/a {deviate add {config false;}}}", LYS_IN_YANG)); |
| 2781 | logbuf_assert("Invalid deviation (/ch/a) of case node - it is not possible to add \"config\" property."); |
| 2782 | assert_null(lys_parse_mem(ctx, "module jj2 {namespace urn:jj2;prefix jj2; container top {config false; leaf x {type string;}}" |
| 2783 | "deviation /top/x {deviate add {config true;}}}", LYS_IN_YANG)); |
| 2784 | logbuf_assert("Invalid deviation of config in \"/top/x\" - configuration node cannot be child of any state data node."); |
| 2785 | assert_null(lys_parse_mem(ctx, "module jj3 {namespace urn:jj3;prefix jj3; container top {leaf x {type string;}}" |
| 2786 | "deviation /top/x {deviate replace {config false;}}}", LYS_IN_YANG)); |
| 2787 | logbuf_assert("Invalid deviation (/top/x) replacing \"config\" property \"config false\" which is not present."); |
| 2788 | assert_null(lys_parse_mem(ctx, "module jj4 {namespace urn:jj4;prefix jj4; choice ch {case a {leaf a{type string;}}}" |
| 2789 | "deviation /ch/a {deviate replace {config false;}}}", LYS_IN_YANG)); |
| 2790 | logbuf_assert("Invalid deviation (/ch/a) of case node - it is not possible to replace \"config\" property."); |
| 2791 | assert_null(lys_parse_mem(ctx, "module jj5 {namespace urn:jj5;prefix jj5; container top {leaf x {type string; config true;}}" |
| 2792 | "deviation /top {deviate add {config false;}}}", LYS_IN_YANG)); |
| 2793 | logbuf_assert("Invalid deviation of config in \"/top\" - configuration node cannot be child of any state data node."); |
| 2794 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2795 | *state = NULL; |
| 2796 | ly_ctx_destroy(ctx, NULL); |
| 2797 | } |
| 2798 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 2799 | int main(void) |
| 2800 | { |
| 2801 | const struct CMUnitTest tests[] = { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 2802 | cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown), |
| 2803 | cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown), |
| 2804 | cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown), |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 2805 | cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown), |
| 2806 | cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown), |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 2807 | cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown), |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 2808 | cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown), |
| 2809 | cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown), |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2810 | cmocka_unit_test_setup_teardown(test_type_dec64, logger_setup, logger_teardown), |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2811 | cmocka_unit_test_setup_teardown(test_type_instanceid, logger_setup, logger_teardown), |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2812 | cmocka_unit_test_setup_teardown(test_type_identityref, logger_setup, logger_teardown), |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2813 | cmocka_unit_test_setup_teardown(test_type_leafref, logger_setup, logger_teardown), |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 2814 | cmocka_unit_test_setup_teardown(test_type_empty, logger_setup, logger_teardown), |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2815 | cmocka_unit_test_setup_teardown(test_type_union, logger_setup, logger_teardown), |
| 2816 | cmocka_unit_test_setup_teardown(test_type_dflt, logger_setup, logger_teardown), |
Radek Krejci | 665421c | 2018-12-05 08:03:39 +0100 | [diff] [blame] | 2817 | cmocka_unit_test_setup_teardown(test_status, logger_setup, logger_teardown), |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 2818 | cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown), |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 2819 | cmocka_unit_test_setup_teardown(test_node_leaflist, logger_setup, logger_teardown), |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2820 | cmocka_unit_test_setup_teardown(test_node_list, logger_setup, logger_teardown), |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 2821 | cmocka_unit_test_setup_teardown(test_node_choice, logger_setup, logger_teardown), |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 2822 | cmocka_unit_test_setup_teardown(test_node_anydata, logger_setup, logger_teardown), |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2823 | cmocka_unit_test_setup_teardown(test_uses, logger_setup, logger_teardown), |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2824 | cmocka_unit_test_setup_teardown(test_refine, logger_setup, logger_teardown), |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 2825 | cmocka_unit_test_setup_teardown(test_augment, logger_setup, logger_teardown), |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 2826 | cmocka_unit_test_setup_teardown(test_deviation, logger_setup, logger_teardown), |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 2827 | }; |
| 2828 | |
| 2829 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 2830 | } |