Radek Iša | 59bf327 | 2021-03-10 11:22:52 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file test_error.c |
| 3 | * @author Radek Iša <isa@cesnet.cz> |
| 4 | * @brief test for int8 values |
| 5 | * |
| 6 | * Copyright (c) 2021 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 | |
| 15 | /* INCLUDE UTEST HEADER */ |
| 16 | #define _UTEST_MAIN_ |
| 17 | #include "../utests.h" |
| 18 | |
| 19 | /* GLOBAL INCLUDE HEADERS */ |
| 20 | #include <ctype.h> |
| 21 | |
| 22 | /* LOCAL INCLUDE HEADERS */ |
| 23 | #include "libyang.h" |
| 24 | #include "path.h" |
| 25 | |
| 26 | #define MODULE_CREATE_YIN(MOD_NAME, NODES) \ |
| 27 | "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" \ |
| 28 | "<module name=\"" MOD_NAME "\"\n" \ |
| 29 | " xmlns=\"urn:ietf:params:xml:ns:yang:yin:1\"\n" \ |
| 30 | " xmlns:pref=\"urn:tests:" MOD_NAME "\">\n" \ |
| 31 | " <yang-version value=\"1.1\"/>\n" \ |
| 32 | " <namespace uri=\"urn:tests:" MOD_NAME "\"/>\n" \ |
| 33 | " <prefix value=\"pref\"/>\n" \ |
| 34 | NODES \ |
| 35 | "</module>\n" |
| 36 | |
| 37 | #define MODULE_CREATE_YANG(MOD_NAME, NODES) \ |
| 38 | "module " MOD_NAME " {\n" \ |
| 39 | " yang-version 1.1;\n" \ |
| 40 | " namespace \"urn:tests:" MOD_NAME "\";\n" \ |
| 41 | " prefix pref;\n" \ |
| 42 | NODES \ |
| 43 | "}\n" |
| 44 | |
| 45 | #define TEST_SUCCESS_XML(MOD_NAME, DATA, TYPE, ...) \ |
| 46 | { \ |
| 47 | struct lyd_node *tree; \ |
| 48 | const char *data = "<port xmlns=\"urn:tests:" MOD_NAME "\">" DATA "</port>"; \ |
| 49 | CHECK_PARSE_LYD_PARAM(data, LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_SUCCESS, tree); \ |
| 50 | CHECK_LYSC_NODE(tree->schema, NULL, 0, 0x5, 1, "port", 0, LYS_LEAF, 0, 0, 0, 0); \ |
| 51 | CHECK_LYD_NODE_TERM((struct lyd_node_term *)tree, 0, 0, 0, 0, 1, TYPE, ## __VA_ARGS__); \ |
| 52 | lyd_free_all(tree); \ |
| 53 | } |
| 54 | |
| 55 | #define TEST_SUCCESS_JSON(MOD_NAME, DATA, TYPE, ...) \ |
| 56 | { \ |
| 57 | struct lyd_node *tree; \ |
| 58 | const char *data = "{\"" MOD_NAME ":port\":" DATA "}"; \ |
| 59 | CHECK_PARSE_LYD_PARAM(data, LYD_JSON, 0, LYD_VALIDATE_PRESENT, LY_SUCCESS, tree); \ |
| 60 | CHECK_LYSC_NODE(tree->schema, NULL, 0, 0x5, 1, "port", 0, LYS_LEAF, 0, 0, 0, 0); \ |
| 61 | CHECK_LYD_NODE_TERM((struct lyd_node_term *)tree, 0, 0, 0, 0, 1, TYPE, ## __VA_ARGS__); \ |
| 62 | lyd_free_all(tree); \ |
| 63 | } |
| 64 | |
| 65 | #define TEST_ERROR_XML(MOD_NAME, DATA) \ |
| 66 | {\ |
| 67 | struct lyd_node *tree; \ |
| 68 | const char *data = "<port xmlns=\"urn:tests:" MOD_NAME "\">" DATA "</port>"; \ |
| 69 | CHECK_PARSE_LYD_PARAM(data, LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); \ |
| 70 | assert_null(tree); \ |
| 71 | } |
| 72 | |
| 73 | #define TEST_ERROR_JSON(MOD_NAME, DATA) \ |
| 74 | { \ |
| 75 | struct lyd_node *tree; \ |
| 76 | const char *data = "{\"" MOD_NAME ":port\":" DATA "}"; \ |
| 77 | CHECK_PARSE_LYD_PARAM(data, LYD_JSON, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); \ |
| 78 | assert_null(tree); \ |
| 79 | } |
| 80 | |
| 81 | static void |
| 82 | test_schema_yang(void **state) |
| 83 | { |
| 84 | const char *schema; |
| 85 | const struct lys_module *mod; |
| 86 | struct lysc_node_leaf *lysc_leaf; |
| 87 | struct lysp_node_leaf *lysp_leaf; |
| 88 | struct lysc_range *range; |
| 89 | |
| 90 | schema = MODULE_CREATE_YANG("T0", "leaf port {type int8 {" |
| 91 | "range \"0 .. 50 | 127\"{" |
| 92 | "description \"description test\";" |
| 93 | "error-app-tag \"err-apt-tag\";" |
| 94 | "error-message \"error message\";}}}"); |
| 95 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); |
| 96 | assert_non_null(mod); |
| 97 | lysc_leaf = (void *)mod->compiled->data; |
| 98 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 99 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_INT8, 0, 1); |
| 100 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 101 | CHECK_LYSC_RANGE(range, "description test", "err-apt-tag", "error message", 0, 2, NULL); |
| 102 | lysp_leaf = (void *)mod->parsed->data; |
| 103 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 104 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "int8", 0, 0, 1, 1, 0, 0); |
| 105 | CHECK_LYSP_RESTR(lysp_leaf->type.range, "0 .. 50 | 127", "description test", "err-apt-tag", "error message", 0, NULL); |
| 106 | |
| 107 | /* heredity */ |
| 108 | schema = MODULE_CREATE_YANG("T1", "typedef my_type {type uint16 {" |
| 109 | "range \"0 .. 100\"{" |
| 110 | "description \"percentage\";" |
| 111 | "error-app-tag \"err-apt-tag\";" |
| 112 | "error-message \"error message\";}}}" |
| 113 | "leaf port {type my_type;}"); |
| 114 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); |
| 115 | assert_non_null(mod); |
| 116 | lysc_leaf = (void *)mod->compiled->data; |
| 117 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 118 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_UINT16, 0, 1); |
| 119 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 120 | CHECK_LYSC_RANGE(range, "percentage", "err-apt-tag", "error message", 0, 1, NULL); |
| 121 | lysp_leaf = (void *)mod->parsed->data; |
| 122 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 123 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x0, 0, 0, "my_type", 0, 0, 1, 0, 0, 0); |
| 124 | |
| 125 | /* heredity new range */ |
| 126 | schema = MODULE_CREATE_YANG("T2", "typedef my_type {type uint16 {" |
| 127 | "range \"0 .. 100\"{" |
| 128 | "description \"percentage\";" |
| 129 | "error-app-tag \"err-apt-tag\";" |
| 130 | "error-message \"error message\";}}}" |
| 131 | "leaf port {type my_type{range \"0 .. 20\";}}"); |
| 132 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); |
| 133 | assert_non_null(mod); |
| 134 | lysc_leaf = (void *)mod->compiled->data; |
| 135 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 136 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_UINT16, 0, 1); |
| 137 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 138 | CHECK_LYSC_RANGE(range, NULL, NULL, NULL, 0, 1, NULL); |
| 139 | lysp_leaf = (void *)mod->parsed->data; |
| 140 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 141 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "my_type", 0, 0, 1, 1, 0, 0); |
| 142 | |
| 143 | /* change */ |
| 144 | schema = MODULE_CREATE_YANG("T3", "typedef my_type {type uint16 {" |
| 145 | "range \"0 .. 100\"{" |
| 146 | "description \"percentage\";" |
| 147 | "error-app-tag \"err-apt-tag\";" |
| 148 | "error-message \"error message\";}}}" |
| 149 | "leaf port {type my_type{" |
| 150 | " range \"0 .. 50\"{" |
| 151 | " description \"description 0-50\";" |
| 152 | " error-app-tag \"err-apt-tag 0-50\";" |
| 153 | " error-message \"error message 0-50\";}}" |
| 154 | "}"); |
| 155 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); |
| 156 | assert_non_null(mod); |
| 157 | lysc_leaf = (void *)mod->compiled->data; |
| 158 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 159 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_UINT16, 0, 1); |
| 160 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 161 | CHECK_LYSC_RANGE(range, "description 0-50", "err-apt-tag 0-50", "error message 0-50", 0, 1, NULL); |
| 162 | lysp_leaf = (void *)mod->parsed->data; |
| 163 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 164 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "my_type", 0, 0, 1, 1, 0, 0); |
| 165 | CHECK_LYSP_RESTR(lysp_leaf->type.range, "0 .. 50", "description 0-50", "err-apt-tag 0-50", "error message 0-50", 0, NULL); |
| 166 | |
| 167 | } |
| 168 | |
| 169 | static void |
| 170 | test_schema_yin(void **state) |
| 171 | { |
| 172 | const char *schema; |
| 173 | const struct lys_module *mod; |
| 174 | struct lysc_node_leaf *lysc_leaf; |
| 175 | struct lysp_node_leaf *lysp_leaf; |
| 176 | struct lysc_range *range; |
| 177 | |
| 178 | schema = MODULE_CREATE_YIN("T0", "<leaf name=\"port\">" |
| 179 | "<type name=\"int64\">" |
| 180 | "<range value = \"0 .. 50 | 256\">" |
| 181 | " <description>" |
| 182 | " <text>desc</text>\n" |
| 183 | " </description>\n" |
| 184 | "<error-app-tag value=\"text < tag\"/>" |
| 185 | " <error-message>" |
| 186 | " <value>yin error message <</value>\n" |
| 187 | " </error-message>\n" |
| 188 | "</range>" |
| 189 | "</type>" |
| 190 | "</leaf>"); |
| 191 | UTEST_ADD_MODULE(schema, LYS_IN_YIN, NULL, &mod); |
| 192 | assert_non_null(mod); |
| 193 | lysc_leaf = (void *)mod->compiled->data; |
| 194 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 195 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_INT64, 0, 1); |
| 196 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 197 | CHECK_LYSC_RANGE(range, "desc", "text < tag", "yin error message <", 0, 2, NULL); |
| 198 | lysp_leaf = (void *)mod->parsed->data; |
| 199 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 200 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "int64", 0, 0, 1, 1, 0, 0); |
| 201 | CHECK_LYSP_RESTR(lysp_leaf->type.range, "0 .. 50 | 256", "desc", "text < tag", "yin error message <", 0, NULL); |
| 202 | |
| 203 | /* heredity */ |
| 204 | schema = MODULE_CREATE_YIN("T1", "<typedef name=\"my_type\">" |
| 205 | "<type name=\"int16\">" |
| 206 | "<range value = \"0 .. 50\">" |
| 207 | " <description>" |
| 208 | " <text>percentage</text>\n" |
| 209 | " </description>\n" |
| 210 | "<error-app-tag value=\"text < tag\"/>" |
| 211 | " <error-message>" |
| 212 | " <value>yin error message <</value>\n" |
| 213 | " </error-message>\n" |
| 214 | "</range>" |
| 215 | "</type>" |
| 216 | "</typedef>" |
| 217 | "<leaf name=\"port\"> <type name=\"my_type\"/> </leaf>"); |
| 218 | |
| 219 | UTEST_ADD_MODULE(schema, LYS_IN_YIN, NULL, &mod); |
| 220 | assert_non_null(mod); |
| 221 | lysc_leaf = (void *)mod->compiled->data; |
| 222 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 223 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_INT16, 0, 1); |
| 224 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 225 | CHECK_LYSC_RANGE(range, "percentage", "text < tag", "yin error message <", 0, 1, NULL); |
| 226 | lysp_leaf = (void *)mod->parsed->data; |
| 227 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 228 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x0, 0, 0, "my_type", 0, 0, 1, 0, 0, 0); |
| 229 | |
| 230 | /* heredity new range */ |
| 231 | schema = MODULE_CREATE_YIN("T2", "<typedef name=\"my_type\">" |
| 232 | "<type name=\"int32\">" |
| 233 | "<range value = \"0 .. 100\">" |
| 234 | " <description>" |
| 235 | " <text>percentage</text>\n" |
| 236 | " </description>\n" |
| 237 | " <error-app-tag value=\"text < tag\"/>" |
| 238 | " <error-message>" |
| 239 | " <value>yin error message <</value>\n" |
| 240 | " </error-message>\n" |
| 241 | " </range>" |
| 242 | " </type>" |
| 243 | "</typedef>" |
| 244 | "<leaf name=\"port\"> <type name=\"my_type\">" |
| 245 | " <range value = \"0 .. 50\"/>" |
| 246 | "</type></leaf>"); |
| 247 | |
| 248 | UTEST_ADD_MODULE(schema, LYS_IN_YIN, NULL, &mod); |
| 249 | assert_non_null(mod); |
| 250 | lysc_leaf = (void *)mod->compiled->data; |
| 251 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 252 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_INT32, 0, 1); |
| 253 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 254 | CHECK_LYSC_RANGE(range, NULL, NULL, NULL, 0, 1, NULL); |
| 255 | lysp_leaf = (void *)mod->parsed->data; |
| 256 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 257 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "my_type", 0, 0, 1, 1, 0, 0); |
| 258 | |
| 259 | /* change */ |
| 260 | schema = MODULE_CREATE_YIN("T3", "<typedef name=\"my_type\">" |
| 261 | "<type name=\"int32\">" |
| 262 | "<range value = \"0 .. 100\">" |
| 263 | " <description>" |
| 264 | " <text>percentage</text>\n" |
| 265 | " </description>\n" |
| 266 | " <error-app-tag value=\"text < tag\"/>" |
| 267 | " <error-message>" |
| 268 | " <value>yin error message <</value>\n" |
| 269 | " </error-message>\n" |
| 270 | " </range>" |
| 271 | " </type>" |
| 272 | "</typedef>" |
| 273 | "<leaf name=\"port\"> <type name=\"my_type\">" |
| 274 | " <range value = \"0 .. 50\">" |
| 275 | " <description>" |
| 276 | " <text>percentage 0-50</text>\n" |
| 277 | " </description>\n" |
| 278 | " <error-app-tag value=\"text tag 0-50\"/>" |
| 279 | " <error-message>" |
| 280 | " <value>yin error message 0-50</value>\n" |
| 281 | " </error-message>\n" |
| 282 | " </range>" |
| 283 | "</type></leaf>"); |
| 284 | |
| 285 | UTEST_ADD_MODULE(schema, LYS_IN_YIN, NULL, &mod); |
| 286 | assert_non_null(mod); |
| 287 | lysc_leaf = (void *)mod->compiled->data; |
| 288 | CHECK_LYSC_NODE_LEAF(lysc_leaf, NULL, 0, 0x5, 1, "port", 0, 0, 0, NULL, 0, 0, NULL, NULL); |
| 289 | CHECK_LYSC_TYPE_NUM((struct lysc_type_num *)lysc_leaf->type, LY_TYPE_INT32, 0, 1); |
| 290 | range = ((struct lysc_type_num *)lysc_leaf->type)->range; |
| 291 | CHECK_LYSC_RANGE(range, "percentage 0-50", "text tag 0-50", "yin error message 0-50", 0, 1, NULL); |
| 292 | lysp_leaf = (void *)mod->parsed->data; |
| 293 | CHECK_LYSP_NODE_LEAF(lysp_leaf, NULL, 0, 0x0, 0, "port", 0, 0, NULL, 0, 0, NULL, NULL); |
| 294 | CHECK_LYSP_TYPE(&(lysp_leaf->type), 0, 0, 0, 0, 0, 0x80, 0, 0, "my_type", 0, 0, 1, 1, 0, 0); |
| 295 | CHECK_LYSP_RESTR(lysp_leaf->type.range, "0 .. 50", "percentage 0-50", "text tag 0-50", "yin error message 0-50", 0, NULL); |
| 296 | |
| 297 | } |
| 298 | |
| 299 | static void |
| 300 | test_schema_print(void **state) |
| 301 | { |
| 302 | const char *schema_yang, *schema_yin; |
| 303 | char *printed; |
| 304 | const struct lys_module *mod; |
| 305 | |
| 306 | /* test print yang to yin */ |
| 307 | schema_yang = MODULE_CREATE_YANG("PRINT0", "leaf port {type int32 {" |
| 308 | "range \"0 .. 50\"{" |
| 309 | "description \"desc < \";" |
| 310 | "error-app-tag \"err-apt-tag <\";" |
| 311 | "error-message \"error message <\";}}}"); |
| 312 | |
| 313 | schema_yin = MODULE_CREATE_YIN("PRINT0", |
| 314 | " <leaf name=\"port\">\n" |
| 315 | " <type name=\"int32\">\n" |
| 316 | " <range value=\"0 .. 50\">\n" |
| 317 | " <error-message>\n" |
| 318 | " <value>error message <</value>\n" |
| 319 | " </error-message>\n" |
| 320 | " <error-app-tag value=\"err-apt-tag <\"/>\n" |
| 321 | " <description>\n" |
| 322 | " <text>desc < </text>\n" |
| 323 | " </description>\n" |
| 324 | " </range>\n" |
| 325 | " </type>\n" |
| 326 | " </leaf>\n"); |
| 327 | |
| 328 | UTEST_ADD_MODULE(schema_yang, LYS_IN_YANG, NULL, &mod); |
| 329 | assert_non_null(mod); |
| 330 | assert_int_equal(LY_SUCCESS, lys_print_mem(&printed, mod, LYS_OUT_YIN, 0)); |
| 331 | assert_string_equal(printed, schema_yin); |
| 332 | free(printed); |
| 333 | |
| 334 | /* test print yin to yang */ |
| 335 | schema_yang = MODULE_CREATE_YANG("PRINT1", |
| 336 | " leaf port {\n" |
| 337 | " type int32 {\n" |
| 338 | " range \"0 .. 50\" {\n" |
| 339 | " error-message\n" |
| 340 | " \"error message <\";\n" |
| 341 | " error-app-tag \"err-apt-tag <\";\n" |
| 342 | " description\n" |
| 343 | " \"desc < \";\n" |
| 344 | " }\n" |
| 345 | " }\n" |
| 346 | " }\n"); |
| 347 | |
| 348 | schema_yin = MODULE_CREATE_YIN("PRINT1", |
| 349 | " <leaf name=\"port\">\n" |
| 350 | " <type name=\"int32\">\n" |
| 351 | " <range value=\"0 .. 50\">\n" |
| 352 | " <error-message>\n" |
| 353 | " <value>error message <</value>\n" |
| 354 | " </error-message>\n" |
| 355 | " <error-app-tag value=\"err-apt-tag <\"/>\n" |
| 356 | " <description>\n" |
| 357 | " <text>desc < </text>\n" |
| 358 | " </description>\n" |
| 359 | " </range>\n" |
| 360 | " </type>\n" |
| 361 | " </leaf>\n"); |
| 362 | |
| 363 | UTEST_ADD_MODULE(schema_yin, LYS_IN_YIN, NULL, &mod); |
| 364 | assert_non_null(mod); |
| 365 | assert_int_equal(LY_SUCCESS, lys_print_mem(&printed, mod, LYS_OUT_YANG, 0)); |
| 366 | assert_string_equal(printed, schema_yang); |
| 367 | free(printed); |
| 368 | } |
| 369 | |
| 370 | static void |
| 371 | test_data_xml(void **state) |
| 372 | { |
| 373 | const char *schema; |
| 374 | |
| 375 | /* xml test */ |
| 376 | schema = MODULE_CREATE_YANG("TRANGE_0", "leaf port {type int8 {" |
| 377 | "range \"0 .. 50 | 126\"{" |
| 378 | "description \"description test\";" |
| 379 | "error-app-tag \"err-apt-tag\";" |
| 380 | "error-message \"error message\";}}}"); |
| 381 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); |
| 382 | |
| 383 | /* test success */ |
| 384 | TEST_SUCCESS_XML("TRANGE_0", "126", INT8, "126", 126); |
| 385 | /* test print error */ |
| 386 | TEST_ERROR_XML("TRANGE_0", "-1"); |
| 387 | CHECK_LOG_CTX("error message", |
| 388 | "Schema location /TRANGE_0:port, line number 1."); |
| 389 | TEST_ERROR_XML("TRANGE_0", "51"); |
| 390 | CHECK_LOG_CTX("error message", |
| 391 | "Schema location /TRANGE_0:port, line number 1."); |
| 392 | TEST_ERROR_XML("TRANGE_0", "127"); |
| 393 | CHECK_LOG_CTX("error message", |
| 394 | "Schema location /TRANGE_0:port, line number 1."); |
| 395 | |
| 396 | /* xml test */ |
| 397 | schema = MODULE_CREATE_YANG("TRANGE_1", "leaf port {type uint8 {" |
| 398 | "range \"30 .. 50 | 126\"{" |
| 399 | "description \"description test\";" |
| 400 | "error-app-tag \"err-apt-tag\";" |
| 401 | "error-message \"error message\";}}}"); |
| 402 | UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); |
| 403 | |
| 404 | /* test success */ |
| 405 | TEST_SUCCESS_XML("TRANGE_1", "126", UINT8, "126", 126); |
| 406 | /* test print error */ |
| 407 | TEST_ERROR_XML("TRANGE_1", "0"); |
| 408 | CHECK_LOG_CTX("error message", |
| 409 | "Schema location /TRANGE_1:port, line number 1."); |
| 410 | TEST_ERROR_XML("TRANGE_1", "51"); |
| 411 | CHECK_LOG_CTX("error message", |
| 412 | "Schema location /TRANGE_1:port, line number 1."); |
| 413 | TEST_ERROR_XML("TRANGE_1", "127"); |
| 414 | CHECK_LOG_CTX("error message", |
| 415 | "Schema location /TRANGE_1:port, line number 1."); |
| 416 | |
| 417 | } |
| 418 | |
| 419 | int |
| 420 | main(void) |
| 421 | { |
| 422 | const struct CMUnitTest tests[] = { |
| 423 | UTEST(test_schema_yang), |
| 424 | UTEST(test_schema_yin), |
| 425 | UTEST(test_schema_print), |
| 426 | UTEST(test_data_xml), |
| 427 | }; |
| 428 | |
| 429 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 430 | } |