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 |
| 86 | # define logbuf_assert(str) assert_string_equal(logbuf, str) |
| 87 | #else |
| 88 | # define logbuf_assert(str) |
| 89 | #endif |
| 90 | |
| 91 | static void |
| 92 | test_module(void **state) |
| 93 | { |
| 94 | (void) state; /* unused */ |
| 95 | |
| 96 | const char *str; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 97 | struct ly_parser_ctx ctx = {0}; |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 98 | struct lys_module mod = {0}; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 99 | struct lysc_feature *f; |
| 100 | struct lysc_iffeature *iff; |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 101 | |
| 102 | str = "module test {namespace urn:test; prefix t;" |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 103 | "feature f1;feature f2 {if-feature f1;}}"; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 104 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx)); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 105 | |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 106 | assert_int_equal(LY_EINVAL, lys_compile(NULL, 0)); |
| 107 | logbuf_assert("Invalid argument mod (lys_compile())."); |
| 108 | assert_int_equal(LY_EINVAL, lys_compile(&mod, 0)); |
| 109 | logbuf_assert("Invalid argument mod->parsed (lys_compile())."); |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 110 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 111 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0)); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 112 | assert_non_null(mod.compiled); |
| 113 | assert_ptr_equal(mod.parsed->name, mod.compiled->name); |
| 114 | assert_ptr_equal(mod.parsed->ns, mod.compiled->ns); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 115 | /* features */ |
| 116 | assert_non_null(mod.compiled->features); |
| 117 | assert_int_equal(2, LY_ARRAY_SIZE(mod.compiled->features)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 118 | f = &mod.compiled->features[1]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 119 | assert_non_null(f->iffeatures); |
| 120 | assert_int_equal(1, LY_ARRAY_SIZE(f->iffeatures)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 121 | iff = &f->iffeatures[0]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 122 | assert_non_null(iff->expr); |
| 123 | assert_non_null(iff->features); |
| 124 | assert_int_equal(1, LY_ARRAY_SIZE(iff->features)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 125 | assert_ptr_equal(&mod.compiled->features[0], iff->features[0]); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 126 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 127 | lysc_module_free(mod.compiled, NULL); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 128 | |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 129 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, LYSC_OPT_FREE_SP)); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 130 | assert_non_null(mod.compiled); |
| 131 | assert_string_equal("test", mod.compiled->name); |
| 132 | assert_string_equal("urn:test", mod.compiled->ns); |
| 133 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 134 | lysc_module_free(mod.compiled, NULL); |
| 135 | mod.compiled = NULL; |
| 136 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 137 | /* submodules cannot be compiled directly */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 138 | str = "submodule test {belongs-to xxx {prefix x;}}"; |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 139 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 140 | assert_int_equal(LY_EINVAL, lys_compile(&mod, 0)); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 141 | logbuf_assert("Submodules (test) are not supposed to be compiled, compile only the main modules."); |
| 142 | assert_null(mod.compiled); |
| 143 | |
| 144 | lysp_module_free(mod.parsed); |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 145 | ly_ctx_destroy(ctx.ctx, NULL); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 146 | } |
| 147 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 148 | static void |
| 149 | test_feature(void **state) |
| 150 | { |
| 151 | (void) state; /* unused */ |
| 152 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 153 | struct ly_parser_ctx ctx = {0}; |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 154 | struct lys_module mod = {0}, *modp; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 155 | const char *str; |
| 156 | struct lysc_feature *f, *f1; |
| 157 | |
| 158 | str = "module a {namespace urn:a;prefix a;yang-version 1.1;\n" |
| 159 | "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] | 160 | "feature orfeature {if-feature \"f1 or f2\";}\n" |
| 161 | "feature andfeature {if-feature \"f1 and f2\";}\n" |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 162 | "feature f6 {if-feature \"not f1\";}\n" |
Radek Krejci | dde18c5 | 2018-10-24 14:43:04 +0200 | [diff] [blame] | 163 | "feature f7 {if-feature \"(f2 and f3) or (not f1)\";}\n" |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 164 | "feature f8 {if-feature \"f1 or f2 or f3 or orfeature or andfeature\";}\n" |
| 165 | "feature f9 {if-feature \"not not f1\";}}"; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 166 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 167 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx)); |
| 168 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, str, &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 169 | assert_int_equal(LY_SUCCESS, lys_compile(&mod, 0)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 170 | assert_non_null(mod.compiled); |
| 171 | assert_non_null(mod.compiled->features); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 172 | assert_int_equal(9, LY_ARRAY_SIZE(mod.compiled->features)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 173 | /* all features are disabled by default */ |
| 174 | LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) { |
| 175 | assert_int_equal(0, lysc_feature_value(f)); |
| 176 | } |
| 177 | /* enable f1 */ |
| 178 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1")); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 179 | f1 = &mod.compiled->features[0]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 180 | assert_int_equal(1, lysc_feature_value(f1)); |
| 181 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 182 | /* enable orfeature */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 183 | f = &mod.compiled->features[3]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 184 | assert_int_equal(0, lysc_feature_value(f)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 185 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "orfeature")); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 186 | assert_int_equal(1, lysc_feature_value(f)); |
| 187 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 188 | /* enable andfeature - no possible since f2 is disabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 189 | f = &mod.compiled->features[4]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 190 | assert_int_equal(0, lysc_feature_value(f)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 191 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature")); |
| 192 | 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] | 193 | assert_int_equal(0, lysc_feature_value(f)); |
| 194 | |
| 195 | /* first enable f2, so f5 can be enabled then */ |
| 196 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f2")); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 197 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "andfeature")); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 198 | assert_int_equal(1, lysc_feature_value(f)); |
| 199 | |
| 200 | /* f1 is enabled, so f6 cannot be enabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 201 | f = &mod.compiled->features[5]; |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 202 | assert_int_equal(0, lysc_feature_value(f)); |
| 203 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "f6")); |
| 204 | logbuf_assert("Feature \"f6\" cannot be enabled since it is disabled by its if-feature condition(s)."); |
| 205 | assert_int_equal(0, lysc_feature_value(f)); |
| 206 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 207 | /* so disable f1 - andfeature will became also disabled */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 208 | assert_int_equal(1, lysc_feature_value(f1)); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 209 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1")); |
| 210 | assert_int_equal(0, lysc_feature_value(f1)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 211 | assert_int_equal(0, lysc_feature_value(&mod.compiled->features[4])); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 212 | /* while orfeature is stille enabled */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 213 | assert_int_equal(1, lysc_feature_value(&mod.compiled->features[3])); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 214 | /* and finally f6 can be enabled */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 215 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f6")); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 216 | assert_int_equal(1, lysc_feature_value(&mod.compiled->features[5])); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 217 | |
| 218 | /* 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] | 219 | 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] | 220 | /* long evaluation of f8 to need to reallocate internal stack for operators */ |
| 221 | 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] | 222 | |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 223 | /* double negation of disabled f1 -> disabled */ |
| 224 | assert_int_equal(0, lysc_iffeature_value(&mod.compiled->features[8].iffeatures[0])); |
| 225 | |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 226 | /* disable all features */ |
| 227 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "*")); |
| 228 | LY_ARRAY_FOR(mod.compiled->features, struct lysc_feature, f) { |
| 229 | assert_int_equal(0, lys_feature_value(&mod, f->name)); |
| 230 | } |
| 231 | /* re-setting already set feature */ |
| 232 | assert_int_equal(LY_SUCCESS, lys_feature_disable(&mod, "f1")); |
| 233 | assert_int_equal(0, lys_feature_value(&mod, "f1")); |
| 234 | |
| 235 | /* enabling feature that cannot be enabled due to its if-features */ |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 236 | assert_int_equal(LY_SUCCESS, lys_feature_enable(&mod, "f1")); |
| 237 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "andfeature")); |
| 238 | 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] | 239 | assert_int_equal(LY_EDENIED, lys_feature_enable(&mod, "*")); |
| 240 | 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] | 241 | /* test if not changed */ |
| 242 | assert_int_equal(1, lys_feature_value(&mod, "f1")); |
| 243 | assert_int_equal(0, lys_feature_value(&mod, "f2")); |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 244 | |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 245 | /* invalid reference */ |
Radek Krejci | 3892028 | 2018-11-01 09:24:16 +0100 | [diff] [blame] | 246 | assert_int_equal(LY_EINVAL, lys_feature_enable(&mod, "xxx")); |
| 247 | logbuf_assert("Feature \"xxx\" not found in module \"a\"."); |
| 248 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 249 | lysc_module_free(mod.compiled, NULL); |
| 250 | lysp_module_free(mod.parsed); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 251 | |
| 252 | /* some invalid expressions */ |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 253 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature f1;}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 254 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 255 | logbuf_assert("Invalid value \"f1\" of if-feature - unable to find feature \"f1\"."); |
| 256 | lysp_module_free(mod.parsed); |
| 257 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 258 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f and';}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 259 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 260 | logbuf_assert("Invalid value \"f and\" of if-feature - unexpected end of expression."); |
| 261 | lysp_module_free(mod.parsed); |
| 262 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 263 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f{if-feature 'or';}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 264 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 265 | logbuf_assert("Invalid value \"or\" of if-feature - unexpected end of expression."); |
| 266 | lysp_module_free(mod.parsed); |
| 267 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 268 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature '(f1';}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 269 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 270 | logbuf_assert("Invalid value \"(f1\" of if-feature - non-matching opening and closing parentheses."); |
| 271 | lysp_module_free(mod.parsed); |
| 272 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 273 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature 'f1)';}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 274 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 275 | logbuf_assert("Invalid value \"f1)\" of if-feature - non-matching opening and closing parentheses."); |
| 276 | lysp_module_free(mod.parsed); |
| 277 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 278 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{yang-version 1.1;namespace urn:b; prefix b; feature f1; feature f2{if-feature ---;}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 279 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 280 | logbuf_assert("Invalid value \"---\" of if-feature - unable to find feature \"---\"."); |
| 281 | lysp_module_free(mod.parsed); |
| 282 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 283 | assert_int_equal(LY_SUCCESS, yang_parse(&ctx, "module b{namespace urn:b; prefix b; feature f1; feature f2{if-feature 'not f1';}}", &mod.parsed)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 284 | assert_int_equal(LY_EVALID, lys_compile(&mod, 0)); |
Radek Krejci | 87616bb | 2018-10-31 13:30:52 +0100 | [diff] [blame] | 285 | logbuf_assert("Invalid value \"not f1\" of if-feature - YANG 1.1 expression in YANG 1.0 module."); |
| 286 | lysp_module_free(mod.parsed); |
| 287 | |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 288 | /* import reference */ |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 289 | 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] | 290 | assert_int_equal(LY_SUCCESS, lys_compile(modp, 0)); |
| 291 | assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f1")); |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 292 | assert_non_null(modp = lys_parse_mem(ctx.ctx, "module b{namespace urn:b; prefix b; 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] | 293 | assert_int_equal(LY_SUCCESS, lys_compile(modp, 0)); |
| 294 | assert_int_equal(LY_SUCCESS, lys_feature_enable(modp, "f2")); |
| 295 | assert_int_equal(0, lys_feature_value(modp, "f1")); |
| 296 | assert_int_equal(1, lys_feature_value(modp, "f2")); |
| 297 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 298 | ly_ctx_destroy(ctx.ctx, NULL); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 299 | } |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 300 | |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 301 | static void |
| 302 | test_identity(void **state) |
| 303 | { |
| 304 | (void) state; /* unused */ |
| 305 | |
| 306 | struct ly_ctx *ctx; |
Radek Krejci | 1aefdf7 | 2018-11-01 11:01:39 +0100 | [diff] [blame] | 307 | struct lys_module *mod1, *mod2; |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 308 | const char *mod1_str = "module a {namespace urn:a;prefix a; identity a1;}"; |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 309 | const char *mod2_str = "module b {yang-version 1.1;namespace urn:b;prefix b; import a {prefix a;}identity b1; identity b2; identity b3 {base b1; base b:b2; base a:a1;} identity b4 {base b:b1; base b3;}}"; |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 310 | |
| 311 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 312 | assert_non_null(mod1 = lys_parse_mem(ctx, mod1_str, LYS_IN_YANG)); |
| 313 | assert_non_null(mod2 = lys_parse_mem(ctx, mod2_str, LYS_IN_YANG)); |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 314 | assert_int_equal(LY_SUCCESS, lys_compile(mod2, 0)); |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 315 | |
| 316 | assert_non_null(mod1->compiled); |
| 317 | assert_non_null(mod1->compiled->identities); |
| 318 | assert_non_null(mod2->compiled); |
| 319 | assert_non_null(mod2->compiled->identities); |
| 320 | |
| 321 | assert_non_null(mod1->compiled->identities[0].derived); |
| 322 | assert_int_equal(1, LY_ARRAY_SIZE(mod1->compiled->identities[0].derived)); |
| 323 | assert_ptr_equal(mod1->compiled->identities[0].derived[0], &mod2->compiled->identities[2]); |
| 324 | assert_non_null(mod2->compiled->identities[0].derived); |
| 325 | assert_int_equal(2, LY_ARRAY_SIZE(mod2->compiled->identities[0].derived)); |
| 326 | assert_ptr_equal(mod2->compiled->identities[0].derived[0], &mod2->compiled->identities[2]); |
| 327 | assert_ptr_equal(mod2->compiled->identities[0].derived[1], &mod2->compiled->identities[3]); |
| 328 | assert_non_null(mod2->compiled->identities[1].derived); |
| 329 | assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[1].derived)); |
| 330 | assert_ptr_equal(mod2->compiled->identities[1].derived[0], &mod2->compiled->identities[2]); |
| 331 | assert_non_null(mod2->compiled->identities[2].derived); |
| 332 | assert_int_equal(1, LY_ARRAY_SIZE(mod2->compiled->identities[2].derived)); |
| 333 | assert_ptr_equal(mod2->compiled->identities[2].derived[0], &mod2->compiled->identities[3]); |
| 334 | |
Radek Krejci | 478020e | 2018-10-30 16:02:14 +0100 | [diff] [blame] | 335 | ly_ctx_destroy(ctx, NULL); |
| 336 | } |
| 337 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 338 | static void |
| 339 | test_node_container(void **state) |
| 340 | { |
| 341 | (void) state; /* unused */ |
| 342 | |
| 343 | struct ly_ctx *ctx; |
| 344 | struct lys_module *mod; |
| 345 | struct lysc_node_container *cont; |
| 346 | |
| 347 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 348 | assert_non_null(mod = lys_parse_mem(ctx, "module a {namespace urn:a;prefix a;container c;}", LYS_IN_YANG)); |
| 349 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 350 | assert_non_null(mod->compiled); |
| 351 | assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data)); |
| 352 | assert_int_equal(LYS_CONTAINER, cont->nodetype); |
| 353 | assert_string_equal("c", cont->name); |
| 354 | assert_true(cont->flags & LYS_CONFIG_W); |
| 355 | assert_true(cont->flags & LYS_STATUS_CURR); |
| 356 | |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 357 | 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 | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 358 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 359 | 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] | 360 | assert_non_null(mod->compiled); |
| 361 | assert_non_null((cont = (struct lysc_node_container*)mod->compiled->data)); |
| 362 | assert_true(cont->flags & LYS_CONFIG_R); |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 363 | assert_true(cont->flags & LYS_STATUS_DEPRC); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 364 | assert_non_null((cont = (struct lysc_node_container*)cont->child)); |
| 365 | assert_int_equal(LYS_CONTAINER, cont->nodetype); |
| 366 | assert_true(cont->flags & LYS_CONFIG_R); |
Radek Krejci | 98094b3 | 2018-11-02 16:21:47 +0100 | [diff] [blame] | 367 | assert_true(cont->flags & LYS_STATUS_DEPRC); |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 368 | assert_string_equal("child", cont->name); |
| 369 | |
| 370 | ly_ctx_destroy(ctx, NULL); |
| 371 | } |
| 372 | |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 373 | /** |
| 374 | * actually the same as length restriction (tested in test_type_length()), so just check the correct handling in appropriate types, |
| 375 | * do not test the expression itself |
| 376 | */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 377 | static void |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 378 | test_type_range(void **state) |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 379 | { |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 380 | *state = test_type_range; |
| 381 | |
| 382 | struct ly_ctx *ctx; |
| 383 | struct lys_module *mod; |
| 384 | struct lysc_type *type; |
| 385 | |
| 386 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 387 | |
| 388 | 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)); |
| 389 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 390 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 391 | assert_non_null(type); |
| 392 | assert_int_equal(LY_TYPE_INT8, type->basetype); |
| 393 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 394 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 395 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 396 | assert_int_equal(-128, ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 397 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 398 | assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 399 | assert_int_equal(127, ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 400 | |
| 401 | 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)); |
| 402 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 403 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 404 | assert_non_null(type); |
| 405 | assert_int_equal(LY_TYPE_INT16, type->basetype); |
| 406 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 407 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 408 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 409 | assert_int_equal(-32768, ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 410 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 411 | assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 412 | assert_int_equal(32767, ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 413 | |
| 414 | 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)); |
| 415 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 416 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 417 | assert_non_null(type); |
| 418 | assert_int_equal(LY_TYPE_INT32, type->basetype); |
| 419 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 420 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 421 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 422 | assert_int_equal(INT64_C(-2147483648), ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 423 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 424 | assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 425 | assert_int_equal(INT64_C(2147483647), ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 426 | |
| 427 | 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)); |
| 428 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 429 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 430 | assert_non_null(type); |
| 431 | assert_int_equal(LY_TYPE_INT64, type->basetype); |
| 432 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 433 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 434 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 435 | assert_int_equal(INT64_C(-9223372036854775807) - INT64_C(1), ((struct lysc_type_num*)type)->range->parts[0].min_64); |
| 436 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_64); |
| 437 | assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].min_64); |
| 438 | assert_int_equal(INT64_C(9223372036854775807), ((struct lysc_type_num*)type)->range->parts[1].max_64); |
| 439 | |
| 440 | 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)); |
| 441 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 442 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 443 | assert_non_null(type); |
| 444 | assert_int_equal(LY_TYPE_UINT8, type->basetype); |
| 445 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 446 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 447 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 448 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 449 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 450 | assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 451 | assert_int_equal(255, ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 452 | |
| 453 | 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)); |
| 454 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 455 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 456 | assert_non_null(type); |
| 457 | assert_int_equal(LY_TYPE_UINT16, type->basetype); |
| 458 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 459 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 460 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 461 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 462 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 463 | assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 464 | assert_int_equal(65535, ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 465 | |
| 466 | 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)); |
| 467 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 468 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 469 | assert_non_null(type); |
| 470 | assert_int_equal(LY_TYPE_UINT32, type->basetype); |
| 471 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 472 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 473 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 474 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 475 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 476 | assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 477 | assert_int_equal(UINT64_C(4294967295), ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 478 | |
| 479 | 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)); |
| 480 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 481 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 482 | assert_non_null(type); |
| 483 | assert_int_equal(LY_TYPE_UINT64, type->basetype); |
| 484 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 485 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 486 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 487 | assert_int_equal(0, ((struct lysc_type_num*)type)->range->parts[0].min_u64); |
| 488 | assert_int_equal(10, ((struct lysc_type_num*)type)->range->parts[0].max_u64); |
| 489 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].min_u64); |
| 490 | assert_int_equal(UINT64_C(18446744073709551615), ((struct lysc_type_num*)type)->range->parts[1].max_u64); |
| 491 | |
| 492 | assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type uint8 {range 10..100;}}" |
| 493 | "typedef mytype2 {type mytype;} leaf l {type mytype2;}}", LYS_IN_YANG)); |
| 494 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 495 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 496 | assert_non_null(type); |
| 497 | assert_int_equal(3, type->refcount); |
| 498 | assert_int_equal(LY_TYPE_UINT8, type->basetype); |
| 499 | assert_non_null(((struct lysc_type_num*)type)->range); |
| 500 | assert_non_null(((struct lysc_type_num*)type)->range->parts); |
| 501 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_num*)type)->range->parts)); |
| 502 | |
| 503 | *state = NULL; |
| 504 | ly_ctx_destroy(ctx, NULL); |
| 505 | } |
| 506 | |
| 507 | static void |
| 508 | test_type_length(void **state) |
| 509 | { |
| 510 | *state = test_type_length; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 511 | |
| 512 | struct ly_ctx *ctx; |
| 513 | struct lys_module *mod; |
| 514 | struct lysc_type *type; |
| 515 | |
| 516 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 517 | |
Radek Krejci | c5ddcc0 | 2018-11-12 13:28:18 +0100 | [diff] [blame] | 518 | 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] | 519 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 520 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 521 | assert_non_null(type); |
| 522 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 523 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
Radek Krejci | c5ddcc0 | 2018-11-12 13:28:18 +0100 | [diff] [blame] | 524 | assert_string_equal("errortag", ((struct lysc_type_bin*)type)->length->eapptag); |
| 525 | assert_string_equal("error", ((struct lysc_type_bin*)type)->length->emsg); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 526 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 527 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 528 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 529 | |
| 530 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;leaf l {type binary {length max;}}}", LYS_IN_YANG)); |
| 531 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 532 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 533 | assert_non_null(type); |
| 534 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 535 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 536 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 537 | assert_int_equal(__UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 538 | assert_int_equal(__UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 539 | |
| 540 | 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)); |
| 541 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 542 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 543 | assert_non_null(type); |
| 544 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 545 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 546 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 547 | assert_int_equal(0, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 548 | assert_int_equal(__UINT64_C(18446744073709551615), ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 549 | |
| 550 | assert_non_null(mod = lys_parse_mem(ctx, "module d {namespace urn:d;prefix d;leaf l {type binary {length 5;}}}", LYS_IN_YANG)); |
| 551 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 552 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 553 | assert_non_null(type); |
| 554 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 555 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 556 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 557 | assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 558 | assert_int_equal(5, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 559 | |
| 560 | 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)); |
| 561 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 562 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 563 | assert_non_null(type); |
| 564 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 565 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 566 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 567 | assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 568 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 569 | |
| 570 | 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)); |
| 571 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 572 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 573 | assert_non_null(type); |
| 574 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 575 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 576 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 577 | assert_int_equal(1, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 578 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 579 | assert_int_equal(20, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 580 | assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 581 | |
| 582 | 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)); |
| 583 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 584 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 585 | assert_non_null(type); |
| 586 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 587 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 588 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 589 | assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 590 | assert_int_equal(16, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 591 | assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 592 | assert_int_equal(32, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 593 | |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 594 | assert_non_null(mod = lys_parse_mem(ctx, "module h {namespace urn:h;prefix h;typedef mytype {type binary {length 10;}}" |
| 595 | "leaf l {type mytype {length \"10\";}}}", LYS_IN_YANG)); |
| 596 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 597 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 598 | assert_non_null(type); |
| 599 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 600 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 601 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 602 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 603 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 604 | |
| 605 | assert_non_null(mod = lys_parse_mem(ctx, "module i {namespace urn:i;prefix i;typedef mytype {type binary {length 10..100;}}" |
| 606 | "leaf l {type mytype {length \"50\";}}}", LYS_IN_YANG)); |
| 607 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 608 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 609 | assert_non_null(type); |
| 610 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 611 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 612 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 613 | assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 614 | assert_int_equal(50, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 615 | |
| 616 | assert_non_null(mod = lys_parse_mem(ctx, "module j {namespace urn:j;prefix j;typedef mytype {type binary {length 10..100;}}" |
| 617 | "leaf l {type mytype {length \"10..30|60..100\";}}}", LYS_IN_YANG)); |
| 618 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 619 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 620 | assert_non_null(type); |
| 621 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 622 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 623 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 624 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 625 | assert_int_equal(30, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 626 | assert_int_equal(60, ((struct lysc_type_bin*)type)->length->parts[1].min_u64); |
| 627 | assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[1].max_u64); |
| 628 | |
| 629 | 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] | 630 | "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] | 631 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 632 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 633 | assert_non_null(type); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 634 | assert_int_equal(1, type->refcount); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 635 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 636 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 637 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 638 | 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] | 639 | 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] | 640 | type = ((struct lysc_node_leaf*)mod->compiled->data->next)->type; |
| 641 | assert_non_null(type); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 642 | assert_int_equal(2, type->refcount); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 643 | assert_non_null(((struct lysc_type_bin*)type)->length); |
| 644 | assert_non_null(((struct lysc_type_bin*)type)->length->parts); |
| 645 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_bin*)type)->length->parts)); |
| 646 | assert_int_equal(10, ((struct lysc_type_bin*)type)->length->parts[0].min_u64); |
| 647 | assert_int_equal(100, ((struct lysc_type_bin*)type)->length->parts[0].max_u64); |
| 648 | |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 649 | assert_non_null(mod = lys_parse_mem(ctx, "module l {namespace urn:l;prefix l;typedef mytype {type string {length 10..100;}}" |
| 650 | "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] | 651 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 652 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 653 | assert_non_null(type); |
| 654 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
Radek Krejci | 56aa27c | 2018-11-13 14:21:59 +0100 | [diff] [blame] | 655 | assert_int_equal(1, type->refcount); |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 656 | assert_non_null(((struct lysc_type_str*)type)->length); |
| 657 | assert_non_null(((struct lysc_type_str*)type)->length->parts); |
| 658 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->length->parts)); |
| 659 | assert_int_equal(10, ((struct lysc_type_str*)type)->length->parts[0].min_u64); |
| 660 | 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] | 661 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 662 | /* invalid values */ |
| 663 | assert_non_null(mod = lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa;leaf l {type binary {length -10;}}}", LYS_IN_YANG)); |
| 664 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 665 | logbuf_assert("Invalid length restriction - value \"-10\" does not fit the type limitations."); |
| 666 | assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb;leaf l {type binary {length 18446744073709551616;}}}", LYS_IN_YANG)); |
| 667 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 668 | logbuf_assert("Invalid length restriction - invalid value \"18446744073709551616\"."); |
| 669 | assert_non_null(mod = lys_parse_mem(ctx, "module cc {namespace urn:cc;prefix cc;leaf l {type binary {length \"max .. 10\";}}}", LYS_IN_YANG)); |
| 670 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 671 | logbuf_assert("Invalid length restriction - unexpected data after max keyword (.. 10)."); |
| 672 | assert_non_null(mod = lys_parse_mem(ctx, "module dd {namespace urn:dd;prefix dd;leaf l {type binary {length 50..10;}}}", LYS_IN_YANG)); |
| 673 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 674 | logbuf_assert("Invalid length restriction - values are not in ascending order (10)."); |
| 675 | assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type binary {length \"50 | 10\";}}}", LYS_IN_YANG)); |
| 676 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 677 | logbuf_assert("Invalid length restriction - values are not in ascending order (10)."); |
| 678 | assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type binary {length \"x\";}}}", LYS_IN_YANG)); |
| 679 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 680 | logbuf_assert("Invalid length restriction - unexpected data (x)."); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 681 | assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;leaf l {type binary {length \"50 | min\";}}}", LYS_IN_YANG)); |
| 682 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 683 | logbuf_assert("Invalid length restriction - unexpected data before min keyword (50 | )."); |
| 684 | assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh;leaf l {type binary {length \"| 50\";}}}", LYS_IN_YANG)); |
| 685 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 686 | logbuf_assert("Invalid length restriction - unexpected beginning of the expression (| 50)."); |
| 687 | assert_non_null(mod = lys_parse_mem(ctx, "module ii {namespace urn:ii;prefix ii;leaf l {type binary {length \"10 ..\";}}}", LYS_IN_YANG)); |
| 688 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 689 | logbuf_assert("Invalid length restriction - unexpected end of the expression after \"..\" (10 ..)."); |
| 690 | assert_non_null(mod = lys_parse_mem(ctx, "module jj {namespace urn:jj;prefix jj;leaf l {type binary {length \".. 10\";}}}", LYS_IN_YANG)); |
| 691 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 692 | logbuf_assert("Invalid length restriction - unexpected \"..\" without a lower bound."); |
| 693 | assert_non_null(mod = lys_parse_mem(ctx, "module kk {namespace urn:kk;prefix kk;leaf l {type binary {length \"10 |\";}}}", LYS_IN_YANG)); |
| 694 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 695 | logbuf_assert("Invalid length restriction - unexpected end of the expression (10 |)."); |
Radek Krejci | 6489bbe | 2018-11-12 17:05:19 +0100 | [diff] [blame] | 696 | assert_non_null(mod = lys_parse_mem(ctx, "module kl {namespace urn:kl;prefix kl;leaf l {type binary {length \"10..20 | 15..30\";}}}", LYS_IN_YANG)); |
| 697 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 698 | logbuf_assert("Invalid length restriction - values are not in ascending order (15)."); |
Radek Krejci | b31c899 | 2018-11-12 16:29:16 +0100 | [diff] [blame] | 699 | |
| 700 | assert_non_null(mod = lys_parse_mem(ctx, "module ll {namespace urn:ll;prefix ll;typedef mytype {type binary {length 10;}}" |
| 701 | "leaf l {type mytype {length 11;}}}", LYS_IN_YANG)); |
| 702 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 703 | logbuf_assert("Invalid length restriction - the derived restriction (11) is not equally or more limiting."); |
| 704 | assert_non_null(mod = lys_parse_mem(ctx, "module mm {namespace urn:mm;prefix mm;typedef mytype {type binary {length 10..100;}}" |
| 705 | "leaf l {type mytype {length 1..11;}}}", LYS_IN_YANG)); |
| 706 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 707 | logbuf_assert("Invalid length restriction - the derived restriction (1..11) is not equally or more limiting."); |
| 708 | assert_non_null(mod = lys_parse_mem(ctx, "module nn {namespace urn:nn;prefix nn;typedef mytype {type binary {length 10..100;}}" |
| 709 | "leaf l {type mytype {length 20..110;}}}", LYS_IN_YANG)); |
| 710 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 711 | logbuf_assert("Invalid length restriction - the derived restriction (20..110) is not equally or more limiting."); |
| 712 | assert_non_null(mod = lys_parse_mem(ctx, "module oo {namespace urn:oo;prefix oo;typedef mytype {type binary {length 10..100;}}" |
| 713 | "leaf l {type mytype {length 20..30|110..120;}}}", LYS_IN_YANG)); |
| 714 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 715 | logbuf_assert("Invalid length restriction - the derived restriction (20..30|110..120) is not equally or more limiting."); |
| 716 | assert_non_null(mod = lys_parse_mem(ctx, "module pp {namespace urn:pp;prefix pp;typedef mytype {type binary {length 10..11;}}" |
| 717 | "leaf l {type mytype {length 15;}}}", LYS_IN_YANG)); |
| 718 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 719 | logbuf_assert("Invalid length restriction - the derived restriction (15) is not equally or more limiting."); |
| 720 | assert_non_null(mod = lys_parse_mem(ctx, "module qq {namespace urn:qq;prefix qq;typedef mytype {type binary {length 10..20|30..40;}}" |
| 721 | "leaf l {type mytype {length 15..35;}}}", LYS_IN_YANG)); |
| 722 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 723 | logbuf_assert("Invalid length restriction - the derived restriction (15..35) is not equally or more limiting."); |
Radek Krejci | 6489bbe | 2018-11-12 17:05:19 +0100 | [diff] [blame] | 724 | assert_non_null(mod = lys_parse_mem(ctx, "module rr {namespace urn:rr;prefix rr;typedef mytype {type binary {length 10;}}" |
| 725 | "leaf l {type mytype {length 10..35;}}}", LYS_IN_YANG)); |
| 726 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 727 | 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] | 728 | |
Radek Krejci | 495903e | 2018-11-13 11:30:45 +0100 | [diff] [blame] | 729 | assert_non_null(mod = lys_parse_mem(ctx, "module ss {namespace urn:rr;prefix rr;leaf l {type binary {pattern '[0-9]*';}}}", LYS_IN_YANG)); |
| 730 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 731 | logbuf_assert("Invalid type restrictions for binary type."); |
| 732 | |
| 733 | assert_non_null(mod = lys_parse_mem(ctx, "module tt {namespace urn:tt;prefix tt;typedef mytype {type string {length 10;}}" |
| 734 | "leaf l {type mytype {length min..max;}}}", LYS_IN_YANG)); |
| 735 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 736 | logbuf_assert("Invalid length restriction - the derived restriction (min..max) is not equally or more limiting."); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 737 | |
| 738 | *state = NULL; |
| 739 | ly_ctx_destroy(ctx, NULL); |
| 740 | } |
| 741 | |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 742 | static void |
| 743 | test_type_pattern(void **state) |
| 744 | { |
| 745 | *state = test_type_pattern; |
| 746 | |
| 747 | struct ly_ctx *ctx; |
| 748 | struct lys_module *mod; |
| 749 | struct lysc_type *type; |
| 750 | |
| 751 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 752 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 753 | 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] | 754 | "pattern .* {error-app-tag errortag;error-message error;}" |
| 755 | "pattern [0-9].*[0-9] {modifier invert-match;}}}}", LYS_IN_YANG)); |
| 756 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 757 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 758 | assert_non_null(type); |
| 759 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 760 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 761 | assert_string_equal("errortag", ((struct lysc_type_str*)type)->patterns[0]->eapptag); |
| 762 | assert_string_equal("error", ((struct lysc_type_str*)type)->patterns[0]->emsg); |
| 763 | assert_int_equal(0, ((struct lysc_type_str*)type)->patterns[0]->inverted); |
| 764 | assert_null(((struct lysc_type_str*)type)->patterns[1]->eapptag); |
| 765 | assert_null(((struct lysc_type_str*)type)->patterns[1]->emsg); |
| 766 | assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->inverted); |
| 767 | |
| 768 | assert_non_null(mod = lys_parse_mem(ctx, "module b {namespace urn:b;prefix b;typedef mytype {type string {pattern '[0-9]*';}}" |
| 769 | "typedef mytype2 {type mytype {length 10;}} leaf l {type mytype2 {pattern '[0-4]*';}}}", LYS_IN_YANG)); |
| 770 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 771 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 772 | assert_non_null(type); |
| 773 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 774 | assert_int_equal(1, type->refcount); |
| 775 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 776 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 777 | assert_int_equal(3, ((struct lysc_type_str*)type)->patterns[0]->refcount); |
| 778 | assert_int_equal(1, ((struct lysc_type_str*)type)->patterns[1]->refcount); |
| 779 | |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 780 | assert_non_null(mod = lys_parse_mem(ctx, "module c {namespace urn:c;prefix c;typedef mytype {type string {pattern '[0-9]*';}}" |
| 781 | "leaf l {type mytype {length 10;}}}", LYS_IN_YANG)); |
| 782 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 783 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 784 | assert_non_null(type); |
| 785 | assert_int_equal(LY_TYPE_STRING, type->basetype); |
| 786 | assert_int_equal(1, type->refcount); |
| 787 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 788 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 789 | assert_int_equal(2, ((struct lysc_type_str*)type)->patterns[0]->refcount); |
| 790 | |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 791 | /* test substitutions */ |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 792 | 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] | 793 | "pattern '^\\p{IsLatinExtended-A}$';}}}", LYS_IN_YANG)); |
| 794 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 795 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 796 | assert_non_null(type); |
| 797 | assert_non_null(((struct lysc_type_str*)type)->patterns); |
| 798 | assert_int_equal(1, LY_ARRAY_SIZE(((struct lysc_type_str*)type)->patterns)); |
| 799 | /* TODO check some data "^Å™$" */ |
| 800 | |
| 801 | *state = NULL; |
| 802 | ly_ctx_destroy(ctx, NULL); |
| 803 | } |
| 804 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 805 | static void |
| 806 | test_type_enum(void **state) |
| 807 | { |
| 808 | *state = test_type_enum; |
| 809 | |
| 810 | struct ly_ctx *ctx; |
| 811 | struct lys_module *mod; |
| 812 | struct lysc_type *type; |
| 813 | |
| 814 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 815 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 816 | 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] | 817 | "enum automin; enum min {value -2147483648;}enum one {if-feature f; value 1;}" |
| 818 | "enum two; enum seven {value 7;}enum eight;}}}", LYS_IN_YANG)); |
| 819 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 820 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 821 | assert_non_null(type); |
| 822 | assert_int_equal(LY_TYPE_ENUM, type->basetype); |
| 823 | assert_non_null(((struct lysc_type_enum*)type)->enums); |
| 824 | assert_int_equal(6, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums)); |
| 825 | assert_non_null(((struct lysc_type_enum*)type)->enums[2].iffeatures); |
| 826 | assert_string_equal("automin", ((struct lysc_type_enum*)type)->enums[0].name); |
| 827 | assert_int_equal(0, ((struct lysc_type_enum*)type)->enums[0].value); |
| 828 | assert_string_equal("min", ((struct lysc_type_enum*)type)->enums[1].name); |
| 829 | assert_int_equal(-2147483648, ((struct lysc_type_enum*)type)->enums[1].value); |
| 830 | assert_string_equal("one", ((struct lysc_type_enum*)type)->enums[2].name); |
| 831 | assert_int_equal(1, ((struct lysc_type_enum*)type)->enums[2].value); |
| 832 | assert_string_equal("two", ((struct lysc_type_enum*)type)->enums[3].name); |
| 833 | assert_int_equal(2, ((struct lysc_type_enum*)type)->enums[3].value); |
| 834 | assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[4].name); |
| 835 | assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[4].value); |
| 836 | assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[5].name); |
| 837 | assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[5].value); |
| 838 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 839 | 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 {" |
| 840 | "enum 11; enum min {value -2147483648;}enum x$&;" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 841 | "enum two; enum seven {value 7;}enum eight;}} leaf l { type mytype {enum seven;enum eight;}}}", |
| 842 | LYS_IN_YANG)); |
| 843 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 844 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 845 | assert_non_null(type); |
| 846 | assert_int_equal(LY_TYPE_ENUM, type->basetype); |
| 847 | assert_non_null(((struct lysc_type_enum*)type)->enums); |
| 848 | assert_int_equal(2, LY_ARRAY_SIZE(((struct lysc_type_enum*)type)->enums)); |
| 849 | assert_string_equal("seven", ((struct lysc_type_enum*)type)->enums[0].name); |
| 850 | assert_int_equal(7, ((struct lysc_type_enum*)type)->enums[0].value); |
| 851 | assert_string_equal("eight", ((struct lysc_type_enum*)type)->enums[1].name); |
| 852 | assert_int_equal(8, ((struct lysc_type_enum*)type)->enums[1].value); |
| 853 | |
| 854 | |
| 855 | /* invalid cases */ |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 856 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type enumeration {" |
| 857 | "enum one {if-feature f;}}}}", LYS_IN_YANG)); |
| 858 | 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] | 859 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 860 | "enum one {value -2147483649;}}}}", LYS_IN_YANG)); |
| 861 | logbuf_assert("Invalid value \"-2147483649\" of \"value\". Line number 1."); |
| 862 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 863 | "enum one {value 2147483648;}}}}", LYS_IN_YANG)); |
| 864 | logbuf_assert("Invalid value \"2147483648\" of \"value\". Line number 1."); |
| 865 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 866 | "enum one; enum one;}}}", LYS_IN_YANG)); |
| 867 | logbuf_assert("Duplicate identifier \"one\" of enum statement. Line number 1."); |
| 868 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 869 | "enum '';}}}", LYS_IN_YANG)); |
| 870 | logbuf_assert("Enum name must not be zero-length. Line number 1."); |
| 871 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 872 | "enum ' x';}}}", LYS_IN_YANG)); |
| 873 | logbuf_assert("Enum name must not have any leading or trailing whitespaces (\" x\"). Line number 1."); |
| 874 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 875 | "enum 'x ';}}}", LYS_IN_YANG)); |
| 876 | logbuf_assert("Enum name must not have any leading or trailing whitespaces (\"x \"). Line number 1."); |
| 877 | assert_non_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type enumeration {" |
| 878 | "enum 'inva\nlid';}}}", LYS_IN_YANG)); |
| 879 | logbuf_assert("Control characters in enum name should be avoided (\"inva\nlid\", character number 5)."); |
| 880 | |
| 881 | assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type enumeration;}}", LYS_IN_YANG)); |
| 882 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 883 | logbuf_assert("Missing enum substatement for enumeration type."); |
| 884 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 885 | assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type enumeration {enum one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 886 | "leaf l {type mytype {enum two;}}}", LYS_IN_YANG)); |
| 887 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 888 | logbuf_assert("Invalid enumeration - derived type adds new item \"two\"."); |
| 889 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 890 | assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type enumeration {enum one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 891 | "leaf l {type mytype {enum one {value 1;}}}}", LYS_IN_YANG)); |
| 892 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 893 | logbuf_assert("Invalid enumeration - value of the item \"one\" has changed from 0 to 1 in the derived type."); |
| 894 | assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type enumeration {enum x {value 2147483647;}enum y;}}}", |
| 895 | LYS_IN_YANG)); |
| 896 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 897 | logbuf_assert("Invalid enumeration - it is not possible to auto-assign enum value for \"y\" since the highest value is already 2147483647."); |
| 898 | |
| 899 | assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type enumeration {enum x {value 1;}enum y {value 1;}}}}", |
| 900 | LYS_IN_YANG)); |
| 901 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 902 | logbuf_assert("Invalid enumeration - value 1 collide in items \"y\" and \"x\"."); |
| 903 | |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 904 | assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type enumeration;}" |
| 905 | "leaf l {type mytype {enum one;}}}", LYS_IN_YANG)); |
| 906 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 907 | logbuf_assert("Missing enum substatement for enumeration type \"mytype\"."); |
| 908 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 909 | assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type enumeration {enum one;}}" |
| 910 | "leaf l {type mytype {enum one;}}}", LYS_IN_YANG)); |
| 911 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 912 | logbuf_assert("Enumeration type can be subtyped only in YANG 1.1 modules."); |
| 913 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 914 | *state = NULL; |
| 915 | ly_ctx_destroy(ctx, NULL); |
| 916 | } |
| 917 | |
| 918 | static void |
| 919 | test_type_bits(void **state) |
| 920 | { |
| 921 | *state = test_type_bits; |
| 922 | |
| 923 | struct ly_ctx *ctx; |
| 924 | struct lys_module *mod; |
| 925 | struct lysc_type *type; |
| 926 | |
| 927 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 928 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 929 | 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] | 930 | "bit automin; bit one {if-feature f; position 1;}" |
| 931 | "bit two; bit seven {position 7;}bit eight;}}}", LYS_IN_YANG)); |
| 932 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 933 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 934 | assert_non_null(type); |
| 935 | assert_int_equal(LY_TYPE_BITS, type->basetype); |
| 936 | assert_non_null(((struct lysc_type_bits*)type)->bits); |
| 937 | assert_int_equal(5, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits)); |
| 938 | assert_non_null(((struct lysc_type_bits*)type)->bits[1].iffeatures); |
| 939 | assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name); |
| 940 | assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position); |
| 941 | assert_string_equal("one", ((struct lysc_type_bits*)type)->bits[1].name); |
| 942 | assert_int_equal(1, ((struct lysc_type_bits*)type)->bits[1].position); |
| 943 | assert_string_equal("two", ((struct lysc_type_bits*)type)->bits[2].name); |
| 944 | assert_int_equal(2, ((struct lysc_type_bits*)type)->bits[2].position); |
| 945 | assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[3].name); |
| 946 | assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[3].position); |
| 947 | assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[4].name); |
| 948 | assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[4].position); |
| 949 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 950 | 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 {" |
| 951 | "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] | 952 | LYS_IN_YANG)); |
| 953 | assert_int_equal(LY_SUCCESS, lys_compile(mod, 0)); |
| 954 | type = ((struct lysc_node_leaf*)mod->compiled->data)->type; |
| 955 | assert_non_null(type); |
| 956 | assert_int_equal(LY_TYPE_BITS, type->basetype); |
| 957 | assert_non_null(((struct lysc_type_bits*)type)->bits); |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 958 | assert_int_equal(3, LY_ARRAY_SIZE(((struct lysc_type_bits*)type)->bits)); |
| 959 | assert_string_equal("automin", ((struct lysc_type_bits*)type)->bits[0].name); |
| 960 | assert_int_equal(0, ((struct lysc_type_bits*)type)->bits[0].position); |
| 961 | assert_string_equal("seven", ((struct lysc_type_bits*)type)->bits[1].name); |
| 962 | assert_int_equal(7, ((struct lysc_type_bits*)type)->bits[1].position); |
| 963 | assert_string_equal("eight", ((struct lysc_type_bits*)type)->bits[2].name); |
| 964 | assert_int_equal(8, ((struct lysc_type_bits*)type)->bits[2].position); |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 965 | |
| 966 | |
| 967 | /* invalid cases */ |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 968 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; feature f; leaf l {type bits {" |
| 969 | "bit one {if-feature f;}}}}", LYS_IN_YANG)); |
| 970 | 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] | 971 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 972 | "bit one {position -1;}}}}", LYS_IN_YANG)); |
| 973 | logbuf_assert("Invalid value \"-1\" of \"position\". Line number 1."); |
| 974 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 975 | "bit one {value 4294967296;}}}}", LYS_IN_YANG)); |
| 976 | logbuf_assert("Invalid value \"4294967296\" of \"value\". Line number 1."); |
| 977 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 978 | "bit one; bit one;}}}", LYS_IN_YANG)); |
| 979 | logbuf_assert("Duplicate identifier \"one\" of bit statement. Line number 1."); |
| 980 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 981 | "bit '11';}}}", LYS_IN_YANG)); |
| 982 | logbuf_assert("Invalid identifier first character '1'. Line number 1."); |
| 983 | assert_null(lys_parse_mem(ctx, "module aa {namespace urn:aa;prefix aa; leaf l {type bits {" |
| 984 | "bit 'x1$1';}}}", LYS_IN_YANG)); |
| 985 | logbuf_assert("Invalid identifier character '$'. Line number 1."); |
| 986 | |
| 987 | assert_non_null(mod = lys_parse_mem(ctx, "module bb {namespace urn:bb;prefix bb; leaf l {type bits;}}", LYS_IN_YANG)); |
| 988 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 989 | logbuf_assert("Missing bit substatement for bits type."); |
| 990 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 991 | assert_non_null(mod = lys_parse_mem(ctx, "module cc {yang-version 1.1;namespace urn:cc;prefix cc;typedef mytype {type bits {bit one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 992 | "leaf l {type mytype {bit two;}}}", LYS_IN_YANG)); |
| 993 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 994 | logbuf_assert("Invalid bits - derived type adds new item \"two\"."); |
| 995 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 996 | assert_non_null(mod = lys_parse_mem(ctx, "module dd {yang-version 1.1;namespace urn:dd;prefix dd;typedef mytype {type bits {bit one;}}" |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 997 | "leaf l {type mytype {bit one {position 1;}}}}", LYS_IN_YANG)); |
| 998 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 999 | logbuf_assert("Invalid bits - position of the item \"one\" has changed from 0 to 1 in the derived type."); |
| 1000 | assert_non_null(mod = lys_parse_mem(ctx, "module ee {namespace urn:ee;prefix ee;leaf l {type bits {bit x {position 4294967295;}bit y;}}}", |
| 1001 | LYS_IN_YANG)); |
| 1002 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 1003 | logbuf_assert("Invalid bits - it is not possible to auto-assign bit position for \"y\" since the highest value is already 4294967295."); |
| 1004 | |
| 1005 | assert_non_null(mod = lys_parse_mem(ctx, "module ff {namespace urn:ff;prefix ff;leaf l {type bits {bit x {value 1;}bit y {value 1;}}}}", |
| 1006 | LYS_IN_YANG)); |
| 1007 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 1008 | logbuf_assert("Invalid bits - position 1 collide in items \"y\" and \"x\"."); |
| 1009 | |
Radek Krejci | 04bc1e9 | 2018-11-14 14:28:13 +0100 | [diff] [blame] | 1010 | assert_non_null(mod = lys_parse_mem(ctx, "module gg {namespace urn:gg;prefix gg;typedef mytype {type bits;}" |
| 1011 | "leaf l {type mytype {bit one;}}}", LYS_IN_YANG)); |
| 1012 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 1013 | logbuf_assert("Missing bit substatement for bits type \"mytype\"."); |
| 1014 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 1015 | assert_non_null(mod = lys_parse_mem(ctx, "module hh {namespace urn:hh;prefix hh; typedef mytype {type bits {bit one;}}" |
| 1016 | "leaf l {type mytype {bit one;}}}", LYS_IN_YANG)); |
| 1017 | assert_int_equal(LY_EVALID, lys_compile(mod, 0)); |
| 1018 | logbuf_assert("Bits type can be subtyped only in YANG 1.1 modules."); |
| 1019 | |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1020 | *state = NULL; |
| 1021 | ly_ctx_destroy(ctx, NULL); |
| 1022 | } |
| 1023 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1024 | int main(void) |
| 1025 | { |
| 1026 | const struct CMUnitTest tests[] = { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1027 | cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown), |
| 1028 | cmocka_unit_test_setup_teardown(test_feature, logger_setup, logger_teardown), |
| 1029 | cmocka_unit_test_setup_teardown(test_identity, logger_setup, logger_teardown), |
Radek Krejci | 0f07bed | 2018-11-13 14:01:40 +0100 | [diff] [blame] | 1030 | cmocka_unit_test_setup_teardown(test_type_length, logger_setup, logger_teardown), |
| 1031 | cmocka_unit_test_setup_teardown(test_type_range, logger_setup, logger_teardown), |
Radek Krejci | cda7415 | 2018-11-13 15:27:32 +0100 | [diff] [blame] | 1032 | cmocka_unit_test_setup_teardown(test_type_pattern, logger_setup, logger_teardown), |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1033 | cmocka_unit_test_setup_teardown(test_type_enum, logger_setup, logger_teardown), |
| 1034 | cmocka_unit_test_setup_teardown(test_type_bits, logger_setup, logger_teardown), |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1035 | cmocka_unit_test_setup_teardown(test_node_container, logger_setup, logger_teardown), |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1036 | }; |
| 1037 | |
| 1038 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 1039 | } |