Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 1 | /* |
aPiecek | 023f83a | 2021-05-11 07:37:03 +0200 | [diff] [blame] | 2 | * @file test_schema_common.c |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 3 | * @author: Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief unit tests for functions from common.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 | */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 14 | #include "test_schema.h" |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 15 | |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 16 | #include <string.h> |
| 17 | |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 18 | #include "compat.h" |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 19 | #include "context.h" |
| 20 | #include "log.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 21 | #include "tree_edit.h" |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 22 | #include "tree_schema.h" |
| 23 | #include "tree_schema_internal.h" |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 24 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 25 | struct module_clb_list { |
| 26 | const char *name; |
| 27 | const char *data; |
| 28 | }; |
| 29 | |
| 30 | static LY_ERR |
| 31 | module_clb(const char *mod_name, const char *UNUSED(mod_rev), const char *submod_name, |
| 32 | const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format, |
| 33 | const char **module_data, void (**free_module_data)(void *model_data, void *user_data)) |
| 34 | { |
| 35 | struct module_clb_list *list = (struct module_clb_list *)user_data; |
| 36 | |
| 37 | for (unsigned int i = 0; list[i].data; i++) { |
| 38 | |
| 39 | if ((submod_name && !strcmp(list[i].name, submod_name)) || |
| 40 | (!submod_name && mod_name && !strcmp(list[i].name, mod_name))) { |
| 41 | *module_data = list[i].data; |
| 42 | *format = LYS_IN_YANG; |
| 43 | *free_module_data = NULL; |
| 44 | return LY_SUCCESS; |
| 45 | } |
| 46 | } |
| 47 | return LY_EINVAL; |
| 48 | } |
| 49 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 50 | void |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 51 | test_getnext(void **state) |
| 52 | { |
Michal Vasko | 4de7d07 | 2021-07-09 09:13:18 +0200 | [diff] [blame] | 53 | struct lys_module *mod; |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 54 | const struct lysc_node *node = NULL, *four; |
| 55 | const struct lysc_node_container *cont; |
| 56 | const struct lysc_action *rpc; |
| 57 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 58 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, "module a {yang-version 1.1; namespace urn:a;prefix a;" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 59 | "container a { container one {presence test;} leaf two {type string;} leaf-list three {type string;}" |
| 60 | " list four {config false;} choice x { leaf five {type string;} case y {leaf six {type string;}}}" |
| 61 | " anyxml seven; action eight {input {leaf eight-input {type string;}} output {leaf eight-output {type string;}}}" |
| 62 | " notification nine {leaf nine-data {type string;}}}" |
| 63 | "leaf b {type string;} leaf-list c {type string;} list d {config false;}" |
| 64 | "choice x { case empty-x { choice empty-xc { case nothing;}} leaf e {type string;} case y {leaf f {type string;}}} anyxml g;" |
| 65 | "rpc h {input {leaf h-input {type string;}} output {leaf h-output {type string;}}}" |
| 66 | "rpc i;" |
| 67 | "notification j {leaf i-data {type string;}}" |
| 68 | "notification k;}", LYS_IN_YANG, &mod)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 69 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 70 | assert_string_equal("a", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 71 | cont = (const struct lysc_node_container *)node; |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 72 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 73 | assert_string_equal("b", node->name); |
| 74 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 75 | assert_string_equal("c", node->name); |
| 76 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 77 | assert_string_equal("d", node->name); |
| 78 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 79 | assert_string_equal("e", node->name); |
| 80 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 81 | assert_string_equal("f", node->name); |
| 82 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 83 | assert_string_equal("g", node->name); |
| 84 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 85 | assert_string_equal("h", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 86 | rpc = (const struct lysc_action *)node; |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 87 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 88 | assert_string_equal("i", node->name); |
| 89 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 90 | assert_string_equal("j", node->name); |
| 91 | assert_non_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 92 | assert_string_equal("k", node->name); |
| 93 | assert_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
| 94 | /* Inside container */ |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 95 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 96 | assert_string_equal("one", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 97 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 98 | assert_string_equal("two", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 99 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 100 | assert_string_equal("three", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 101 | assert_non_null(node = four = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 102 | assert_string_equal("four", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 103 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 104 | assert_string_equal("five", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 105 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 106 | assert_string_equal("six", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 107 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 108 | assert_string_equal("seven", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 109 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 110 | assert_string_equal("eight", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 111 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 112 | assert_string_equal("nine", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 113 | assert_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 114 | /* Inside RPC */ |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 115 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)rpc, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 116 | assert_string_equal("h-input", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 117 | assert_null(node = lys_getnext(node, (const struct lysc_node *)rpc, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 118 | |
| 119 | /* options */ |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 120 | assert_non_null(node = lys_getnext(four, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_WITHCHOICE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 121 | assert_string_equal("x", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 122 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_WITHCHOICE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 123 | assert_string_equal("seven", node->name); |
| 124 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 125 | assert_non_null(node = lys_getnext(four, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_NOCHOICE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 126 | assert_string_equal("seven", node->name); |
| 127 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 128 | assert_non_null(node = lys_getnext(four, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_WITHCASE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 129 | assert_string_equal("five", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 130 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_WITHCASE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 131 | assert_string_equal("y", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 132 | assert_non_null(node = lys_getnext(node, (const struct lysc_node *)cont, mod->compiled, LYS_GETNEXT_WITHCASE)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 133 | assert_string_equal("seven", node->name); |
| 134 | |
| 135 | assert_non_null(node = lys_getnext(NULL, NULL, mod->compiled, LYS_GETNEXT_INTONPCONT)); |
| 136 | assert_string_equal("one", node->name); |
| 137 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 138 | assert_non_null(node = lys_getnext(NULL, (const struct lysc_node *)rpc, mod->compiled, LYS_GETNEXT_OUTPUT)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 139 | assert_string_equal("h-output", node->name); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 140 | assert_null(node = lys_getnext(node, (const struct lysc_node *)rpc, mod->compiled, LYS_GETNEXT_OUTPUT)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 141 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 142 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, "module c {namespace urn:c;prefix c; rpc c;}", LYS_IN_YANG, &mod)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 143 | assert_non_null(node = lys_getnext(NULL, NULL, mod->compiled, 0)); |
| 144 | assert_string_equal("c", node->name); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 145 | assert_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 146 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 147 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, "module d {namespace urn:d;prefix d; notification d;}", LYS_IN_YANG, &mod)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 148 | assert_non_null(node = lys_getnext(NULL, NULL, mod->compiled, 0)); |
| 149 | assert_string_equal("d", node->name); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 150 | assert_null(node = lys_getnext(node, NULL, mod->compiled, 0)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 151 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 152 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, "module e {namespace urn:e;prefix e; container c {container cc;} leaf a {type string;}}", LYS_IN_YANG, &mod)); |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 153 | assert_non_null(node = lys_getnext(NULL, NULL, mod->compiled, 0)); |
| 154 | assert_string_equal("c", node->name); |
| 155 | assert_non_null(node = lys_getnext(NULL, NULL, mod->compiled, LYS_GETNEXT_INTONPCONT)); |
| 156 | assert_string_equal("a", node->name); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 157 | } |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 158 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 159 | void |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 160 | test_date(void **state) |
| 161 | { |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 162 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, NULL, 0, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 163 | CHECK_LOG("Invalid argument date (lysp_check_date()).", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 164 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "x", 1, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 165 | CHECK_LOG("Invalid argument date_len (lysp_check_date()).", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 166 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "nonsencexx", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 167 | CHECK_LOG("Invalid value \"nonsencexx\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 168 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "123x-11-11", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 169 | CHECK_LOG("Invalid value \"123x-11-11\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 170 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-13-11", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 171 | CHECK_LOG("Invalid value \"2018-13-11\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 172 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-11-41", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 173 | CHECK_LOG("Invalid value \"2018-11-41\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 174 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02-29", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 175 | CHECK_LOG("Invalid value \"2018-02-29\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 176 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018.02-28", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 177 | CHECK_LOG("Invalid value \"2018.02-28\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 178 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02.28", 10, "date")); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 179 | CHECK_LOG("Invalid value \"2018-02.28\" of \"date\".", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 180 | |
| 181 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-11-11", 10, "date")); |
| 182 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-02-28", 10, "date")); |
| 183 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2016-02-29", 10, "date")); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 186 | void |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 187 | test_revisions(void **state) |
| 188 | { |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 189 | struct lysp_revision *revs = NULL, *rev; |
| 190 | |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 191 | /* no error, it just does nothing */ |
| 192 | lysp_sort_revisions(NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 193 | CHECK_LOG(NULL, NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 194 | |
| 195 | /* revisions are stored in wrong order - the newest is the last */ |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 196 | LY_ARRAY_NEW_RET(NULL, revs, rev, ); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 197 | strcpy(rev->date, "2018-01-01"); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 198 | LY_ARRAY_NEW_RET(NULL, revs, rev, ); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 199 | strcpy(rev->date, "2018-12-31"); |
| 200 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 201 | assert_int_equal(2, LY_ARRAY_COUNT(revs)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 202 | assert_string_equal("2018-01-01", &revs[0]); |
| 203 | assert_string_equal("2018-12-31", &revs[1]); |
| 204 | /* the order should be fixed, so the newest revision will be the first in the array */ |
| 205 | lysp_sort_revisions(revs); |
| 206 | assert_string_equal("2018-12-31", &revs[0]); |
| 207 | assert_string_equal("2018-01-01", &revs[1]); |
| 208 | |
| 209 | LY_ARRAY_FREE(revs); |
| 210 | } |
| 211 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 212 | void |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 213 | test_collision_typedef(void **state) |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 214 | { |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 215 | const char *str; |
aPiecek | 28afeef | 2021-06-30 07:57:18 +0200 | [diff] [blame] | 216 | char *submod; |
| 217 | struct module_clb_list list[3] = {0}; |
| 218 | |
| 219 | list[0].name = "asub"; |
| 220 | list[1].name = "bsub"; |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 221 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 222 | /* collision with a built-in type */ |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 223 | str = "module a {namespace urn:a; prefix a; typedef binary {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 224 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 225 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 226 | "Duplicate identifier \"binary\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 227 | str = "module a {namespace urn:a; prefix a; typedef bits {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 228 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 229 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 230 | "Duplicate identifier \"bits\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 231 | str = "module a {namespace urn:a; prefix a; typedef boolean {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 232 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 233 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 234 | "Duplicate identifier \"boolean\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 235 | str = "module a {namespace urn:a; prefix a; typedef decimal64 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 236 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 237 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 238 | "Duplicate identifier \"decimal64\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 239 | str = "module a {namespace urn:a; prefix a; typedef empty {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 240 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 241 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 242 | "Duplicate identifier \"empty\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 243 | str = "module a {namespace urn:a; prefix a; typedef enumeration {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 244 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 245 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 246 | "Duplicate identifier \"enumeration\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 247 | str = "module a {namespace urn:a; prefix a; typedef int8 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 248 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 249 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 250 | "Duplicate identifier \"int8\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 251 | str = "module a {namespace urn:a; prefix a; typedef int16 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 252 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 253 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 254 | "Duplicate identifier \"int16\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 255 | str = "module a {namespace urn:a; prefix a; typedef int32 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 256 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 257 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 258 | "Duplicate identifier \"int32\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 259 | str = "module a {namespace urn:a; prefix a; typedef int64 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 260 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 261 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 262 | "Duplicate identifier \"int64\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 263 | str = "module a {namespace urn:a; prefix a; typedef instance-identifier {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 264 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 265 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 266 | "Duplicate identifier \"instance-identifier\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 267 | str = "module a {namespace urn:a; prefix a; typedef identityref {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 268 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 269 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 270 | "Duplicate identifier \"identityref\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 271 | str = "module a {namespace urn:a; prefix a; typedef leafref {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 272 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 273 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 274 | "Duplicate identifier \"leafref\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 275 | str = "module a {namespace urn:a; prefix a; typedef string {type int8;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 276 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 277 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 278 | "Duplicate identifier \"string\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 279 | str = "module a {namespace urn:a; prefix a; typedef union {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 280 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 281 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 282 | "Duplicate identifier \"union\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 283 | str = "module a {namespace urn:a; prefix a; typedef uint8 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 284 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 285 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 286 | "Duplicate identifier \"uint8\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 287 | str = "module a {namespace urn:a; prefix a; typedef uint16 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 288 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 289 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 290 | "Duplicate identifier \"uint16\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 291 | str = "module a {namespace urn:a; prefix a; typedef uint32 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 292 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 293 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 294 | "Duplicate identifier \"uint32\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 295 | str = "module a {namespace urn:a; prefix a; typedef uint64 {type string;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 296 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 297 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 298 | "Duplicate identifier \"uint64\" of typedef statement - name collision with a built-in type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 299 | |
| 300 | str = "module mytypes {namespace urn:types; prefix t; typedef binary_ {type string;} typedef bits_ {type string;} typedef boolean_ {type string;} " |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 301 | "typedef decimal64_ {type string;} typedef empty_ {type string;} typedef enumeration_ {type string;} typedef int8_ {type string;} typedef int16_ {type string;}" |
| 302 | "typedef int32_ {type string;} typedef int64_ {type string;} typedef instance-identifier_ {type string;} typedef identityref_ {type string;}" |
| 303 | "typedef leafref_ {type string;} typedef string_ {type int8;} typedef union_ {type string;} typedef uint8_ {type string;} typedef uint16_ {type string;}" |
| 304 | "typedef uint32_ {type string;} typedef uint64_ {type string;}}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 305 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 306 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 307 | /* collision in node's scope */ |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 308 | str = "module a {namespace urn:a; prefix a; container c {typedef y {type int8;} typedef y {type string;}}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 309 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 310 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 311 | "Duplicate identifier \"y\" of typedef statement - name collision with sibling type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 312 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 313 | /* collision with parent node */ |
| 314 | str = "module a {namespace urn:a; prefix a; container c {container d {typedef y {type int8;}} typedef y {type string;}}}"; |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 315 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 316 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 317 | "Duplicate identifier \"y\" of typedef statement - name collision with another scoped type.", NULL); |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 318 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 319 | /* collision with module's top-level */ |
| 320 | str = "module a {namespace urn:a; prefix a; typedef x {type string;} container c {typedef x {type int8;}}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 321 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 322 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 323 | "Duplicate identifier \"x\" of typedef statement - scoped type collide with a top-level type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 324 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 325 | /* collision of submodule's node with module's top-level */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 326 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} container c {typedef x {type string;}}}"); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 327 | str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 328 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 329 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 330 | "Duplicate identifier \"x\" of typedef statement - scoped type collide with a top-level type.", NULL); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 331 | |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 332 | /* collision of module's node with submodule's top-level */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 333 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type int8;}}"); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 334 | str = "module a {namespace urn:a; prefix a; include b; container c {typedef x {type string;}}}"; |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 335 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 336 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 337 | "Duplicate identifier \"x\" of typedef statement - scoped type collide with a top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 338 | |
| 339 | /* collision of submodule's node with another submodule's top-level */ |
aPiecek | 28afeef | 2021-06-30 07:57:18 +0200 | [diff] [blame] | 340 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 341 | list[0].data = "submodule asub {belongs-to a {prefix a;} typedef g {type int;}}"; |
| 342 | list[1].data = "submodule bsub {belongs-to a {prefix a;} container c {typedef g {type int;}}}"; |
| 343 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 344 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 345 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 346 | "Duplicate identifier \"g\" of typedef statement - scoped type collide with a top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 347 | |
| 348 | /* collision of module's top-levels */ |
| 349 | str = "module a {namespace urn:a; prefix a; typedef test {type string;} typedef test {type int8;}}"; |
| 350 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 351 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 352 | "Duplicate identifier \"test\" of typedef statement - name collision with another top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 353 | |
| 354 | /* collision of submodule's top-levels */ |
aPiecek | 28afeef | 2021-06-30 07:57:18 +0200 | [diff] [blame] | 355 | submod = "submodule asub {belongs-to a {prefix a;} typedef g {type int;} typedef g {type int;}}"; |
| 356 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub;}"; |
| 357 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 358 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 359 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 360 | "Duplicate identifier \"g\" of typedef statement - name collision with another top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 361 | |
| 362 | /* collision of module's top-level with submodule's top-levels */ |
| 363 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type string;}}"); |
| 364 | str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}"; |
| 365 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 366 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 367 | "Duplicate identifier \"x\" of typedef statement - name collision with another top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 368 | |
| 369 | /* collision of submodule's top-level with another submodule's top-levels */ |
aPiecek | 28afeef | 2021-06-30 07:57:18 +0200 | [diff] [blame] | 370 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 371 | list[0].data = "submodule asub {belongs-to a {prefix a;} typedef g {type int;}}"; |
| 372 | list[1].data = "submodule bsub {belongs-to a {prefix a;} typedef g {type int;}}"; |
| 373 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 374 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 375 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 376 | "Duplicate identifier \"g\" of typedef statement - name collision with another top-level type.", NULL); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 377 | |
| 378 | /* error in type-stmt */ |
| 379 | str = "module a {namespace urn:a; prefix a; container c {typedef x {type t{}}"; |
| 380 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 381 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 382 | "Unexpected end-of-input.", "Line number 1."); |
aPiecek | 4f49a14 | 2021-06-29 15:32:39 +0200 | [diff] [blame] | 383 | UTEST_LOG_CLEAN; |
| 384 | |
| 385 | /* no collision if the same names are in different scope */ |
aPiecek | 28afeef | 2021-06-30 07:57:18 +0200 | [diff] [blame] | 386 | str = "module a {yang-version 1.1; namespace urn:a; prefix a;" |
| 387 | "container c {typedef g {type int;}} container d {typedef g {type int;}}}"; |
| 388 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 389 | } |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 390 | |
| 391 | void |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 392 | test_collision_grouping(void **state) |
| 393 | { |
| 394 | const char *str; |
| 395 | char *submod; |
| 396 | struct module_clb_list list[3] = {0}; |
| 397 | |
| 398 | list[0].name = "asub"; |
| 399 | list[1].name = "bsub"; |
| 400 | |
| 401 | /* collision in node's scope */ |
| 402 | str = "module a {namespace urn:a; prefix a; container c {grouping y; grouping y;}}"; |
| 403 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 404 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 405 | "Duplicate identifier \"y\" of grouping statement - name collision with sibling grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 406 | |
| 407 | /* collision with parent node */ |
| 408 | str = "module a {namespace urn:a; prefix a; container c {container d {grouping y;} grouping y;}}"; |
| 409 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 410 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 411 | "Duplicate identifier \"y\" of grouping statement - name collision with another scoped grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 412 | |
| 413 | /* collision with module's top-level */ |
| 414 | str = "module a {namespace urn:a; prefix a; grouping x; container c {grouping x;}}"; |
| 415 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 416 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 417 | "Duplicate identifier \"x\" of grouping statement - scoped grouping collide with a top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 418 | |
| 419 | /* collision of submodule's node with module's top-level */ |
| 420 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} container c {grouping x;}}"); |
| 421 | str = "module a {namespace urn:a; prefix a; include b; grouping x;}"; |
| 422 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 423 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 424 | "Duplicate identifier \"x\" of grouping statement - scoped grouping collide with a top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 425 | |
| 426 | /* collision of module's node with submodule's top-level */ |
| 427 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} grouping x;}"); |
| 428 | str = "module a {namespace urn:a; prefix a; include b; container c {grouping x;}}"; |
| 429 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 430 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 431 | "Duplicate identifier \"x\" of grouping statement - scoped grouping collide with a top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 432 | |
| 433 | /* collision of submodule's node with another submodule's top-level */ |
| 434 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 435 | list[0].data = "submodule asub {belongs-to a {prefix a;} grouping g;}"; |
| 436 | list[1].data = "submodule bsub {belongs-to a {prefix a;} container c {grouping g;}}"; |
| 437 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 438 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 439 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 440 | "Duplicate identifier \"g\" of grouping statement - scoped grouping collide with a top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 441 | |
| 442 | /* collision of module's top-levels */ |
| 443 | str = "module a {namespace urn:a; prefix a; grouping test; grouping test;}"; |
| 444 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 445 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 446 | "Duplicate identifier \"test\" of grouping statement - name collision with another top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 447 | |
| 448 | /* collision of submodule's top-levels */ |
| 449 | submod = "submodule asub {belongs-to a {prefix a;} grouping g; grouping g;}"; |
| 450 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub;}"; |
| 451 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 452 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 453 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 454 | "Duplicate identifier \"g\" of grouping statement - name collision with another top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 455 | |
| 456 | /* collision of module's top-level with submodule's top-levels */ |
| 457 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, "submodule b {belongs-to a {prefix a;} grouping x;}"); |
| 458 | str = "module a {namespace urn:a; prefix a; include b; grouping x;}"; |
| 459 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 460 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 461 | "Duplicate identifier \"x\" of grouping statement - name collision with another top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 462 | |
| 463 | /* collision of submodule's top-level with another submodule's top-levels */ |
| 464 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 465 | list[0].data = "submodule asub {belongs-to a {prefix a;} grouping g;}"; |
| 466 | list[1].data = "submodule bsub {belongs-to a {prefix a;} grouping g;}"; |
| 467 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 468 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 469 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 470 | "Duplicate identifier \"g\" of grouping statement - name collision with another top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 471 | |
| 472 | /* collision in nested groupings, top-level */ |
| 473 | str = "module a {namespace urn:a; prefix a; grouping g {grouping g;}}"; |
| 474 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 475 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 476 | "Duplicate identifier \"g\" of grouping statement - scoped grouping collide with a top-level grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 477 | |
| 478 | /* collision in nested groupings, in node */ |
| 479 | str = "module a {namespace urn:a; prefix a; container c {grouping g {grouping g;}}}"; |
| 480 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 481 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 482 | "Duplicate identifier \"g\" of grouping statement - name collision with another scoped grouping.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 483 | |
| 484 | /* no collision if the same names are in different scope */ |
| 485 | str = "module a {yang-version 1.1; namespace urn:a; prefix a;" |
| 486 | "container c {grouping g;} container d {grouping g;}}"; |
| 487 | assert_int_equal(LY_SUCCESS, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
| 488 | } |
| 489 | |
| 490 | void |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 491 | test_collision_identity(void **state) |
| 492 | { |
| 493 | const char *str; |
| 494 | char *submod; |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 495 | struct module_clb_list list[3] = {0}; |
| 496 | |
| 497 | list[0].name = "asub"; |
| 498 | list[1].name = "bsub"; |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 499 | |
| 500 | /* collision of module's top-levels */ |
| 501 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; identity g; identity g;}"; |
| 502 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 503 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 504 | "Duplicate identifier \"g\" of identity statement - name collision with another top-level identity.", NULL); |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 505 | |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 506 | /* collision of submodule's top-levels */ |
| 507 | submod = "submodule asub {belongs-to a {prefix a;} identity g; identity g;}"; |
| 508 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub;}"; |
| 509 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 510 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 511 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 512 | "Duplicate identifier \"g\" of identity statement - name collision with another top-level identity.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 513 | |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 514 | /* collision of module's top-level with submodule's top-levels */ |
| 515 | submod = "submodule asub {belongs-to a {prefix a;} identity g;}"; |
| 516 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; identity g;}"; |
| 517 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 518 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 519 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 520 | "Duplicate identifier \"g\" of identity statement - name collision with another top-level identity.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 521 | |
| 522 | /* collision of submodule's top-level with another submodule's top-levels */ |
| 523 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 524 | list[0].data = "submodule asub {belongs-to a {prefix a;} identity g;}"; |
| 525 | list[1].data = "submodule bsub {belongs-to a {prefix a;} identity g;}"; |
| 526 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 527 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 528 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 529 | "Duplicate identifier \"g\" of identity statement - name collision with another top-level identity.", NULL); |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | void |
| 533 | test_collision_feature(void **state) |
| 534 | { |
| 535 | const char *str; |
| 536 | char *submod; |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 537 | struct module_clb_list list[3] = {0}; |
| 538 | |
| 539 | list[0].name = "asub"; |
| 540 | list[1].name = "bsub"; |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 541 | |
| 542 | /* collision of module's top-levels */ |
| 543 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; feature g; feature g;}"; |
| 544 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 545 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 546 | "Duplicate identifier \"g\" of feature statement - name collision with another top-level feature.", NULL); |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 547 | |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 548 | /* collision of submodule's top-levels */ |
| 549 | submod = "submodule asub {belongs-to a {prefix a;} feature g; feature g;}"; |
| 550 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub;}"; |
| 551 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 552 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 553 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 554 | "Duplicate identifier \"g\" of feature statement - name collision with another top-level feature.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 555 | |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 556 | /* collision of module's top-level with submodule's top-levels */ |
| 557 | submod = "submodule asub {belongs-to a {prefix a;} feature g;}"; |
| 558 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; feature g;}"; |
| 559 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, test_imp_clb, submod); |
| 560 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 561 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 562 | "Duplicate identifier \"g\" of feature statement - name collision with another top-level feature.", NULL); |
aPiecek | 0b36561 | 2021-06-30 13:12:58 +0200 | [diff] [blame] | 563 | |
| 564 | /* collision of submodule's top-level with another submodule's top-levels */ |
| 565 | str = "module a {yang-version 1.1; namespace urn:a; prefix a; include asub; include bsub;}"; |
| 566 | list[0].data = "submodule asub {belongs-to a {prefix a;} feature g;}"; |
| 567 | list[1].data = "submodule bsub {belongs-to a {prefix a;} feature g;}"; |
| 568 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 569 | assert_int_equal(LY_EVALID, lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL)); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 570 | CHECK_LOG_CTX("Parsing module \"a\" failed.", NULL, |
| 571 | "Duplicate identifier \"g\" of feature statement - name collision with another top-level feature.", NULL); |
aPiecek | 14d07f0 | 2021-06-30 09:46:50 +0200 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | void |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 575 | test_accessible_tree(void **state) |
| 576 | { |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 577 | const char *str; |
| 578 | |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 579 | /* config -> config */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 580 | str = "module a {\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 581 | " namespace urn:a;\n" |
| 582 | " prefix a;\n" |
| 583 | " container cont {\n" |
| 584 | " leaf l {\n" |
| 585 | " type empty;\n" |
| 586 | " }\n" |
| 587 | " }\n" |
| 588 | " container cont2 {\n" |
| 589 | " leaf l2 {\n" |
| 590 | " must ../../cont/l;\n" |
| 591 | " type leafref {\n" |
| 592 | " path /cont/l;\n" |
| 593 | " }\n" |
| 594 | " }\n" |
| 595 | " }\n" |
| 596 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 597 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 598 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 599 | |
| 600 | /* config -> state leafref */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 601 | str = "module b {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 602 | " namespace urn:b;\n" |
| 603 | " prefix b;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 604 | " container cont {\n" |
| 605 | " config false;\n" |
| 606 | " leaf l {\n" |
| 607 | " type empty;\n" |
| 608 | " }\n" |
| 609 | " }\n" |
| 610 | " container cont2 {\n" |
| 611 | " leaf l2 {\n" |
| 612 | " type leafref {\n" |
| 613 | " path /cont/l;\n" |
| 614 | " }\n" |
| 615 | " }\n" |
| 616 | " }\n" |
| 617 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 618 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
| 619 | CHECK_LOG_CTX("Invalid leafref path \"/cont/l\" - target is supposed to represent configuration data" |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 620 | " (as the leafref does), but it does not.", "Schema location \"/b:cont2/l2\"."); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 621 | |
| 622 | /* config -> state must */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 623 | str = "module b {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 624 | " namespace urn:b;\n" |
| 625 | " prefix b;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 626 | " container cont {\n" |
| 627 | " config false;\n" |
| 628 | " leaf l {\n" |
| 629 | " type empty;\n" |
| 630 | " }\n" |
| 631 | " }\n" |
| 632 | " container cont2 {\n" |
| 633 | " leaf l2 {\n" |
| 634 | " must ../../cont/l;\n" |
| 635 | " type empty;\n" |
| 636 | " }\n" |
| 637 | " }\n" |
| 638 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 639 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 640 | CHECK_LOG_CTX("Schema node \"cont\" for parent \"<config-root>\" not found; in expr \"../../cont\" " |
| 641 | "with context node \"/b:cont2/l2\".", NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 642 | |
| 643 | /* state -> config */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 644 | str = "module c {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 645 | " namespace urn:c;\n" |
| 646 | " prefix c;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 647 | " container cont {\n" |
| 648 | " leaf l {\n" |
| 649 | " type empty;\n" |
| 650 | " }\n" |
| 651 | " }\n" |
| 652 | " container cont2 {\n" |
| 653 | " config false;\n" |
| 654 | " leaf l2 {\n" |
| 655 | " must ../../cont/l;\n" |
| 656 | " type leafref {\n" |
| 657 | " path /cont/l;\n" |
| 658 | " }\n" |
| 659 | " }\n" |
| 660 | " }\n" |
| 661 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 662 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 663 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 664 | |
| 665 | /* notif -> state */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 666 | str = "module d {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 667 | " namespace urn:d;\n" |
| 668 | " prefix d;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 669 | " container cont {\n" |
| 670 | " config false;\n" |
| 671 | " leaf l {\n" |
| 672 | " type empty;\n" |
| 673 | " }\n" |
| 674 | " }\n" |
| 675 | " notification notif {\n" |
| 676 | " leaf l2 {\n" |
| 677 | " must ../../cont/l;\n" |
| 678 | " type leafref {\n" |
| 679 | " path /cont/l;\n" |
| 680 | " }\n" |
| 681 | " }\n" |
| 682 | " }\n" |
| 683 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 684 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 685 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 686 | |
| 687 | /* notif -> notif */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 688 | str = "module e {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 689 | " namespace urn:e;\n" |
| 690 | " prefix e;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 691 | " notification notif {\n" |
| 692 | " leaf l {\n" |
| 693 | " type empty;\n" |
| 694 | " }\n" |
| 695 | " leaf l2 {\n" |
| 696 | " must ../../notif/l;\n" |
| 697 | " type leafref {\n" |
| 698 | " path /notif/l;\n" |
| 699 | " }\n" |
| 700 | " }\n" |
| 701 | " }\n" |
| 702 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 703 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 704 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 705 | |
| 706 | /* rpc input -> state */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 707 | str = "module f {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 708 | " namespace urn:f;\n" |
| 709 | " prefix f;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 710 | " container cont {\n" |
| 711 | " config false;\n" |
| 712 | " leaf l {\n" |
| 713 | " type empty;\n" |
| 714 | " }\n" |
| 715 | " }\n" |
| 716 | " rpc rp {\n" |
| 717 | " input {\n" |
| 718 | " leaf l2 {\n" |
| 719 | " must ../../cont/l;\n" |
| 720 | " type leafref {\n" |
| 721 | " path /cont/l;\n" |
| 722 | " }\n" |
| 723 | " }\n" |
| 724 | " }\n" |
| 725 | " }\n" |
| 726 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 727 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 728 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 729 | |
| 730 | /* rpc input -> rpc input */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 731 | str = "module g {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 732 | " namespace urn:g;\n" |
| 733 | " prefix g;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 734 | " rpc rp {\n" |
| 735 | " input {\n" |
| 736 | " leaf l {\n" |
| 737 | " type empty;\n" |
| 738 | " }\n" |
| 739 | " leaf l2 {\n" |
| 740 | " must ../l;\n" |
| 741 | " type leafref {\n" |
| 742 | " path /rp/l;\n" |
| 743 | " }\n" |
| 744 | " }\n" |
| 745 | " }\n" |
| 746 | " }\n" |
| 747 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 748 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 749 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 750 | |
| 751 | /* rpc input -> rpc output leafref */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 752 | str = "module h {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 753 | " namespace urn:h;\n" |
| 754 | " prefix h;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 755 | " rpc rp {\n" |
| 756 | " input {\n" |
| 757 | " leaf l2 {\n" |
| 758 | " type leafref {\n" |
| 759 | " path /rp/l;\n" |
| 760 | " }\n" |
| 761 | " }\n" |
| 762 | " }\n" |
| 763 | " output {\n" |
| 764 | " leaf l {\n" |
| 765 | " type empty;\n" |
| 766 | " }\n" |
| 767 | " }\n" |
| 768 | " }\n" |
| 769 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 770 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 771 | CHECK_LOG_CTX("Not found node \"l\" in path.", "Schema location \"/h:rp/input/l2\"."); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 772 | |
| 773 | /* rpc input -> rpc output must */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 774 | str = "module h {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 775 | " namespace urn:h;\n" |
| 776 | " prefix h;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 777 | " rpc rp {\n" |
| 778 | " input {\n" |
| 779 | " leaf l2 {\n" |
| 780 | " must ../l;\n" |
| 781 | " type empty;\n" |
| 782 | " }\n" |
| 783 | " }\n" |
| 784 | " output {\n" |
| 785 | " leaf l {\n" |
| 786 | " type empty;\n" |
| 787 | " }\n" |
| 788 | " }\n" |
| 789 | " }\n" |
| 790 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 791 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 792 | CHECK_LOG_CTX("Schema node \"l\" for parent \"/h:rp\" not found; in expr \"../l\" with context node \"/h:rp/input/l2\".", NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 793 | |
| 794 | /* rpc input -> notif leafref */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 795 | str = "module i {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 796 | " namespace urn:i;\n" |
| 797 | " prefix i;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 798 | " rpc rp {\n" |
| 799 | " input {\n" |
| 800 | " leaf l2 {\n" |
| 801 | " type leafref {\n" |
| 802 | " path ../../notif/l;\n" |
| 803 | " }\n" |
| 804 | " }\n" |
| 805 | " }\n" |
| 806 | " }\n" |
| 807 | " notification notif {\n" |
| 808 | " leaf l {\n" |
| 809 | " type empty;\n" |
| 810 | " }\n" |
| 811 | " }\n" |
| 812 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 813 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 814 | CHECK_LOG_CTX("Not found node \"notif\" in path.", "Schema location \"/i:rp/input/l2\"."); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 815 | |
| 816 | /* rpc input -> notif must */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 817 | str = "module i {\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 818 | " namespace urn:i;\n" |
| 819 | " prefix i;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 820 | " rpc rp {\n" |
| 821 | " input {\n" |
| 822 | " leaf l2 {\n" |
| 823 | " must /notif/l;\n" |
| 824 | " type empty;\n" |
| 825 | " }\n" |
| 826 | " }\n" |
| 827 | " }\n" |
| 828 | " notification notif {\n" |
| 829 | " leaf l {\n" |
| 830 | " type empty;\n" |
| 831 | " }\n" |
| 832 | " }\n" |
| 833 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 834 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 835 | CHECK_LOG_CTX("Schema node \"notif\" for parent \"<root>\" not found; in expr \"/notif\" " |
| 836 | "with context node \"/i:rp/input/l2\".", NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 837 | |
| 838 | /* action output -> state */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 839 | str = "module j {\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 840 | " yang-version 1.1;\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 841 | " namespace urn:j;\n" |
| 842 | " prefix j;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 843 | " container cont {\n" |
| 844 | " list ll {\n" |
| 845 | " key k;\n" |
| 846 | " leaf k {\n" |
| 847 | " type string;\n" |
| 848 | " }\n" |
| 849 | " action act {\n" |
| 850 | " output {\n" |
| 851 | " leaf l2 {\n" |
| 852 | " must /cont/l;\n" |
| 853 | " type leafref {\n" |
| 854 | " path ../../../l;\n" |
| 855 | " }\n" |
| 856 | " }\n" |
| 857 | " }\n" |
| 858 | " }\n" |
| 859 | " }\n" |
| 860 | " leaf l {\n" |
| 861 | " config false;\n" |
| 862 | " type empty;\n" |
| 863 | " }\n" |
| 864 | " }\n" |
| 865 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 866 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
| 867 | CHECK_LOG_CTX(NULL, NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 868 | |
| 869 | /* action output -> action input leafref */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 870 | str = "module k {\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 871 | " yang-version 1.1;\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 872 | " namespace urn:k;\n" |
| 873 | " prefix k;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 874 | " container cont {\n" |
| 875 | " list ll {\n" |
| 876 | " key k;\n" |
| 877 | " leaf k {\n" |
| 878 | " type string;\n" |
| 879 | " }\n" |
| 880 | " action act {\n" |
| 881 | " input {\n" |
| 882 | " leaf l {\n" |
| 883 | " type empty;\n" |
| 884 | " }\n" |
| 885 | " }\n" |
| 886 | " output {\n" |
| 887 | " leaf l2 {\n" |
| 888 | " type leafref {\n" |
| 889 | " path ../l;\n" |
| 890 | " }\n" |
| 891 | " }\n" |
| 892 | " }\n" |
| 893 | " }\n" |
| 894 | " }\n" |
| 895 | " }\n" |
| 896 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 897 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 898 | CHECK_LOG_CTX("Not found node \"l\" in path.", "Schema location \"/k:cont/ll/act/output/l2\"."); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 899 | |
| 900 | /* action output -> action input must */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 901 | str = "module k {\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 902 | " yang-version 1.1;\n" |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 903 | " namespace urn:k;\n" |
| 904 | " prefix k;\n" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 905 | " container cont {\n" |
| 906 | " list ll {\n" |
| 907 | " key k;\n" |
| 908 | " leaf k {\n" |
| 909 | " type string;\n" |
| 910 | " }\n" |
| 911 | " action act {\n" |
| 912 | " input {\n" |
| 913 | " leaf l {\n" |
| 914 | " type empty;\n" |
| 915 | " }\n" |
| 916 | " }\n" |
| 917 | " output {\n" |
| 918 | " leaf l2 {\n" |
| 919 | " must /cont/ll/act/l;\n" |
| 920 | " type empty;\n" |
| 921 | " }\n" |
| 922 | " }\n" |
| 923 | " }\n" |
| 924 | " }\n" |
| 925 | " }\n" |
| 926 | "}"; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 927 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_SUCCESS); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 928 | CHECK_LOG_CTX("Schema node \"l\" for parent \"/k:cont/ll/act\" not found; in expr \"/cont/ll/act/l\" " |
| 929 | "with context node \"/k:cont/ll/act/output/l2\".", NULL); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 930 | } |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 931 | |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 932 | void |
| 933 | test_includes(void **state) |
| 934 | { |
Michal Vasko | 4de7d07 | 2021-07-09 09:13:18 +0200 | [diff] [blame] | 935 | struct lys_module *mod; |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 936 | |
| 937 | { |
| 938 | /* YANG 1.0 - the missing include sub_a_two in main_a will be injected from sub_a_one */ |
| 939 | struct module_clb_list list[] = { |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 940 | {"main_a", "module main_a { namespace urn:test:main_a; prefix ma; include sub_a_one;}"}, |
| 941 | {"sub_a_one", "submodule sub_a_one { belongs-to main_a { prefix ma; } include sub_a_two;}"}, |
| 942 | {"sub_a_two", "submodule sub_a_two { belongs-to main_a { prefix ma; } }"}, |
| 943 | {NULL, NULL} |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 944 | }; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 945 | |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 946 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 947 | mod = ly_ctx_load_module(UTEST_LYCTX, "main_a", NULL, NULL); |
| 948 | assert_non_null(mod); |
| 949 | assert_int_equal(2, LY_ARRAY_COUNT(mod->parsed->includes)); |
| 950 | assert_true(mod->parsed->includes[1].injected); |
| 951 | } |
| 952 | |
| 953 | { |
| 954 | /* YANG 1.1 - the missing include sub_b_two in main_b is error */ |
| 955 | struct module_clb_list list[] = { |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 956 | {"main_b", "module main_b { yang-version 1.1; namespace urn:test:main_b; prefix mb; include sub_b_one;}"}, |
| 957 | {"sub_b_one", "submodule sub_b_one { yang-version 1.1; belongs-to main_b { prefix mb; } include sub_b_two;}"}, |
| 958 | {"sub_b_two", "submodule sub_b_two { yang-version 1.1; belongs-to main_b { prefix mb; } }"}, |
| 959 | {NULL, NULL} |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 960 | }; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 961 | |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 962 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 963 | mod = ly_ctx_load_module(UTEST_LYCTX, "main_b", NULL, NULL); |
| 964 | assert_null(mod); |
| 965 | CHECK_LOG_CTX("Loading \"main_b\" module failed.", NULL, |
| 966 | "Data model \"main_b\" not found in local searchdirs.", NULL, |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 967 | "Parsing module \"main_b\" failed.", NULL, |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 968 | "Including \"sub_b_one\" submodule into \"main_b\" failed.", NULL, |
| 969 | "Data model \"sub_b_one\" not found in local searchdirs.", NULL, |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 970 | "Parsing submodule \"sub_b_one\" failed.", NULL, |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 971 | "YANG 1.1 requires all submodules to be included from main module. But submodule \"sub_b_one\" includes " |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 972 | "submodule \"sub_b_two\" which is not included by main module \"main_b\".", NULL, |
| 973 | "YANG version 1.1 expects all includes in main module, includes in submodules (sub_b_one) are not necessary.", NULL); |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | { |
| 977 | /* YANG 1.1 - all includes are in main_c, includes in submodules are not necessary, so expect warning */ |
| 978 | struct module_clb_list list[] = { |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 979 | {"main_c", "module main_c { yang-version 1.1; namespace urn:test:main_c; prefix mc; include sub_c_one; include sub_c_two;}"}, |
| 980 | {"sub_c_one", "submodule sub_c_one { yang-version 1.1; belongs-to main_c { prefix mc; } include sub_c_two;}"}, |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 981 | {"sub_c_two", "submodule sub_c_two { yang-version 1.1; belongs-to main_c { prefix mc; } include sub_c_one;}"}, |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 982 | {NULL, NULL} |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 983 | }; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 984 | |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 985 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list); |
| 986 | mod = ly_ctx_load_module(UTEST_LYCTX, "main_c", NULL, NULL); |
| 987 | assert_non_null(mod); |
| 988 | assert_int_equal(2, LY_ARRAY_COUNT(mod->parsed->includes)); |
| 989 | assert_false(mod->parsed->includes[1].injected); |
| 990 | /* result is ok, but log includes the warning */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 991 | CHECK_LOG_CTX("YANG version 1.1 expects all includes in main module, includes in submodules (sub_c_two) are not necessary.", NULL); |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 992 | } |
| 993 | } |
Michal Vasko | ac4450e | 2021-11-09 13:53:40 +0100 | [diff] [blame] | 994 | |
| 995 | void |
| 996 | test_key_order(void **state) |
| 997 | { |
| 998 | struct lys_module *mod; |
| 999 | const struct lysc_node *node; |
| 1000 | |
| 1001 | struct module_clb_list list1[] = { |
| 1002 | {"a", "module a {" |
Michal Vasko | f9122a0 | 2021-11-09 14:01:04 +0100 | [diff] [blame] | 1003 | "yang-version 1.1;" |
| 1004 | "namespace urn:test:a;" |
| 1005 | "prefix a;" |
| 1006 | "list l {" |
| 1007 | " key \"k1 k2\";" |
| 1008 | " leaf k2 {type string;}" |
| 1009 | " leaf k1 {type string;}" |
| 1010 | "}" |
| 1011 | "}"}, |
Michal Vasko | ac4450e | 2021-11-09 13:53:40 +0100 | [diff] [blame] | 1012 | {NULL, NULL} |
| 1013 | }; |
Michal Vasko | f9122a0 | 2021-11-09 14:01:04 +0100 | [diff] [blame] | 1014 | |
Michal Vasko | ac4450e | 2021-11-09 13:53:40 +0100 | [diff] [blame] | 1015 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list1); |
| 1016 | mod = ly_ctx_load_module(UTEST_LYCTX, "a", NULL, NULL); |
| 1017 | assert_non_null(mod); |
| 1018 | |
| 1019 | node = lysc_node_child(mod->compiled->data); |
| 1020 | assert_string_equal("k1", node->name); |
| 1021 | node = node->next; |
| 1022 | assert_string_equal("k2", node->name); |
| 1023 | |
| 1024 | struct module_clb_list list2[] = { |
| 1025 | {"b", "module b {" |
Michal Vasko | f9122a0 | 2021-11-09 14:01:04 +0100 | [diff] [blame] | 1026 | "yang-version 1.1;" |
| 1027 | "namespace urn:test:b;" |
| 1028 | "prefix b;" |
| 1029 | "list l {" |
| 1030 | " key \"k1 k2 k3 k4\";" |
| 1031 | " leaf k4 {type string;}" |
| 1032 | " container c {" |
| 1033 | " leaf l1 {type string;}" |
| 1034 | " }" |
| 1035 | " leaf k2 {type string;}" |
| 1036 | " leaf l2 {type string;}" |
| 1037 | " leaf k1 {type string;}" |
| 1038 | " leaf k3 {type string;}" |
| 1039 | "}" |
| 1040 | "}"}, |
Michal Vasko | ac4450e | 2021-11-09 13:53:40 +0100 | [diff] [blame] | 1041 | {NULL, NULL} |
| 1042 | }; |
Michal Vasko | f9122a0 | 2021-11-09 14:01:04 +0100 | [diff] [blame] | 1043 | |
Michal Vasko | ac4450e | 2021-11-09 13:53:40 +0100 | [diff] [blame] | 1044 | ly_ctx_set_module_imp_clb(UTEST_LYCTX, module_clb, list2); |
| 1045 | mod = ly_ctx_load_module(UTEST_LYCTX, "b", NULL, NULL); |
| 1046 | assert_non_null(mod); |
| 1047 | |
| 1048 | node = lysc_node_child(mod->compiled->data); |
| 1049 | assert_string_equal("k1", node->name); |
| 1050 | node = node->next; |
| 1051 | assert_string_equal("k2", node->name); |
| 1052 | node = node->next; |
| 1053 | assert_string_equal("k3", node->name); |
| 1054 | node = node->next; |
| 1055 | assert_string_equal("k4", node->name); |
| 1056 | } |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 1057 | |
| 1058 | void |
| 1059 | test_disabled_enum(void **state) |
| 1060 | { |
| 1061 | const char *str; |
| 1062 | |
| 1063 | /* no enabled enum */ |
| 1064 | str = "module a {" |
| 1065 | "yang-version 1.1;" |
| 1066 | "namespace urn:test:a;" |
| 1067 | "prefix a;" |
| 1068 | "feature f;" |
| 1069 | "leaf l {type enumeration {" |
| 1070 | " enum e1 {if-feature f;}" |
| 1071 | " enum e2 {if-feature f;}" |
| 1072 | "}}" |
| 1073 | "}"; |
| 1074 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 1075 | CHECK_LOG_CTX("Enumeration type of node \"l\" without any (or all disabled) valid values.", "Schema location \"/a:l\"."); |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 1076 | |
| 1077 | /* disabled default value */ |
| 1078 | str = "module a {" |
| 1079 | "yang-version 1.1;" |
| 1080 | "namespace urn:test:a;" |
| 1081 | "prefix a;" |
| 1082 | "feature f;" |
| 1083 | "leaf l {" |
| 1084 | " type enumeration {" |
| 1085 | " enum e1 {if-feature f;}" |
| 1086 | " enum e2;" |
| 1087 | " }" |
| 1088 | " default e1;" |
| 1089 | "}" |
| 1090 | "}"; |
| 1091 | assert_int_equal(lys_parse_mem(UTEST_LYCTX, str, LYS_IN_YANG, NULL), LY_EVALID); |
| 1092 | CHECK_LOG_CTX("Invalid default - value does not fit the type (Invalid enumeration value \"e1\".).", |
Michal Vasko | 959f8d8 | 2022-06-16 07:51:50 +0200 | [diff] [blame] | 1093 | "Schema location \"/a:l\"."); |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 1094 | } |