Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file test_yang.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 5 | * @brief unit tests for YANG module parser and printer |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 6 | * |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 7 | * Copyright (c) 2018 - 2022 CESNET, z.s.p.o. |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 8 | * |
| 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * https://opensource.org/licenses/BSD-3-Clause |
| 14 | */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 15 | #define _UTEST_MAIN_ |
| 16 | #include "utests.h" |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 17 | |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 18 | #include <stdio.h> |
| 19 | #include <string.h> |
| 20 | |
Radek Krejci | 70593c1 | 2020-06-13 20:48:09 +0200 | [diff] [blame] | 21 | #include "common.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 22 | #include "in_internal.h" |
Radek Krejci | 70593c1 | 2020-06-13 20:48:09 +0200 | [diff] [blame] | 23 | #include "parser_internal.h" |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 24 | #include "schema_compile.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 25 | #include "tree_edit.h" |
Radek Krejci | 70593c1 | 2020-06-13 20:48:09 +0200 | [diff] [blame] | 26 | #include "tree_schema.h" |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 27 | #include "tree_schema_free.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 28 | |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 29 | /* originally static functions from parser_yang.c and parser_yin.c */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 30 | LY_ERR buf_add_char(struct ly_ctx *ctx, struct ly_in *in, size_t len, char **buf, size_t *buf_len, size_t *buf_used); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 31 | LY_ERR buf_store_char(struct lys_yang_parser_ctx *ctx, enum yang_arg arg, char **word_p, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 32 | size_t *word_len, char **word_b, size_t *buf_len, uint8_t need_buf, uint8_t *prefix); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 33 | LY_ERR get_keyword(struct lys_yang_parser_ctx *ctx, enum ly_stmt *kw, char **word_p, size_t *word_len); |
| 34 | LY_ERR get_argument(struct lys_yang_parser_ctx *ctx, enum yang_arg arg, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 35 | uint16_t *flags, char **word_p, char **word_b, size_t *word_len); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 36 | LY_ERR skip_comment(struct lys_yang_parser_ctx *ctx, uint8_t comment); |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 37 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 38 | LY_ERR parse_action(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node_action **actions); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 39 | LY_ERR parse_any(struct lys_yang_parser_ctx *ctx, enum ly_stmt kw, struct lysp_node *parent, struct lysp_node **siblings); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 40 | LY_ERR parse_augment(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node_augment **augments); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 41 | LY_ERR parse_case(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 42 | LY_ERR parse_container(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 43 | LY_ERR parse_deviate(struct lys_yang_parser_ctx *ctx, struct lysp_deviate **deviates); |
| 44 | LY_ERR parse_deviation(struct lys_yang_parser_ctx *ctx, struct lysp_deviation **deviations); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 45 | LY_ERR parse_grouping(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node_grp **groupings); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 46 | LY_ERR parse_choice(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 47 | LY_ERR parse_leaf(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 48 | LY_ERR parse_leaflist(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 49 | LY_ERR parse_list(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 50 | LY_ERR parse_maxelements(struct lys_yang_parser_ctx *ctx, uint32_t *max, uint16_t *flags, struct lysp_ext_instance **exts); |
| 51 | LY_ERR parse_minelements(struct lys_yang_parser_ctx *ctx, uint32_t *min, uint16_t *flags, struct lysp_ext_instance **exts); |
| 52 | LY_ERR parse_module(struct lys_yang_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 53 | LY_ERR parse_notif(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node_notif **notifs); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 54 | LY_ERR parse_submodule(struct lys_yang_parser_ctx *ctx, struct lysp_submodule *submod); |
| 55 | LY_ERR parse_uses(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings); |
| 56 | LY_ERR parse_when(struct lys_yang_parser_ctx *ctx, struct lysp_when **when_p); |
| 57 | LY_ERR parse_type_enum_value_pos(struct lys_yang_parser_ctx *ctx, enum ly_stmt val_kw, int64_t *value, uint16_t *flags, struct lysp_ext_instance **exts); |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 58 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 59 | struct lys_yang_parser_ctx *YCTX; |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 60 | struct lysf_ctx fctx; |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 61 | |
Radek Krejci | 1640e80 | 2021-01-08 11:01:30 +0100 | [diff] [blame] | 62 | struct ly_in in = {0}; |
| 63 | |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 64 | #define YCTX_INIT \ |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 65 | in.line = 1; \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 66 | YCTX->in = ∈ \ |
| 67 | LOG_LOCINIT(UTEST_LYCTX, NULL, NULL, NULL, &in) |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 68 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 69 | static int |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 70 | setup(void **state) |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 71 | { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 72 | struct lysp_module *pmod; |
| 73 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 74 | UTEST_SETUP; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 75 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 76 | /* allocate parser context */ |
| 77 | YCTX = calloc(1, sizeof(*YCTX)); |
| 78 | YCTX->format = LYS_IN_YANG; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 79 | ly_set_new(&YCTX->parsed_mods); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 80 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 81 | /* allocate new parsed module */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 82 | pmod = calloc(1, sizeof *pmod); |
| 83 | ly_set_add(YCTX->parsed_mods, pmod, 1, NULL); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 84 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 85 | /* allocate new module */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 86 | pmod->mod = calloc(1, sizeof *pmod->mod); |
| 87 | pmod->mod->ctx = UTEST_LYCTX; |
| 88 | pmod->mod->parsed = pmod; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 89 | |
Radek Krejci | 1640e80 | 2021-01-08 11:01:30 +0100 | [diff] [blame] | 90 | /* initilize and use the global easily available and customizable input handler */ |
| 91 | in.line = 1; |
| 92 | YCTX->in = ∈ |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 93 | LOG_LOCINIT(NULL, NULL, NULL, &in); |
Radek Krejci | 1640e80 | 2021-01-08 11:01:30 +0100 | [diff] [blame] | 94 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 95 | fctx.ctx = PARSER_CTX(YCTX); |
| 96 | fctx.mod = pmod->mod; |
| 97 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | static int |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 102 | teardown(void **state) |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 103 | { |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 104 | lys_module_free(&fctx, PARSER_CUR_PMOD(YCTX)->mod, 0); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 105 | LOG_LOCBACK(0, 0, 0, 1); |
Radek Krejci | 1640e80 | 2021-01-08 11:01:30 +0100 | [diff] [blame] | 106 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 107 | ly_set_free(YCTX->parsed_mods, NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 108 | free(YCTX); |
| 109 | YCTX = NULL; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 110 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 111 | lysf_ctx_erase(&fctx); |
| 112 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 113 | UTEST_TEARDOWN; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 114 | |
| 115 | return 0; |
| 116 | } |
| 117 | |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 118 | #define TEST_DUP_GENERIC(PREFIX, MEMBER, VALUE1, VALUE2, FUNC, RESULT, LINE, CLEANUP) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 119 | in.current = PREFIX MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 120 | assert_int_equal(LY_EVALID, FUNC(YCTX, RESULT)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 121 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number "LINE".");\ |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 122 | CLEANUP |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 123 | static void |
| 124 | test_helpers(void **state) |
| 125 | { |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 126 | char *buf, *p; |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 127 | size_t len, size; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 128 | uint8_t prefix = 0; |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 129 | |
| 130 | /* storing into buffer */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 131 | in.current = "abcd"; |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 132 | buf = NULL; |
| 133 | size = len = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 134 | assert_int_equal(LY_SUCCESS, buf_add_char(NULL, &in, 2, &buf, &size, &len)); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 135 | assert_int_not_equal(0, size); |
| 136 | assert_int_equal(2, len); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 137 | assert_string_equal("cd", in.current); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 138 | assert_false(strncmp("ab", buf, 2)); |
| 139 | free(buf); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 140 | buf = NULL; |
| 141 | |
| 142 | /* invalid first characters */ |
| 143 | len = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 144 | in.current = "2invalid"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 145 | assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 146 | in.current = ".invalid"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 147 | assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 148 | in.current = "-invalid"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 149 | assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 150 | /* invalid following characters */ |
| 151 | len = 3; /* number of characters read before the str content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 152 | in.current = "!"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 153 | assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 154 | in.current = ":"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 155 | assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 156 | /* valid colon for prefixed identifiers */ |
| 157 | len = size = 0; |
| 158 | p = NULL; |
David Sedlák | 40bb13b | 2019-07-10 14:34:18 +0200 | [diff] [blame] | 159 | prefix = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 160 | in.current = "x:id"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 161 | assert_int_equal(LY_SUCCESS, buf_store_char(YCTX, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 0, &prefix)); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 162 | assert_int_equal(1, len); |
| 163 | assert_null(buf); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 164 | assert_string_equal(":id", in.current); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 165 | assert_int_equal('x', p[len - 1]); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 166 | assert_int_equal(LY_SUCCESS, buf_store_char(YCTX, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix)); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 167 | assert_int_equal(2, len); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 168 | assert_string_equal("id", in.current); |
Radek Krejci | 404251e | 2018-10-09 12:06:44 +0200 | [diff] [blame] | 169 | assert_int_equal(':', p[len - 1]); |
| 170 | free(buf); |
David Sedlák | 40bb13b | 2019-07-10 14:34:18 +0200 | [diff] [blame] | 171 | prefix = 0; |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 172 | |
| 173 | /* checking identifiers */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 174 | assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, NULL)); |
| 175 | CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1."); |
| 176 | assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, '#', 1, NULL)); |
| 177 | CHECK_LOG_CTX("Invalid identifier first character '#' (0x0023).", "Line number 1."); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 178 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 179 | assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, 'a', 1, &prefix)); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 180 | assert_int_equal(0, prefix); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 181 | assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix)); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 182 | assert_int_equal(1, prefix); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 183 | assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix)); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 184 | assert_int_equal(1, prefix); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 185 | assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, 'b', 0, &prefix)); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 186 | assert_int_equal(2, prefix); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 187 | /* second colon is invalid */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 188 | assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix)); |
| 189 | CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1."); |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 190 | } |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 191 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 192 | #define TEST_GET_ARGUMENT_SUCCESS(INPUT_TEXT, CTX, ARG_TYPE, EXPECT_WORD, EXPECT_LEN, EXPECT_CURRENT, EXPECT_LINE)\ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 193 | {\ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 194 | const char * text = INPUT_TEXT;\ |
| 195 | in.line = 1;\ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 196 | in.current = text;\ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 197 | assert_int_equal(LY_SUCCESS, get_argument(CTX, Y_MAYBE_STR_ARG, NULL, &word, &buf, &len));\ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 198 | assert_string_equal(word, EXPECT_WORD);\ |
| 199 | assert_int_equal(len, EXPECT_LEN);\ |
| 200 | assert_string_equal(EXPECT_CURRENT, in.current);\ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 201 | assert_int_equal(EXPECT_LINE, in.line);\ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 202 | } |
| 203 | |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 204 | static void |
| 205 | test_comments(void **state) |
| 206 | { |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 207 | char *word, *buf; |
| 208 | size_t len; |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 209 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 210 | TEST_GET_ARGUMENT_SUCCESS(" // this is a text of / one * line */ comment\nargument;", |
| 211 | YCTX, Y_STR_ARG, "argument;", 8, ";", 2); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 212 | assert_null(buf); |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 213 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 214 | TEST_GET_ARGUMENT_SUCCESS("/* this is a \n * text // of / block * comment */\"arg\" + \"ume\" \n + \n \"nt\";", |
| 215 | YCTX, Y_STR_ARG, "argument", 8, ";", 4); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 216 | assert_ptr_equal(buf, word); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 217 | free(word); |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 218 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 219 | in.line = 1; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 220 | in.current = " this is one line comment on last line"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 221 | assert_int_equal(LY_SUCCESS, skip_comment(YCTX, 1)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 222 | assert_true(in.current[0] == '\0'); |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 223 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 224 | in.line = 1; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 225 | in.current = " this is a not terminated comment x"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 226 | assert_int_equal(LY_EVALID, skip_comment(YCTX, 2)); |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 227 | CHECK_LOG_CTX("Unexpected end-of-input, non-terminated comment.", "Line number 1."); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 228 | assert_true(in.current[0] == '\0'); |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 229 | } |
| 230 | |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 231 | static void |
| 232 | test_arg(void **state) |
| 233 | { |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 234 | char *word, *buf; |
| 235 | size_t len; |
| 236 | |
| 237 | /* missing argument */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 238 | in.current = ";"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 239 | assert_int_equal(LY_SUCCESS, get_argument(YCTX, Y_MAYBE_STR_ARG, NULL, &word, &buf, &len)); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 240 | assert_null(word); |
| 241 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 242 | in.current = "{"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 243 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 244 | CHECK_LOG_CTX("Invalid character sequence \"{\", expected an argument.", "Line number 1."); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 245 | |
Radek Krejci | fc62d7e | 2018-10-11 12:56:42 +0200 | [diff] [blame] | 246 | /* invalid escape sequence */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 247 | in.current = "\"\\s\""; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 248 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 249 | CHECK_LOG_CTX("Double-quoted string unknown special character \'\\s\'.", "Line number 1."); |
| 250 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 251 | TEST_GET_ARGUMENT_SUCCESS("\'\\s\'", YCTX, Y_STR_ARG, "\\s\'", 2, "", 1); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 252 | |
Radek Krejci | fc62d7e | 2018-10-11 12:56:42 +0200 | [diff] [blame] | 253 | /* invalid character after the argument */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 254 | in.current = "hello\""; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 255 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 256 | CHECK_LOG_CTX("Invalid character sequence \"\"\", expected unquoted string character, optsep, semicolon or opening brace.", "Line number 1."); |
Radek Krejci | fc62d7e | 2018-10-11 12:56:42 +0200 | [diff] [blame] | 257 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 258 | in.current = "hello}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 259 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 260 | CHECK_LOG_CTX("Invalid character sequence \"}\", expected unquoted string character, optsep, semicolon or opening brace.", "Line number 1."); |
David Sedlák | 40bb13b | 2019-07-10 14:34:18 +0200 | [diff] [blame] | 261 | /* invalid identifier-ref-arg-str */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 262 | in.current = "pre:pre:value"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 263 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 264 | CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1."); |
David Sedlák | 40bb13b | 2019-07-10 14:34:18 +0200 | [diff] [blame] | 265 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 266 | in.current = "\"\";"; /* empty identifier is not allowed */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 267 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_IDENTIF_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 268 | CHECK_LOG_CTX("Statement argument is required.", "Line number 1."); |
| 269 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 270 | in.current = "\"\";"; /* empty reference identifier is not allowed */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 271 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 272 | CHECK_LOG_CTX("Statement argument is required.", "Line number 1."); |
Radek Krejci | 4e199f5 | 2019-05-28 09:09:28 +0200 | [diff] [blame] | 273 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 274 | /* slash is not an invalid character */ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 275 | TEST_GET_ARGUMENT_SUCCESS("hello/x\t", YCTX, Y_STR_ARG, "hello/x\t", 7, "\t", 1); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 276 | assert_null(buf); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 277 | |
| 278 | /* different quoting */ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 279 | TEST_GET_ARGUMENT_SUCCESS("hello/x\t", YCTX, Y_STR_ARG, "hello/x\t", 7, "\t", 1); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 280 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 281 | TEST_GET_ARGUMENT_SUCCESS("hello ", YCTX, Y_STR_ARG, "hello ", 5, " ", 1); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 282 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 283 | TEST_GET_ARGUMENT_SUCCESS("hello/*comment*/\n", YCTX, Y_STR_ARG, "hello/*comment*/\n", 5, "\n", 1); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 284 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 285 | TEST_GET_ARGUMENT_SUCCESS("\"hello\\n\\t\\\"\\\\\";", YCTX, Y_STR_ARG, "hello\n\t\"\\", 9, ";", 1); |
fredgan | d49fe11 | 2019-10-21 20:51:50 +0800 | [diff] [blame] | 286 | free(buf); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 287 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 288 | YCTX->indent = 14; |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 289 | /* - space and tabs before newline are stripped out |
| 290 | * - space and tabs after newline (indentation) are stripped out |
| 291 | */ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 292 | TEST_GET_ARGUMENT_SUCCESS("\"hello \t\n\t\t world!\"", YCTX, Y_STR_ARG, "hello\n world!", 14, "", 2); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 293 | free(buf); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 294 | |
| 295 | /* In contrast to previous, the backslash-escaped tabs are expanded after trimming, so they are preserved */ |
| 296 | YCTX->indent = 14; |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 297 | TEST_GET_ARGUMENT_SUCCESS("\"hello \\t\n\t\\t world!\"", YCTX, Y_STR_ARG, "hello \t\n\t world!", 16, "", 2); |
Radek Krejci | ff13cd1 | 2019-10-25 15:34:24 +0200 | [diff] [blame] | 298 | assert_ptr_equal(word, buf); |
Radek Krejci | ff13cd1 | 2019-10-25 15:34:24 +0200 | [diff] [blame] | 299 | free(buf); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 300 | |
Radek Krejci | ff13cd1 | 2019-10-25 15:34:24 +0200 | [diff] [blame] | 301 | /* Do not handle whitespaces after backslash-escaped newline as indentation */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 302 | YCTX->indent = 14; |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 303 | TEST_GET_ARGUMENT_SUCCESS("\"hello\\n\t\t world!\"", YCTX, Y_STR_ARG, "hello\n\t\t world!", 15, "", 1); |
Radek Krejci | ff13cd1 | 2019-10-25 15:34:24 +0200 | [diff] [blame] | 304 | assert_ptr_equal(word, buf); |
Radek Krejci | ff13cd1 | 2019-10-25 15:34:24 +0200 | [diff] [blame] | 305 | free(buf); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 306 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 307 | YCTX->indent = 14; |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 308 | TEST_GET_ARGUMENT_SUCCESS("\"hello\n \tworld!\"", YCTX, Y_STR_ARG, "hello\nworld!", 12, "", 2); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 309 | assert_ptr_equal(word, buf); |
Radek Krejci | d5f2b5f | 2018-10-11 10:54:36 +0200 | [diff] [blame] | 310 | free(buf); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 311 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 312 | TEST_GET_ARGUMENT_SUCCESS("\'hello\'", YCTX, Y_STR_ARG, "hello'", 5, "", 1); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 313 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 314 | TEST_GET_ARGUMENT_SUCCESS("\"hel\" +\t\n\"lo\"", YCTX, Y_STR_ARG, "hello", 5, "", 2); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 315 | assert_ptr_equal(word, buf); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 316 | free(buf); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 317 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 318 | in.line = 1; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 319 | in.current = "\"hel\" +\t\nlo"; /* unquoted the second part */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 320 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 321 | CHECK_LOG_CTX("Both string parts divided by '+' must be quoted.", "Line number 2."); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 322 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 323 | TEST_GET_ARGUMENT_SUCCESS("\'he\'\t\n+ \"llo\"", YCTX, Y_STR_ARG, "hello", 5, "", 2); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 324 | free(buf); |
| 325 | |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 326 | TEST_GET_ARGUMENT_SUCCESS(" \t\n\"he\"+\'llo\'", YCTX, Y_STR_ARG, "hello", 5, "", 2); |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 327 | free(buf); |
| 328 | |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 329 | /* missing argument */ |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 330 | in.line = 1; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 331 | in.current = ";"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 332 | assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len)); |
Radek Krejci | dd713ce | 2021-01-04 23:12:12 +0100 | [diff] [blame] | 333 | CHECK_LOG_CTX("Invalid character sequence \";\", expected an argument.", "Line number 1."); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 334 | } |
| 335 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 336 | #define TEST_STMS_SUCCESS(INPUT_TEXT, CTX, ACTION, EXPECT_WORD)\ |
| 337 | in.current = INPUT_TEXT;\ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 338 | assert_int_equal(LY_SUCCESS, get_keyword(CTX, &kw, &word, &len));\ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 339 | assert_int_equal(ACTION, kw);\ |
| 340 | assert_int_equal(strlen(EXPECT_WORD), len);\ |
| 341 | assert_true(0 == strncmp(EXPECT_WORD, word, len)) |
| 342 | |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 343 | static void |
| 344 | test_stmts(void **state) |
| 345 | { |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 346 | const char *p; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 347 | enum ly_stmt kw; |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 348 | char *word; |
| 349 | size_t len; |
| 350 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 351 | in.current = "\n// comment\n\tinput\t{"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 352 | assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 353 | assert_int_equal(LY_STMT_INPUT, kw); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 354 | assert_int_equal(5, len); |
| 355 | assert_string_equal("input\t{", word); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 356 | assert_string_equal("\t{", in.current); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 357 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 358 | in.current = "\t /* comment */\t output\n\t{"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 359 | assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 360 | assert_int_equal(LY_STMT_OUTPUT, kw); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 361 | assert_int_equal(6, len); |
| 362 | assert_string_equal("output\n\t{", word); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 363 | assert_string_equal("\n\t{", in.current); |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 364 | assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 365 | assert_int_equal(LY_STMT_SYNTAX_LEFT_BRACE, kw); |
Radek Krejci | abdd806 | 2019-06-11 16:44:19 +0200 | [diff] [blame] | 366 | assert_int_equal(1, len); |
| 367 | assert_string_equal("{", word); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 368 | assert_string_equal("", in.current); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 369 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 370 | in.current = "/input { "; /* invalid slash */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 371 | assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 372 | CHECK_LOG_CTX("Invalid identifier first character '/'.", "Line number 4."); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 373 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 374 | in.current = "not-a-statement-nor-extension { "; /* invalid identifier */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 375 | assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 376 | CHECK_LOG_CTX("Invalid character sequence \"not-a-statement-nor-extension\", expected a keyword.", "Line number 4."); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 377 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 378 | in.current = "path;"; /* missing sep after the keyword */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 379 | assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 380 | CHECK_LOG_CTX("Invalid character sequence \"path;\", expected a keyword followed by a separator.", "Line number 4."); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 381 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 382 | TEST_STMS_SUCCESS("action ", YCTX, LY_STMT_ACTION, "action"); |
| 383 | |
| 384 | TEST_STMS_SUCCESS("anydata ", YCTX, LY_STMT_ANYDATA, "anydata"); |
| 385 | TEST_STMS_SUCCESS("anyxml ", YCTX, LY_STMT_ANYXML, "anyxml"); |
| 386 | TEST_STMS_SUCCESS("argument ", YCTX, LY_STMT_ARGUMENT, "argument"); |
| 387 | TEST_STMS_SUCCESS("augment ", YCTX, LY_STMT_AUGMENT, "augment"); |
| 388 | TEST_STMS_SUCCESS("base ", YCTX, LY_STMT_BASE, "base"); |
| 389 | TEST_STMS_SUCCESS("belongs-to ", YCTX, LY_STMT_BELONGS_TO, "belongs-to"); |
| 390 | TEST_STMS_SUCCESS("bit ", YCTX, LY_STMT_BIT, "bit"); |
| 391 | TEST_STMS_SUCCESS("case ", YCTX, LY_STMT_CASE, "case"); |
| 392 | TEST_STMS_SUCCESS("choice ", YCTX, LY_STMT_CHOICE, "choice"); |
| 393 | TEST_STMS_SUCCESS("config ", YCTX, LY_STMT_CONFIG, "config"); |
| 394 | TEST_STMS_SUCCESS("contact ", YCTX, LY_STMT_CONTACT, "contact"); |
| 395 | TEST_STMS_SUCCESS("container ", YCTX, LY_STMT_CONTAINER, "container"); |
| 396 | TEST_STMS_SUCCESS("default ", YCTX, LY_STMT_DEFAULT, "default"); |
| 397 | TEST_STMS_SUCCESS("description ", YCTX, LY_STMT_DESCRIPTION, "description"); |
| 398 | TEST_STMS_SUCCESS("deviate ", YCTX, LY_STMT_DEVIATE, "deviate"); |
| 399 | TEST_STMS_SUCCESS("deviation ", YCTX, LY_STMT_DEVIATION, "deviation"); |
| 400 | TEST_STMS_SUCCESS("enum ", YCTX, LY_STMT_ENUM, "enum"); |
| 401 | TEST_STMS_SUCCESS("error-app-tag ", YCTX, LY_STMT_ERROR_APP_TAG, "error-app-tag"); |
| 402 | TEST_STMS_SUCCESS("error-message ", YCTX, LY_STMT_ERROR_MESSAGE, "error-message"); |
| 403 | TEST_STMS_SUCCESS("extension ", YCTX, LY_STMT_EXTENSION, "extension"); |
| 404 | TEST_STMS_SUCCESS("feature ", YCTX, LY_STMT_FEATURE, "feature"); |
| 405 | TEST_STMS_SUCCESS("fraction-digits ", YCTX, LY_STMT_FRACTION_DIGITS, "fraction-digits"); |
| 406 | TEST_STMS_SUCCESS("grouping ", YCTX, LY_STMT_GROUPING, "grouping"); |
| 407 | TEST_STMS_SUCCESS("identity ", YCTX, LY_STMT_IDENTITY, "identity"); |
| 408 | TEST_STMS_SUCCESS("if-feature ", YCTX, LY_STMT_IF_FEATURE, "if-feature"); |
| 409 | TEST_STMS_SUCCESS("import ", YCTX, LY_STMT_IMPORT, "import"); |
| 410 | TEST_STMS_SUCCESS("include ", YCTX, LY_STMT_INCLUDE, "include"); |
| 411 | TEST_STMS_SUCCESS("input{", YCTX, LY_STMT_INPUT, "input"); |
| 412 | TEST_STMS_SUCCESS("key ", YCTX, LY_STMT_KEY, "key"); |
| 413 | TEST_STMS_SUCCESS("leaf ", YCTX, LY_STMT_LEAF, "leaf"); |
| 414 | TEST_STMS_SUCCESS("leaf-list ", YCTX, LY_STMT_LEAF_LIST, "leaf-list"); |
| 415 | TEST_STMS_SUCCESS("length ", YCTX, LY_STMT_LENGTH, "length"); |
| 416 | TEST_STMS_SUCCESS("list ", YCTX, LY_STMT_LIST, "list"); |
| 417 | TEST_STMS_SUCCESS("mandatory ", YCTX, LY_STMT_MANDATORY, "mandatory"); |
| 418 | TEST_STMS_SUCCESS("max-elements ", YCTX, LY_STMT_MAX_ELEMENTS, "max-elements"); |
| 419 | TEST_STMS_SUCCESS("min-elements ", YCTX, LY_STMT_MIN_ELEMENTS, "min-elements"); |
| 420 | TEST_STMS_SUCCESS("modifier ", YCTX, LY_STMT_MODIFIER, "modifier"); |
| 421 | TEST_STMS_SUCCESS("module ", YCTX, LY_STMT_MODULE, "module"); |
| 422 | TEST_STMS_SUCCESS("must ", YCTX, LY_STMT_MUST, "must"); |
| 423 | TEST_STMS_SUCCESS("namespace ", YCTX, LY_STMT_NAMESPACE, "namespace"); |
| 424 | TEST_STMS_SUCCESS("notification ", YCTX, LY_STMT_NOTIFICATION, "notification"); |
| 425 | TEST_STMS_SUCCESS("ordered-by ", YCTX, LY_STMT_ORDERED_BY, "ordered-by"); |
| 426 | TEST_STMS_SUCCESS("organization ", YCTX, LY_STMT_ORGANIZATION, "organization"); |
| 427 | TEST_STMS_SUCCESS("output ", YCTX, LY_STMT_OUTPUT, "output"); |
| 428 | TEST_STMS_SUCCESS("path ", YCTX, LY_STMT_PATH, "path"); |
| 429 | TEST_STMS_SUCCESS("pattern ", YCTX, LY_STMT_PATTERN, "pattern"); |
| 430 | TEST_STMS_SUCCESS("position ", YCTX, LY_STMT_POSITION, "position"); |
| 431 | TEST_STMS_SUCCESS("prefix ", YCTX, LY_STMT_PREFIX, "prefix"); |
| 432 | TEST_STMS_SUCCESS("presence ", YCTX, LY_STMT_PRESENCE, "presence"); |
| 433 | TEST_STMS_SUCCESS("range ", YCTX, LY_STMT_RANGE, "range"); |
| 434 | TEST_STMS_SUCCESS("reference ", YCTX, LY_STMT_REFERENCE, "reference"); |
| 435 | TEST_STMS_SUCCESS("refine ", YCTX, LY_STMT_REFINE, "refine"); |
| 436 | TEST_STMS_SUCCESS("require-instance ", YCTX, LY_STMT_REQUIRE_INSTANCE, "require-instance"); |
| 437 | TEST_STMS_SUCCESS("revision ", YCTX, LY_STMT_REVISION, "revision"); |
| 438 | TEST_STMS_SUCCESS("revision-date ", YCTX, LY_STMT_REVISION_DATE, "revision-date"); |
| 439 | TEST_STMS_SUCCESS("rpc ", YCTX, LY_STMT_RPC, "rpc"); |
| 440 | TEST_STMS_SUCCESS("status ", YCTX, LY_STMT_STATUS, "status"); |
| 441 | TEST_STMS_SUCCESS("submodule ", YCTX, LY_STMT_SUBMODULE, "submodule"); |
| 442 | TEST_STMS_SUCCESS("type ", YCTX, LY_STMT_TYPE, "type"); |
| 443 | TEST_STMS_SUCCESS("typedef ", YCTX, LY_STMT_TYPEDEF, "typedef"); |
| 444 | TEST_STMS_SUCCESS("unique ", YCTX, LY_STMT_UNIQUE, "unique"); |
| 445 | TEST_STMS_SUCCESS("units ", YCTX, LY_STMT_UNITS, "units"); |
| 446 | TEST_STMS_SUCCESS("uses ", YCTX, LY_STMT_USES, "uses"); |
| 447 | TEST_STMS_SUCCESS("value ", YCTX, LY_STMT_VALUE, "value"); |
| 448 | TEST_STMS_SUCCESS("when ", YCTX, LY_STMT_WHEN, "when"); |
| 449 | TEST_STMS_SUCCESS("yang-version ", YCTX, LY_STMT_YANG_VERSION, "yang-version"); |
| 450 | TEST_STMS_SUCCESS("yin-element ", YCTX, LY_STMT_YIN_ELEMENT, "yin-element"); |
| 451 | TEST_STMS_SUCCESS(";config false;", YCTX, LY_STMT_SYNTAX_SEMICOLON, ";"); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 452 | assert_string_equal("config false;", in.current); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 453 | TEST_STMS_SUCCESS("{ config false;", YCTX, LY_STMT_SYNTAX_LEFT_BRACE, "{"); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 454 | assert_string_equal(" config false;", in.current); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 455 | TEST_STMS_SUCCESS("}", YCTX, LY_STMT_SYNTAX_RIGHT_BRACE, "}"); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 456 | assert_string_equal("", in.current); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 457 | |
| 458 | /* geenric extension */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 459 | in.current = p = "nacm:default-deny-write;"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 460 | assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 461 | assert_int_equal(LY_STMT_EXTENSION_INSTANCE, kw); |
Radek Krejci | dcc7b32 | 2018-10-11 14:24:02 +0200 | [diff] [blame] | 462 | assert_int_equal(23, len); |
| 463 | assert_ptr_equal(p, word); |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 464 | } |
Radek Krejci | 44ceedc | 2018-10-02 15:54:31 +0200 | [diff] [blame] | 465 | |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 466 | static void |
| 467 | test_minmax(void **state) |
| 468 | { |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 469 | uint16_t flags = 0; |
| 470 | uint32_t value = 0; |
| 471 | struct lysp_ext_instance *ext = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 472 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 473 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 474 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 475 | in.current = " 1invalid; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 476 | assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 477 | CHECK_LOG_CTX("Invalid value \"1invalid\" of \"min-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 478 | |
| 479 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 480 | in.current = " -1; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 481 | assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 482 | CHECK_LOG_CTX("Invalid value \"-1\" of \"min-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 483 | |
Radek Krejci | df6cad1 | 2018-11-28 17:10:55 +0100 | [diff] [blame] | 484 | /* implementation limit */ |
| 485 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 486 | in.current = " 4294967296; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 487 | assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 488 | CHECK_LOG_CTX("Value \"4294967296\" is out of \"min-elements\" bounds.", "Line number 1."); |
Radek Krejci | df6cad1 | 2018-11-28 17:10:55 +0100 | [diff] [blame] | 489 | |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 490 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 491 | in.current = " 1 {config true;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 492 | assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 493 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"min-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 494 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 495 | in.current = " 1invalid; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 496 | assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 497 | CHECK_LOG_CTX("Invalid value \"1invalid\" of \"max-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 498 | |
| 499 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 500 | in.current = " -1; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 501 | assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 502 | CHECK_LOG_CTX("Invalid value \"-1\" of \"max-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 503 | |
Radek Krejci | df6cad1 | 2018-11-28 17:10:55 +0100 | [diff] [blame] | 504 | /* implementation limit */ |
| 505 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 506 | in.current = " 4294967296; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 507 | assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 508 | CHECK_LOG_CTX("Value \"4294967296\" is out of \"max-elements\" bounds.", "Line number 1."); |
Radek Krejci | df6cad1 | 2018-11-28 17:10:55 +0100 | [diff] [blame] | 509 | |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 510 | flags = value = 0; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 511 | in.current = " 1 {config true;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 512 | assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 513 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"max-elements\".", "Line number 1."); |
Radek Krejci | 05b1398 | 2018-11-28 16:22:07 +0100 | [diff] [blame] | 514 | } |
| 515 | |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 516 | static void |
| 517 | test_valid_module(void **state) |
| 518 | { |
| 519 | struct lys_module *mod; |
| 520 | char *printed; |
| 521 | const char *links_yang = |
| 522 | "module links {\n" |
| 523 | " yang-version 1.1;\n" |
| 524 | " namespace \"urn:module2\";\n" |
| 525 | " prefix mod2;\n" |
| 526 | "\n" |
| 527 | " identity just-another-identity;\n" |
| 528 | "\n" |
| 529 | " leaf one-leaf {\n" |
| 530 | " type string;\n" |
| 531 | " }\n" |
| 532 | "\n" |
| 533 | " list list-for-augment {\n" |
| 534 | " key keyleaf;\n" |
| 535 | "\n" |
| 536 | " leaf keyleaf {\n" |
| 537 | " type string;\n" |
| 538 | " }\n" |
| 539 | "\n" |
| 540 | " leaf just-leaf {\n" |
| 541 | " type int32;\n" |
| 542 | " }\n" |
| 543 | " }\n" |
| 544 | "\n" |
| 545 | " leaf rleaf {\n" |
| 546 | " type string;\n" |
| 547 | " }\n" |
| 548 | "\n" |
| 549 | " leaf-list llist {\n" |
| 550 | " type string;\n" |
| 551 | " min-elements 0;\n" |
| 552 | " max-elements 100;\n" |
| 553 | " ordered-by user;\n" |
| 554 | " }\n" |
| 555 | "\n" |
| 556 | " grouping rgroup {\n" |
| 557 | " leaf rg1 {\n" |
| 558 | " type string;\n" |
| 559 | " }\n" |
| 560 | "\n" |
| 561 | " leaf rg2 {\n" |
| 562 | " type string;\n" |
| 563 | " }\n" |
| 564 | " }\n" |
| 565 | "}\n"; |
| 566 | const char *statements_yang = |
| 567 | "module statements {\n" |
| 568 | " yang-version 1.1;\n" |
| 569 | " namespace \"urn:module\";\n" |
| 570 | " prefix mod;\n" |
| 571 | "\n" |
| 572 | " import links {\n" |
| 573 | " prefix mod2;\n" |
| 574 | " }\n" |
| 575 | "\n" |
| 576 | " extension ext;\n" |
| 577 | "\n" |
| 578 | " identity random-identity {\n" |
| 579 | " base mod2:just-another-identity;\n" |
| 580 | " base another-identity;\n" |
| 581 | " }\n" |
| 582 | "\n" |
| 583 | " identity another-identity {\n" |
| 584 | " base mod2:just-another-identity;\n" |
| 585 | " }\n" |
| 586 | "\n" |
| 587 | " typedef percent {\n" |
| 588 | " type uint8 {\n" |
| 589 | " range \"0 .. 100\";\n" |
| 590 | " }\n" |
| 591 | " units \"percent\";\n" |
| 592 | " }\n" |
| 593 | "\n" |
| 594 | " list list1 {\n" |
| 595 | " key \"a\";\n" |
| 596 | " leaf a {\n" |
| 597 | " type string;\n" |
| 598 | " }\n" |
| 599 | " leaf x {\n" |
| 600 | " type string;\n" |
| 601 | " }\n" |
| 602 | " leaf y {\n" |
| 603 | " type string;\n" |
| 604 | " }\n" |
| 605 | " }\n" |
| 606 | " container ice-cream-shop {\n" |
| 607 | " container employees {\n" |
| 608 | " when \"/list1/x\";\n" |
| 609 | " list employee {\n" |
| 610 | " key \"id\";\n" |
| 611 | " unique \"name\";\n" |
| 612 | " config true;\n" |
| 613 | " min-elements 0 {\n" |
| 614 | " mod:ext;\n" |
| 615 | " }\n" |
| 616 | " max-elements unbounded;\n" |
| 617 | " leaf id {\n" |
| 618 | " type uint64;\n" |
| 619 | " mandatory true;\n" |
| 620 | " }\n" |
| 621 | " leaf name {\n" |
| 622 | " type string;\n" |
| 623 | " }\n" |
| 624 | " leaf age {\n" |
| 625 | " type uint32;\n" |
| 626 | " }\n" |
| 627 | " }\n" |
| 628 | " }\n" |
| 629 | " }\n" |
| 630 | " container random {\n" |
| 631 | " grouping group {\n" |
| 632 | " leaf g1 {\n" |
| 633 | " type percent;\n" |
| 634 | " mandatory false;\n" |
| 635 | " }\n" |
| 636 | " leaf g2 {\n" |
| 637 | " type string;\n" |
| 638 | " }\n" |
| 639 | " }\n" |
| 640 | " choice switch {\n" |
| 641 | " case a {\n" |
| 642 | " leaf aleaf {\n" |
| 643 | " type string;\n" |
| 644 | " default \"aaa\";\n" |
| 645 | " }\n" |
| 646 | " }\n" |
| 647 | " case c {\n" |
| 648 | " leaf cleaf {\n" |
| 649 | " type string;\n" |
| 650 | " }\n" |
| 651 | " }\n" |
| 652 | " }\n" |
| 653 | " anyxml xml-data;\n" |
| 654 | " anydata any-data;\n" |
| 655 | " leaf-list leaflist {\n" |
| 656 | " type string;\n" |
| 657 | " min-elements 0;\n" |
| 658 | " max-elements 20;\n" |
| 659 | " }\n" |
| 660 | " uses group;\n" |
| 661 | " uses mod2:rgroup;\n" |
| 662 | " leaf lref {\n" |
| 663 | " type leafref {\n" |
| 664 | " path \"/mod2:one-leaf\";\n" |
| 665 | " }\n" |
| 666 | " }\n" |
| 667 | " leaf iref {\n" |
| 668 | " type identityref {\n" |
| 669 | " base mod2:just-another-identity;\n" |
| 670 | " }\n" |
| 671 | " }\n" |
| 672 | " }\n" |
| 673 | "\n" |
| 674 | " augment \"/random\" {\n" |
| 675 | " leaf aug-leaf {\n" |
| 676 | " type string;\n" |
| 677 | " }\n" |
| 678 | " }\n" |
| 679 | "\n" |
| 680 | " notification notif;\n" |
| 681 | "\n" |
| 682 | " deviation \"/mod:ice-cream-shop/mod:employees/mod:employee/mod:age\" {\n" |
| 683 | " deviate not-supported {\n" |
| 684 | " mod:ext;\n" |
| 685 | " }\n" |
| 686 | " }\n" |
| 687 | " deviation \"/mod:list1\" {\n" |
| 688 | " deviate add {\n" |
| 689 | " mod:ext;\n" |
| 690 | " must \"1\";\n" |
| 691 | " must \"2\";\n" |
| 692 | " unique \"x\";\n" |
| 693 | " unique \"y\";\n" |
| 694 | " config true;\n" |
| 695 | " min-elements 1;\n" |
| 696 | " max-elements 2;\n" |
| 697 | " }\n" |
| 698 | " }\n" |
| 699 | " deviation \"/mod:ice-cream-shop/mod:employees/mod:employee\" {\n" |
| 700 | " deviate delete {\n" |
| 701 | " unique \"name\";\n" |
| 702 | " }\n" |
| 703 | " }\n" |
| 704 | " deviation \"/mod:random/mod:leaflist\" {\n" |
| 705 | " deviate replace {\n" |
| 706 | " type uint32;\n" |
| 707 | " min-elements 10;\n" |
| 708 | " max-elements 15;\n" |
| 709 | " }\n" |
| 710 | " }\n" |
| 711 | "}\n"; |
| 712 | |
| 713 | UTEST_ADD_MODULE(links_yang, LYS_IN_YANG, NULL, NULL); |
| 714 | UTEST_ADD_MODULE(statements_yang, LYS_IN_YANG, NULL, &mod); |
| 715 | lys_print_mem(&printed, mod, LYS_OUT_YANG, 0); |
| 716 | assert_string_equal(printed, statements_yang); |
| 717 | free(printed); |
| 718 | } |
| 719 | |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 720 | static struct lysp_module * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 721 | mod_renew(struct lys_yang_parser_ctx *ctx) |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 722 | { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 723 | struct ly_ctx *ly_ctx = PARSER_CUR_PMOD(ctx)->mod->ctx; |
| 724 | struct lysp_module *pmod; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 725 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 726 | lys_module_free(&fctx, PARSER_CUR_PMOD(ctx)->mod, 0); |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 727 | pmod = calloc(1, sizeof *pmod); |
| 728 | ctx->parsed_mods->objs[0] = pmod; |
| 729 | pmod->mod = calloc(1, sizeof *pmod->mod); |
| 730 | pmod->mod->parsed = pmod; |
| 731 | pmod->mod->ctx = ly_ctx; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 732 | |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 733 | ctx->in->line = 1; |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 734 | fctx.mod = pmod->mod; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 735 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 736 | return pmod; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | static struct lysp_submodule * |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 740 | submod_renew(struct lys_yang_parser_ctx *ctx) |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 741 | { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 742 | struct ly_ctx *ly_ctx = PARSER_CUR_PMOD(ctx)->mod->ctx; |
| 743 | struct lysp_submodule *submod; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 744 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 745 | lys_module_free(&fctx, PARSER_CUR_PMOD(ctx)->mod, 0); |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 746 | submod = calloc(1, sizeof *submod); |
| 747 | ctx->parsed_mods->objs[0] = submod; |
| 748 | submod->mod = calloc(1, sizeof *submod->mod); |
| 749 | lydict_insert(ly_ctx, "name", 0, &submod->mod->name); |
| 750 | submod->mod->parsed = (struct lysp_module *)submod; |
| 751 | submod->mod->ctx = ly_ctx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 752 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 753 | fctx.mod = submod->mod; |
| 754 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 755 | return submod; |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 756 | } |
| 757 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 758 | static LY_ERR |
| 759 | test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name), |
| 760 | const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format, |
| 761 | const char **module_data, void (**free_module_data)(void *model_data, void *user_data)) |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 762 | { |
| 763 | *module_data = user_data; |
| 764 | *format = LYS_IN_YANG; |
| 765 | *free_module_data = NULL; |
| 766 | return LY_SUCCESS; |
| 767 | } |
| 768 | |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 769 | static void |
| 770 | test_module(void **state) |
| 771 | { |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 772 | struct lysp_module *mod = NULL; |
| 773 | struct lysp_submodule *submod = NULL; |
| 774 | struct lys_module *m; |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 775 | struct lys_yang_parser_ctx *ctx_p; |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 776 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 777 | mod = mod_renew(YCTX); |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 778 | |
| 779 | /* missing mandatory substatements */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 780 | in.current = " name {}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 781 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 782 | assert_string_equal("name", mod->mod->name); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 783 | CHECK_LOG_CTX("Missing mandatory keyword \"namespace\" as a child of \"module\".", "Line number 1."); |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 784 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 785 | mod = mod_renew(YCTX); |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 786 | in.current = " name {namespace urn:name;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 787 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 788 | assert_string_equal("urn:name", mod->mod->ns); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 789 | CHECK_LOG_CTX("Missing mandatory keyword \"prefix\" as a child of \"module\".", "Line number 1."); |
| 790 | mod = mod_renew(YCTX); |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 791 | |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 792 | in.current = " name {namespace urn:name;prefix \"n\";}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 793 | assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 794 | assert_string_equal("n", mod->mod->prefix); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 795 | mod = mod_renew(YCTX); |
Radek Krejci | 9fcacc1 | 2018-10-11 15:59:11 +0200 | [diff] [blame] | 796 | |
Radek Krejci | 027d580 | 2018-11-14 16:57:28 +0100 | [diff] [blame] | 797 | #define SCHEMA_BEGINNING " name {yang-version 1.1;namespace urn:x;prefix \"x\";" |
| 798 | #define SCHEMA_BEGINNING2 " name {namespace urn:x;prefix \"x\";" |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 799 | #define TEST_NODE(NODETYPE, INPUT, NAME) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 800 | in.current = SCHEMA_BEGINNING INPUT; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 801 | assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); \ |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 802 | assert_non_null(mod->data); \ |
| 803 | assert_int_equal(NODETYPE, mod->data->nodetype); \ |
| 804 | assert_string_equal(NAME, mod->data->name); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 805 | mod = mod_renew(YCTX); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 806 | #define TEST_GENERIC(INPUT, TARGET, TEST) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 807 | in.current = SCHEMA_BEGINNING INPUT; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 808 | assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); \ |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 809 | assert_non_null(TARGET); \ |
| 810 | TEST; \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 811 | mod = mod_renew(YCTX); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 812 | #define TEST_DUP(MEMBER, VALUE1, VALUE2, LINE) \ |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 813 | TEST_DUP_GENERIC(SCHEMA_BEGINNING, MEMBER, VALUE1, VALUE2, \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 814 | parse_module, mod, LINE, mod = mod_renew(YCTX)) |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 815 | |
| 816 | /* duplicated namespace, prefix */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 817 | TEST_DUP("namespace", "y", "z", "1"); |
| 818 | TEST_DUP("prefix", "y", "z", "1"); |
| 819 | TEST_DUP("contact", "a", "b", "1"); |
| 820 | TEST_DUP("description", "a", "b", "1"); |
| 821 | TEST_DUP("organization", "a", "b", "1"); |
| 822 | TEST_DUP("reference", "a", "b", "1"); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 823 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 824 | /* not allowed in module (submodule-specific) */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 825 | in.current = SCHEMA_BEGINNING "belongs-to master {prefix m;}}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 826 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 827 | CHECK_LOG_CTX("Invalid keyword \"belongs-to\" as a child of \"module\".", "Line number 1."); |
| 828 | mod = mod_renew(YCTX); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 829 | |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 830 | /* anydata */ |
| 831 | TEST_NODE(LYS_ANYDATA, "anydata test;}", "test"); |
| 832 | /* anyxml */ |
| 833 | TEST_NODE(LYS_ANYXML, "anyxml test;}", "test"); |
| 834 | /* augment */ |
| 835 | TEST_GENERIC("augment /somepath;}", mod->augments, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 836 | assert_string_equal("/somepath", mod->augments[0].nodeid)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 837 | /* choice */ |
| 838 | TEST_NODE(LYS_CHOICE, "choice test;}", "test"); |
| 839 | /* contact 0..1 */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 840 | TEST_GENERIC("contact \"firstname\" + \n\t\" surname\";}", mod->mod->contact, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 841 | assert_string_equal("firstname surname", mod->mod->contact)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 842 | /* container */ |
| 843 | TEST_NODE(LYS_CONTAINER, "container test;}", "test"); |
| 844 | /* description 0..1 */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 845 | TEST_GENERIC("description \'some description\';}", mod->mod->dsc, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 846 | assert_string_equal("some description", mod->mod->dsc)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 847 | /* deviation */ |
| 848 | TEST_GENERIC("deviation /somepath {deviate not-supported;}}", mod->deviations, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 849 | assert_string_equal("/somepath", mod->deviations[0].nodeid)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 850 | /* extension */ |
| 851 | TEST_GENERIC("extension test;}", mod->extensions, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 852 | assert_string_equal("test", mod->extensions[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 853 | /* feature */ |
| 854 | TEST_GENERIC("feature test;}", mod->features, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 855 | assert_string_equal("test", mod->features[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 856 | /* grouping */ |
| 857 | TEST_GENERIC("grouping grp;}", mod->groupings, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 858 | assert_string_equal("grp", mod->groupings[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 859 | /* identity */ |
| 860 | TEST_GENERIC("identity test;}", mod->identities, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 861 | assert_string_equal("test", mod->identities[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 862 | /* import */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 863 | ly_ctx_set_module_imp_clb(PARSER_CUR_PMOD(YCTX)->mod->ctx, test_imp_clb, "module zzz { namespace urn:zzz; prefix z;}"); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 864 | TEST_GENERIC("import zzz {prefix z;}}", mod->imports, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 865 | assert_string_equal("zzz", mod->imports[0].name)); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 866 | |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 867 | /* import - prefix collision */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 868 | in.current = SCHEMA_BEGINNING "import zzz {prefix x;}}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 869 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 870 | CHECK_LOG_CTX("Prefix \"x\" already used as module prefix.", "Line number 1."); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 871 | mod = mod_renew(YCTX); |
| 872 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 873 | in.current = SCHEMA_BEGINNING "import zzz {prefix y;}import zzz {prefix y;}}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 874 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 875 | CHECK_LOG_CTX("Prefix \"y\" already used to import \"zzz\" module.", "Line number 1."); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 876 | |
| 877 | mod = mod_renew(YCTX); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 878 | LOG_LOCBACK(0, 0, 0, 1); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 879 | |
Michal Vasko | b24145d | 2022-07-13 18:34:39 +0200 | [diff] [blame] | 880 | in.current = "module name10 {yang-version 1.1;namespace urn:name10;prefix \"n10\";import zzz {prefix y;}import zzz {prefix z;}}"; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 881 | assert_int_equal(lys_parse_mem(PARSER_CUR_PMOD(YCTX)->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_SUCCESS); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 882 | CHECK_LOG_CTX("Single revision of the module \"zzz\" imported twice.", NULL); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 883 | |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 884 | /* include */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 885 | ly_ctx_set_module_imp_clb(PARSER_CUR_PMOD(YCTX)->mod->ctx, test_imp_clb, "module xxx { namespace urn:xxx; prefix x;}"); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 886 | in.current = "module" SCHEMA_BEGINNING "include xxx;}"; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 887 | assert_int_equal(lys_parse_mem(PARSER_CUR_PMOD(YCTX)->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 888 | CHECK_LOG_CTX("Parsing module \"name\" failed.", NULL, "Including \"xxx\" submodule into \"name\" failed.", NULL); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 889 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 890 | ly_ctx_set_module_imp_clb(PARSER_CUR_PMOD(YCTX)->mod->ctx, test_imp_clb, "submodule xxx {belongs-to wrong-name {prefix w;}}"); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 891 | in.current = "module" SCHEMA_BEGINNING "include xxx;}"; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 892 | assert_int_equal(lys_parse_mem(PARSER_CUR_PMOD(YCTX)->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_EVALID); |
Radek Krejci | 8297b79 | 2020-08-16 14:49:05 +0200 | [diff] [blame] | 893 | CHECK_LOG_CTX("Parsing module \"name\" failed.", NULL, "Including \"xxx\" submodule into \"name\" failed.", NULL); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 894 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 895 | ly_ctx_set_module_imp_clb(PARSER_CUR_PMOD(YCTX)->mod->ctx, test_imp_clb, "submodule xxx {belongs-to name {prefix x;}}"); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 896 | TEST_GENERIC("include xxx;}", mod->includes, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 897 | assert_string_equal("xxx", mod->includes[0].name)); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 898 | |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 899 | /* leaf */ |
| 900 | TEST_NODE(LYS_LEAF, "leaf test {type string;}}", "test"); |
| 901 | /* leaf-list */ |
| 902 | TEST_NODE(LYS_LEAFLIST, "leaf-list test {type string;}}", "test"); |
| 903 | /* list */ |
| 904 | TEST_NODE(LYS_LIST, "list test {key a;leaf a {type string;}}}", "test"); |
| 905 | /* notification */ |
| 906 | TEST_GENERIC("notification test;}", mod->notifs, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 907 | assert_string_equal("test", mod->notifs[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 908 | /* organization 0..1 */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 909 | TEST_GENERIC("organization \"CESNET a.l.e.\";}", mod->mod->org, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 910 | assert_string_equal("CESNET a.l.e.", mod->mod->org)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 911 | /* reference 0..1 */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 912 | TEST_GENERIC("reference RFC7950;}", mod->mod->ref, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 913 | assert_string_equal("RFC7950", mod->mod->ref)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 914 | /* revision */ |
| 915 | TEST_GENERIC("revision 2018-10-12;}", mod->revs, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 916 | assert_string_equal("2018-10-12", mod->revs[0].date)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 917 | /* rpc */ |
| 918 | TEST_GENERIC("rpc test;}", mod->rpcs, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 919 | assert_string_equal("test", mod->rpcs[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 920 | /* typedef */ |
| 921 | TEST_GENERIC("typedef test{type string;}}", mod->typedefs, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 922 | assert_string_equal("test", mod->typedefs[0].name)); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 923 | /* uses */ |
| 924 | TEST_NODE(LYS_USES, "uses test;}", "test"); |
| 925 | /* yang-version */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 926 | in.current = SCHEMA_BEGINNING2 "\n\tyang-version 10;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 927 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 928 | CHECK_LOG_CTX("Invalid value \"10\" of \"yang-version\".", NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 929 | mod = mod_renew(YCTX); |
Radek Krejci | 96e48da | 2020-09-04 13:18:06 +0200 | [diff] [blame] | 930 | in.current = SCHEMA_BEGINNING2 "yang-version 1;yang-version 1.1;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 931 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 932 | CHECK_LOG_CTX("Duplicate keyword \"yang-version\".", NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 933 | mod = mod_renew(YCTX); |
Radek Krejci | 96e48da | 2020-09-04 13:18:06 +0200 | [diff] [blame] | 934 | in.current = SCHEMA_BEGINNING2 "yang-version 1;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 935 | assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 936 | assert_int_equal(1, mod->version); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 937 | mod = mod_renew(YCTX); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 938 | in.current = SCHEMA_BEGINNING2 "yang-version \"1.1\";}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 939 | assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 940 | assert_int_equal(2, mod->version); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 941 | mod = mod_renew(YCTX); |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 942 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 943 | in.current = "module " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}"; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 944 | m = calloc(1, sizeof *m); |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 945 | m->ctx = PARSER_CUR_PMOD(YCTX)->mod->ctx; |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 946 | assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 947 | CHECK_LOG_CTX("Trailing garbage \"module q {names...\" after module, expected end-of-input.", "Line number 1."); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 948 | yang_parser_ctx_free(ctx_p); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 949 | lys_module_free(&fctx, m, 0); |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 950 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 951 | in.current = "prefix " SCHEMA_BEGINNING "}"; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 952 | m = calloc(1, sizeof *m); |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 953 | m->ctx = PARSER_CUR_PMOD(YCTX)->mod->ctx; |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 954 | assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 955 | CHECK_LOG_CTX("Invalid keyword \"prefix\", expected \"module\" or \"submodule\".", "Line number 1."); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 956 | yang_parser_ctx_free(ctx_p); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 957 | lys_module_free(&fctx, m, 0); |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 958 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 959 | in.current = "module " SCHEMA_BEGINNING "leaf enum {type enumeration {enum seven { position 7;}}}}"; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 960 | m = calloc(1, sizeof *m); |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 961 | m->ctx = PARSER_CUR_PMOD(YCTX)->mod->ctx; |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 962 | assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 963 | CHECK_LOG_CTX("Invalid keyword \"position\" as a child of \"enum\".", "Line number 1."); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 964 | yang_parser_ctx_free(ctx_p); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 965 | lys_module_free(&fctx, m, 0); |
David Sedlák | 9fb515f | 2019-07-11 10:33:58 +0200 | [diff] [blame] | 966 | |
Radek Krejci | 156ccaf | 2018-10-15 15:49:17 +0200 | [diff] [blame] | 967 | /* extensions */ |
| 968 | TEST_GENERIC("prefix:test;}", mod->exts, |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 969 | assert_string_equal("prefix:test", mod->exts[0].name); |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 970 | assert_int_equal(LY_STMT_MODULE, mod->exts[0].parent_stmt)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 971 | mod = mod_renew(YCTX); |
Radek Krejci | 156ccaf | 2018-10-15 15:49:17 +0200 | [diff] [blame] | 972 | |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 973 | /* invalid substatement */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 974 | in.current = SCHEMA_BEGINNING "must false;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 975 | assert_int_equal(LY_EVALID, parse_module(YCTX, mod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 976 | CHECK_LOG_CTX("Invalid keyword \"must\" as a child of \"module\".", NULL); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 977 | |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 978 | /* submodule */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 979 | submod = submod_renew(YCTX); |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 980 | |
| 981 | /* missing mandatory substatements */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 982 | in.current = " subname {}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 983 | assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 984 | CHECK_LOG_CTX("Missing mandatory keyword \"belongs-to\" as a child of \"submodule\".", NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 985 | assert_string_equal("subname", submod->name); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 986 | |
| 987 | submod = submod_renew(YCTX); |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 988 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 989 | in.current = " subname {belongs-to name {prefix x;}}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 990 | assert_int_equal(LY_SUCCESS, parse_submodule(YCTX, submod)); |
Michal Vasko | c3781c3 | 2020-10-06 14:04:08 +0200 | [diff] [blame] | 991 | assert_string_equal("name", submod->mod->name); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 992 | submod = submod_renew(YCTX); |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 993 | |
| 994 | #undef SCHEMA_BEGINNING |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 995 | #define SCHEMA_BEGINNING " subname {belongs-to name {prefix x;}" |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 996 | |
| 997 | /* duplicated namespace, prefix */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 998 | in.current = " subname {belongs-to name {prefix x;}belongs-to module1;belongs-to module2;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 999 | assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1000 | CHECK_LOG_CTX("Duplicate keyword \"belongs-to\".", NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1001 | submod = submod_renew(YCTX); |
Radek Krejci | 0930636 | 2018-10-15 15:26:01 +0200 | [diff] [blame] | 1002 | |
| 1003 | /* not allowed in submodule (module-specific) */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1004 | in.current = SCHEMA_BEGINNING "namespace \"urn:z\";}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1005 | assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1006 | CHECK_LOG_CTX("Invalid keyword \"namespace\" as a child of \"submodule\".", NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1007 | submod = submod_renew(YCTX); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1008 | in.current = SCHEMA_BEGINNING "prefix m;}}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1009 | assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod)); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1010 | CHECK_LOG_CTX("Invalid keyword \"prefix\" as a child of \"submodule\".", NULL); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1011 | submod = submod_renew(YCTX); |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 1012 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1013 | in.current = "submodule " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}"; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1014 | assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, PARSER_CUR_PMOD(YCTX)->mod->ctx, (struct lys_parser_ctx *)YCTX, YCTX->in, &submod)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1015 | CHECK_LOG_CTX("Trailing garbage \"module q {names...\" after submodule, expected end-of-input.", "Line number 1."); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 1016 | yang_parser_ctx_free(ctx_p); |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 1017 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1018 | in.current = "prefix " SCHEMA_BEGINNING "}"; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1019 | assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, PARSER_CUR_PMOD(YCTX)->mod->ctx, (struct lys_parser_ctx *)YCTX, YCTX->in, &submod)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1020 | CHECK_LOG_CTX("Invalid keyword \"prefix\", expected \"module\" or \"submodule\".", "Line number 1."); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 1021 | yang_parser_ctx_free(ctx_p); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1022 | submod = submod_renew(YCTX); |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 1023 | |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 1024 | #undef TEST_GENERIC |
| 1025 | #undef TEST_NODE |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1026 | #undef TEST_DUP |
Radek Krejci | a042ea1 | 2018-10-13 07:52:15 +0200 | [diff] [blame] | 1027 | #undef SCHEMA_BEGINNING |
Radek Krejci | efd22f6 | 2018-09-27 11:47:58 +0200 | [diff] [blame] | 1028 | } |
| 1029 | |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1030 | static void |
| 1031 | test_deviation(void **state) |
| 1032 | { |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1033 | struct lysp_deviation *d = NULL; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1034 | |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1035 | /* invalid cardinality */ |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1036 | TEST_DUP_GENERIC(" test {deviate not-supported;", "description", "a", "b", parse_deviation, &d, "1", ); |
| 1037 | TEST_DUP_GENERIC(" test {deviate not-supported;", "reference", "a", "b", parse_deviation, &d, "1", ); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1038 | |
| 1039 | /* missing mandatory substatement */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1040 | in.current = " test {description text;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1041 | assert_int_equal(LY_EVALID, parse_deviation(YCTX, &d)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1042 | CHECK_LOG_CTX("Missing mandatory keyword \"deviate\" as a child of \"deviation\".", "Line number 1."); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1043 | |
| 1044 | /* invalid substatement */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1045 | in.current = " test {deviate not-supported; status obsolete;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1046 | assert_int_equal(LY_EVALID, parse_deviation(YCTX, &d)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1047 | CHECK_LOG_CTX("Invalid keyword \"status\" as a child of \"deviation\".", "Line number 1."); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1048 | } |
| 1049 | |
| 1050 | static void |
| 1051 | test_deviate(void **state) |
| 1052 | { |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1053 | struct lysp_deviate *d = NULL; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1054 | |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1055 | /* invalid cardinality */ |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1056 | TEST_DUP_GENERIC("add {", "config", "true", "false", parse_deviate, &d, "1", ); |
| 1057 | TEST_DUP_GENERIC("add {", "mandatory", "true", "false", parse_deviate, &d, "1", ); |
| 1058 | TEST_DUP_GENERIC("add {", "max-elements", "1", "2", parse_deviate, &d, "1", ); |
| 1059 | TEST_DUP_GENERIC("add {", "min-elements", "1", "2", parse_deviate, &d, "1", ); |
| 1060 | TEST_DUP_GENERIC("add {", "units", "kilometers", "miles", parse_deviate, &d, "1", ); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1061 | |
| 1062 | /* invalid substatements */ |
| 1063 | #define TEST_NOT_SUP(DEV, STMT, VALUE) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1064 | in.current = " "DEV" {"STMT" "VALUE";}..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1065 | assert_int_equal(LY_EVALID, parse_deviate(YCTX, &d)); \ |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1066 | CHECK_LOG_CTX("Deviate \""DEV"\" does not support keyword \""STMT"\".", "Line number 1."); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1067 | |
| 1068 | TEST_NOT_SUP("not-supported", "units", "meters"); |
| 1069 | TEST_NOT_SUP("not-supported", "must", "1"); |
| 1070 | TEST_NOT_SUP("not-supported", "unique", "x"); |
| 1071 | TEST_NOT_SUP("not-supported", "default", "a"); |
| 1072 | TEST_NOT_SUP("not-supported", "config", "true"); |
| 1073 | TEST_NOT_SUP("not-supported", "mandatory", "true"); |
| 1074 | TEST_NOT_SUP("not-supported", "min-elements", "1"); |
| 1075 | TEST_NOT_SUP("not-supported", "max-elements", "2"); |
| 1076 | TEST_NOT_SUP("not-supported", "type", "string"); |
| 1077 | TEST_NOT_SUP("add", "type", "string"); |
| 1078 | TEST_NOT_SUP("delete", "config", "true"); |
| 1079 | TEST_NOT_SUP("delete", "mandatory", "true"); |
| 1080 | TEST_NOT_SUP("delete", "min-elements", "1"); |
| 1081 | TEST_NOT_SUP("delete", "max-elements", "2"); |
| 1082 | TEST_NOT_SUP("delete", "type", "string"); |
| 1083 | TEST_NOT_SUP("replace", "must", "1"); |
| 1084 | TEST_NOT_SUP("replace", "unique", "a"); |
| 1085 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1086 | in.current = " nonsence; ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1087 | assert_int_equal(LY_EVALID, parse_deviate(YCTX, &d)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1088 | CHECK_LOG_CTX("Invalid value \"nonsence\" of \"deviate\".", "Line number 1.");\ |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1089 | assert_null(d); |
Radek Krejci | 2c02f3e | 2018-10-16 10:54:38 +0200 | [diff] [blame] | 1090 | #undef TEST_NOT_SUP |
Radek Krejci | 4c6d9bd | 2018-10-15 16:43:06 +0200 | [diff] [blame] | 1091 | } |
| 1092 | |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1093 | static void |
| 1094 | test_container(void **state) |
| 1095 | { |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1096 | struct lysp_node_container *c = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1097 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1098 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 1099 | YCTX->main_ctx = (struct lys_parser_ctx *)YCTX; |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1100 | |
| 1101 | /* invalid cardinality */ |
| 1102 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1103 | in.current = "cont {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1104 | assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node**)&c)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1105 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1106 | lysp_node_free(&fctx, (struct lysp_node*)c); c = NULL; |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1107 | |
| 1108 | TEST_DUP("config", "true", "false"); |
| 1109 | TEST_DUP("description", "text1", "text2"); |
| 1110 | TEST_DUP("presence", "true", "false"); |
| 1111 | TEST_DUP("reference", "1", "2"); |
| 1112 | TEST_DUP("status", "current", "obsolete"); |
| 1113 | TEST_DUP("when", "true", "false"); |
| 1114 | #undef TEST_DUP |
| 1115 | |
| 1116 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1117 | in.current = "cont {action x;anydata any;anyxml anyxml; choice ch;config false;container c;description test;grouping g;if-feature f; leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1118 | "leaf-list ll {type string;} list li;must 'expr';notification not; presence true; reference test;status current;typedef t {type int8;}uses g;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1119 | assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1120 | CHECK_LYSP_NODE(c, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR, 1, "cont", 0, LYS_CONTAINER, 0, "test", 1); |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1121 | assert_non_null(c->actions); |
| 1122 | assert_non_null(c->child); |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1123 | assert_non_null(c->groupings); |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1124 | assert_non_null(c->musts); |
| 1125 | assert_non_null(c->notifs); |
| 1126 | assert_string_equal("true", c->presence); |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1127 | assert_non_null(c->typedefs); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1128 | ly_set_erase(&YCTX->tpdfs_nodes, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 1129 | ly_set_erase(&YCTX->grps_nodes, NULL); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1130 | lysp_node_free(&fctx, (struct lysp_node *)c); c = NULL; |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1131 | |
| 1132 | /* invalid */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1133 | in.current = " cont {augment /root;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1134 | assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1135 | CHECK_LOG_CTX("Invalid keyword \"augment\" as a child of \"container\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1136 | lysp_node_free(&fctx, (struct lysp_node *)c); c = NULL; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1137 | in.current = " cont {nonsence true;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1138 | assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1139 | CHECK_LOG_CTX("Invalid character sequence \"nonsence\", expected a keyword.", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1140 | lysp_node_free(&fctx, (struct lysp_node *)c); c = NULL; |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1141 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1142 | PARSER_CUR_PMOD(YCTX)->version = 1; /* simulate YANG 1.0 */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1143 | in.current = " cont {action x;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1144 | assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1145 | CHECK_LOG_CTX("Invalid keyword \"action\" as a child of \"container\" - " |
| 1146 | "the statement is allowed only in YANG 1.1 modules.", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1147 | lysp_node_free(&fctx, (struct lysp_node *)c); c = NULL; |
Radek Krejci | 8c37083 | 2018-11-02 15:10:03 +0100 | [diff] [blame] | 1148 | } |
| 1149 | |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1150 | static void |
| 1151 | test_leaf(void **state) |
| 1152 | { |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1153 | struct lysp_node_leaf *l = NULL; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1154 | |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1155 | /* invalid cardinality */ |
| 1156 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1157 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1158 | assert_int_equal(LY_EVALID, parse_leaf(YCTX, NULL, (struct lysp_node**)&l)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1159 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1160 | lysp_node_free(&fctx, (struct lysp_node*)l); l = NULL; |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1161 | |
| 1162 | TEST_DUP("config", "true", "false"); |
| 1163 | TEST_DUP("default", "x", "y"); |
| 1164 | TEST_DUP("description", "text1", "text2"); |
| 1165 | TEST_DUP("mandatory", "true", "false"); |
| 1166 | TEST_DUP("reference", "1", "2"); |
| 1167 | TEST_DUP("status", "current", "obsolete"); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1168 | TEST_DUP("type", "int8", "uint8"); |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1169 | TEST_DUP("units", "text1", "text2"); |
| 1170 | TEST_DUP("when", "true", "false"); |
| 1171 | #undef TEST_DUP |
| 1172 | |
| 1173 | /* full content - without mandatory which is mutual exclusive with default */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1174 | in.current = "l {config false;default \"xxx\";description test;if-feature f;" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1175 | "must 'expr';reference test;status current;type string; units yyy;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1176 | assert_int_equal(LY_SUCCESS, parse_leaf(YCTX, NULL, (struct lysp_node **)&l)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1177 | CHECK_LYSP_NODE(l, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR, 1, "l", 0, LYS_LEAF, 0, "test", 1); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1178 | assert_string_equal("xxx", l->dflt.str); |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1179 | assert_string_equal("yyy", l->units); |
| 1180 | assert_string_equal("string", l->type.name); |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1181 | assert_non_null(l->musts); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1182 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1183 | |
| 1184 | /* full content - now with mandatory */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1185 | in.current = "l {mandatory true; type string;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1186 | assert_int_equal(LY_SUCCESS, parse_leaf(YCTX, NULL, (struct lysp_node **)&l)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1187 | CHECK_LYSP_NODE(l, NULL, 0, LYS_MAND_TRUE, 0, "l", 0, LYS_LEAF, 0, NULL, 0); |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1188 | assert_string_equal("string", l->type.name); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1189 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1190 | |
| 1191 | /* invalid */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1192 | in.current = " l {description \"missing type\";} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1193 | assert_int_equal(LY_EVALID, parse_leaf(YCTX, NULL, (struct lysp_node **)&l)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1194 | CHECK_LOG_CTX("Missing mandatory keyword \"type\" as a child of \"leaf\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1195 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
aPiecek | 4bb1e37 | 2021-05-07 11:01:00 +0200 | [diff] [blame] | 1196 | |
| 1197 | in.current = "l { type iid { path qpud wrong {"; |
| 1198 | assert_int_equal(LY_EVALID, parse_leaf(YCTX, NULL, (struct lysp_node **)&l)); |
| 1199 | CHECK_LOG_CTX("Invalid character sequence \"wrong\", expected a keyword.", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1200 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 1201 | } |
| 1202 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1203 | static void |
| 1204 | test_leaflist(void **state) |
| 1205 | { |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1206 | struct lysp_node_leaflist *ll = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1207 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1208 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1209 | |
| 1210 | /* invalid cardinality */ |
| 1211 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1212 | in.current = "ll {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1213 | assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node**)&ll)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1214 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1215 | lysp_node_free(&fctx, (struct lysp_node*)ll); ll = NULL; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1216 | |
| 1217 | TEST_DUP("config", "true", "false"); |
| 1218 | TEST_DUP("description", "text1", "text2"); |
| 1219 | TEST_DUP("max-elements", "10", "20"); |
| 1220 | TEST_DUP("min-elements", "10", "20"); |
| 1221 | TEST_DUP("ordered-by", "user", "system"); |
| 1222 | TEST_DUP("reference", "1", "2"); |
| 1223 | TEST_DUP("status", "current", "obsolete"); |
| 1224 | TEST_DUP("type", "int8", "uint8"); |
| 1225 | TEST_DUP("units", "text1", "text2"); |
| 1226 | TEST_DUP("when", "true", "false"); |
| 1227 | #undef TEST_DUP |
| 1228 | |
| 1229 | /* full content - without min-elements which is mutual exclusive with default */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1230 | in.current = "ll {config false;default \"xxx\"; default \"yyy\";description test;if-feature f;" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1231 | "max-elements 10;must 'expr';ordered-by user;reference test;" |
| 1232 | "status current;type string; units zzz;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1233 | assert_int_equal(LY_SUCCESS, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1234 | CHECK_LYSP_NODE(ll, "test", 1, 0x446, 1, "ll", 0, LYS_LEAFLIST, 0, "test", 1); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1235 | assert_non_null(ll->dflts); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1236 | assert_int_equal(2, LY_ARRAY_COUNT(ll->dflts)); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1237 | assert_string_equal("xxx", ll->dflts[0].str); |
| 1238 | assert_string_equal("yyy", ll->dflts[1].str); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1239 | assert_string_equal("zzz", ll->units); |
| 1240 | assert_int_equal(10, ll->max); |
| 1241 | assert_int_equal(0, ll->min); |
| 1242 | assert_string_equal("string", ll->type.name); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1243 | assert_non_null(ll->musts); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1244 | assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_USER | LYS_SET_MAX, ll->flags); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1245 | lysp_node_free(&fctx, (struct lysp_node *)ll); ll = NULL; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1246 | |
| 1247 | /* full content - now with min-elements */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1248 | in.current = "ll {min-elements 10; type string;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1249 | assert_int_equal(LY_SUCCESS, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1250 | CHECK_LYSP_NODE(ll, NULL, 0, 0x200, 0, "ll", 0, LYS_LEAFLIST, 0, NULL, 0); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1251 | assert_string_equal("string", ll->type.name); |
| 1252 | assert_int_equal(0, ll->max); |
| 1253 | assert_int_equal(10, ll->min); |
| 1254 | assert_int_equal(LYS_SET_MIN, ll->flags); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1255 | lysp_node_free(&fctx, (struct lysp_node *)ll); ll = NULL; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1256 | |
| 1257 | /* invalid */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1258 | in.current = " ll {description \"missing type\";} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1259 | assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1260 | CHECK_LOG_CTX("Missing mandatory keyword \"type\" as a child of \"leaf-list\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1261 | lysp_node_free(&fctx, (struct lysp_node *)ll); ll = NULL; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1262 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1263 | PARSER_CUR_PMOD(YCTX)->version = 1; /* simulate YANG 1.0 - default statement is not allowed */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1264 | in.current = " ll {default xx; type string;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1265 | assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1266 | CHECK_LOG_CTX("Invalid keyword \"default\" as a child of \"leaf-list\" - the statement is allowed only in YANG 1.1 modules.", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1267 | lysp_node_free(&fctx, (struct lysp_node *)ll); ll = NULL; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1268 | } |
| 1269 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1270 | static void |
| 1271 | test_list(void **state) |
| 1272 | { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1273 | struct lysp_node_list *l = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1274 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1275 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 1276 | YCTX->main_ctx = (struct lys_parser_ctx *)YCTX; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1277 | |
| 1278 | /* invalid cardinality */ |
| 1279 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1280 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1281 | assert_int_equal(LY_EVALID, parse_list(YCTX, NULL, (struct lysp_node**)&l)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1282 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1283 | lysp_node_free(&fctx, (struct lysp_node*)l); l = NULL; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1284 | |
| 1285 | TEST_DUP("config", "true", "false"); |
| 1286 | TEST_DUP("description", "text1", "text2"); |
| 1287 | TEST_DUP("key", "one", "two"); |
| 1288 | TEST_DUP("max-elements", "10", "20"); |
| 1289 | TEST_DUP("min-elements", "10", "20"); |
| 1290 | TEST_DUP("ordered-by", "user", "system"); |
| 1291 | TEST_DUP("reference", "1", "2"); |
| 1292 | TEST_DUP("status", "current", "obsolete"); |
| 1293 | TEST_DUP("when", "true", "false"); |
| 1294 | #undef TEST_DUP |
| 1295 | |
| 1296 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1297 | in.current = "l {action x;anydata any;anyxml anyxml; choice ch;config false;container c;description test;grouping g;if-feature f; key l; leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1298 | "leaf-list ll {type string;} list li;max-elements 10; min-elements 1;must 'expr';notification not; ordered-by system; reference test;" |
| 1299 | "status current;typedef t {type int8;}unique xxx;unique yyy;uses g;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1300 | assert_int_equal(LY_SUCCESS, parse_list(YCTX, NULL, (struct lysp_node **)&l)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1301 | CHECK_LYSP_NODE(l, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_MAX | LYS_SET_MIN, 1, "l", |
| 1302 | 0, LYS_LIST, 0, "test", 1); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1303 | assert_string_equal("l", l->key); |
| 1304 | assert_non_null(l->uniques); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1305 | assert_int_equal(2, LY_ARRAY_COUNT(l->uniques)); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1306 | assert_string_equal("xxx", l->uniques[0].str); |
| 1307 | assert_string_equal("yyy", l->uniques[1].str); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1308 | assert_int_equal(10, l->max); |
| 1309 | assert_int_equal(1, l->min); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1310 | assert_non_null(l->musts); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1311 | ly_set_erase(&YCTX->tpdfs_nodes, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 1312 | ly_set_erase(&YCTX->grps_nodes, NULL); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1313 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1314 | |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1315 | /* invalid content */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1316 | PARSER_CUR_PMOD(YCTX)->version = 1; /* simulate YANG 1.0 */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1317 | in.current = "l {action x;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1318 | assert_int_equal(LY_EVALID, parse_list(YCTX, NULL, (struct lysp_node **)&l)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1319 | CHECK_LOG_CTX("Invalid keyword \"action\" as a child of \"list\" - the statement is allowed only in YANG 1.1 modules.", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1320 | lysp_node_free(&fctx, (struct lysp_node *)l); l = NULL; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1321 | } |
| 1322 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1323 | static void |
| 1324 | test_choice(void **state) |
| 1325 | { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1326 | struct lysp_node_choice *ch = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1327 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1328 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1329 | |
| 1330 | /* invalid cardinality */ |
| 1331 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1332 | in.current = "ch {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1333 | assert_int_equal(LY_EVALID, parse_choice(YCTX, NULL, (struct lysp_node**)&ch)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1334 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1335 | lysp_node_free(&fctx, (struct lysp_node*)ch); ch = NULL; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1336 | |
| 1337 | TEST_DUP("config", "true", "false"); |
| 1338 | TEST_DUP("default", "a", "b"); |
| 1339 | TEST_DUP("description", "text1", "text2"); |
| 1340 | TEST_DUP("mandatory", "true", "false"); |
| 1341 | TEST_DUP("reference", "1", "2"); |
| 1342 | TEST_DUP("status", "current", "obsolete"); |
| 1343 | TEST_DUP("when", "true", "false"); |
| 1344 | #undef TEST_DUP |
| 1345 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1346 | /* full content - without default due to a collision with mandatory */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1347 | in.current = "ch {anydata any;anyxml anyxml; case c;choice ch;config false;container c;description test;if-feature f;leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1348 | "leaf-list ll {type string;} list li;mandatory true;reference test;status current;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1349 | assert_int_equal(LY_SUCCESS, parse_choice(YCTX, NULL, (struct lysp_node **)&ch)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1350 | CHECK_LYSP_NODE(ch, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "ch", 0, LYS_CHOICE, 0, "test", 1); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1351 | lysp_node_free(&fctx, (struct lysp_node *)ch); ch = NULL; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1352 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1353 | /* full content - the default missing from the previous node */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1354 | in.current = "ch {default c;case c;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1355 | assert_int_equal(LY_SUCCESS, parse_choice(YCTX, NULL, (struct lysp_node **)&ch)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1356 | CHECK_LYSP_NODE(ch, NULL, 0, 0, 0, "ch", 0, LYS_CHOICE, 0, NULL, 0); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1357 | assert_string_equal("c", ch->dflt.str); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1358 | lysp_node_free(&fctx, (struct lysp_node *)ch); ch = NULL; |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1359 | } |
| 1360 | |
| 1361 | static void |
| 1362 | test_case(void **state) |
| 1363 | { |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1364 | struct lysp_node_case *cs = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1365 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1366 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1367 | |
| 1368 | /* invalid cardinality */ |
| 1369 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1370 | in.current = "cs {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1371 | assert_int_equal(LY_EVALID, parse_case(YCTX, NULL, (struct lysp_node**)&cs)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1372 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1373 | lysp_node_free(&fctx, (struct lysp_node*)cs); cs = NULL; |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1374 | |
| 1375 | TEST_DUP("description", "text1", "text2"); |
| 1376 | TEST_DUP("reference", "1", "2"); |
| 1377 | TEST_DUP("status", "current", "obsolete"); |
| 1378 | TEST_DUP("when", "true", "false"); |
| 1379 | #undef TEST_DUP |
| 1380 | |
| 1381 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1382 | in.current = "cs {anydata any;anyxml anyxml; choice ch;container c;description test;if-feature f;leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1383 | "leaf-list ll {type string;} list li;reference test;status current;uses grp;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1384 | assert_int_equal(LY_SUCCESS, parse_case(YCTX, NULL, (struct lysp_node **)&cs)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1385 | CHECK_LYSP_NODE(cs, "test", 1, LYS_STATUS_CURR, 1, "cs", 0, LYS_CASE, 0, "test", 1); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1386 | lysp_node_free(&fctx, (struct lysp_node *)cs); cs = NULL; |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1387 | |
| 1388 | /* invalid content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1389 | in.current = "cs {config true} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1390 | assert_int_equal(LY_EVALID, parse_case(YCTX, NULL, (struct lysp_node **)&cs)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1391 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"case\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1392 | lysp_node_free(&fctx, (struct lysp_node *)cs); cs = NULL; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1393 | } |
| 1394 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1395 | static void |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1396 | test_any(void **state, enum ly_stmt kw) |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1397 | { |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1398 | struct lysp_node_anydata *any = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1399 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1400 | if (kw == LY_STMT_ANYDATA) { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1401 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1402 | } else { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1403 | PARSER_CUR_PMOD(YCTX)->version = 1; /* simulate YANG 1.0 */ |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1404 | } |
| 1405 | |
| 1406 | /* invalid cardinality */ |
| 1407 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1408 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1409 | assert_int_equal(LY_EVALID, parse_any(YCTX, kw, NULL, (struct lysp_node**)&any)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1410 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1411 | lysp_node_free(&fctx, (struct lysp_node*)any); any = NULL; |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1412 | |
| 1413 | TEST_DUP("config", "true", "false"); |
| 1414 | TEST_DUP("description", "text1", "text2"); |
| 1415 | TEST_DUP("mandatory", "true", "false"); |
| 1416 | TEST_DUP("reference", "1", "2"); |
| 1417 | TEST_DUP("status", "current", "obsolete"); |
| 1418 | TEST_DUP("when", "true", "false"); |
| 1419 | #undef TEST_DUP |
| 1420 | |
| 1421 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1422 | in.current = "any {config true;description test;if-feature f;mandatory true;must 'expr';reference test;status current;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1423 | assert_int_equal(LY_SUCCESS, parse_any(YCTX, kw, NULL, (struct lysp_node **)&any)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1424 | // CHECK_LYSP_NODE(NODE, DSC, EXTS, FLAGS, IFFEATURES, NAME, NEXT, TYPE, PARENT, REF, WHEN) |
| 1425 | uint16_t node_type = kw == LY_STMT_ANYDATA ? LYS_ANYDATA : LYS_ANYXML; |
| 1426 | CHECK_LYSP_NODE(any, "test", 1, LYS_CONFIG_W | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "any", 0, node_type, 0, "test", 1); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1427 | assert_non_null(any->musts); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1428 | lysp_node_free(&fctx, (struct lysp_node *)any); any = NULL; |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | static void |
| 1432 | test_anydata(void **state) |
| 1433 | { |
Michal Vasko | a0a498b | 2021-09-22 12:17:48 +0200 | [diff] [blame] | 1434 | test_any(state, LY_STMT_ANYDATA); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | static void |
| 1438 | test_anyxml(void **state) |
| 1439 | { |
Michal Vasko | a0a498b | 2021-09-22 12:17:48 +0200 | [diff] [blame] | 1440 | test_any(state, LY_STMT_ANYXML); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1441 | } |
| 1442 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1443 | static void |
| 1444 | test_grouping(void **state) |
| 1445 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1446 | struct lysp_node_grp *grp = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1447 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1448 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 1449 | YCTX->main_ctx = (struct lys_parser_ctx *)YCTX; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1450 | |
| 1451 | /* invalid cardinality */ |
| 1452 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1453 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1454 | assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1455 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1456 | lysp_node_free(&fctx, &grp->node); grp = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1457 | |
| 1458 | TEST_DUP("description", "text1", "text2"); |
| 1459 | TEST_DUP("reference", "1", "2"); |
| 1460 | TEST_DUP("status", "current", "obsolete"); |
| 1461 | #undef TEST_DUP |
| 1462 | |
| 1463 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1464 | in.current = "grp {action x;anydata any;anyxml anyxml; choice ch;container c;description test;grouping g;leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1465 | "leaf-list ll {type string;} list li;notification not;reference test;status current;typedef t {type int8;}uses g;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1466 | assert_int_equal(LY_SUCCESS, parse_grouping(YCTX, NULL, &grp)); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1467 | assert_non_null(grp); |
| 1468 | assert_int_equal(LYS_GROUPING, grp->nodetype); |
| 1469 | assert_string_equal("grp", grp->name); |
| 1470 | assert_string_equal("test", grp->dsc); |
| 1471 | assert_non_null(grp->exts); |
| 1472 | assert_string_equal("test", grp->ref); |
| 1473 | assert_null(grp->parent); |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1474 | assert_int_equal(LYS_STATUS_CURR, grp->flags); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1475 | ly_set_erase(&YCTX->tpdfs_nodes, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 1476 | ly_set_erase(&YCTX->grps_nodes, NULL); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1477 | lysp_node_free(&fctx, &grp->node); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1478 | grp = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1479 | |
| 1480 | /* invalid content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1481 | in.current = "grp {config true} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1482 | assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1483 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"grouping\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1484 | lysp_node_free(&fctx, &grp->node); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1485 | grp = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1486 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1487 | in.current = "grp {must 'expr'} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1488 | assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1489 | CHECK_LOG_CTX("Invalid keyword \"must\" as a child of \"grouping\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1490 | lysp_node_free(&fctx, &grp->node); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1491 | grp = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1492 | } |
| 1493 | |
| 1494 | static void |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1495 | test_action(void **state) |
| 1496 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1497 | struct lysp_node_action *rpcs = NULL; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1498 | struct lysp_node_container *c = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1499 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1500 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 1501 | YCTX->main_ctx = (struct lys_parser_ctx *)YCTX; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1502 | |
| 1503 | /* invalid cardinality */ |
| 1504 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1505 | in.current = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1506 | assert_int_equal(LY_EVALID, parse_action(YCTX, NULL, &rpcs)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1507 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1508 | lysp_node_free(&fctx, (struct lysp_node*)rpcs); rpcs = NULL; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1509 | |
| 1510 | TEST_DUP("description", "text1", "text2"); |
Michal Vasko | b83af8a | 2020-01-06 09:49:22 +0100 | [diff] [blame] | 1511 | TEST_DUP("input", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a"); |
| 1512 | TEST_DUP("output", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a"); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1513 | TEST_DUP("reference", "1", "2"); |
| 1514 | TEST_DUP("status", "current", "obsolete"); |
| 1515 | #undef TEST_DUP |
| 1516 | |
| 1517 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1518 | in.current = "top;"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1519 | assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1520 | in.current = "func {description test;grouping grp;if-feature f;reference test;status current;typedef mytype {type int8;} m:ext;" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1521 | "input {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}" |
| 1522 | " list li; must 1; typedef mytypei {type int8;} uses grp; m:ext;}" |
| 1523 | "output {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}" |
| 1524 | " list li; must 1; typedef mytypeo {type int8;} uses grp; m:ext;}} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1525 | assert_int_equal(LY_SUCCESS, parse_action(YCTX, (struct lysp_node *)c, &rpcs)); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1526 | assert_non_null(rpcs); |
| 1527 | assert_int_equal(LYS_ACTION, rpcs->nodetype); |
| 1528 | assert_string_equal("func", rpcs->name); |
| 1529 | assert_string_equal("test", rpcs->dsc); |
| 1530 | assert_non_null(rpcs->exts); |
| 1531 | assert_non_null(rpcs->iffeatures); |
| 1532 | assert_string_equal("test", rpcs->ref); |
| 1533 | assert_non_null(rpcs->groupings); |
| 1534 | assert_non_null(rpcs->typedefs); |
| 1535 | assert_int_equal(LYS_STATUS_CURR, rpcs->flags); |
| 1536 | /* input */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 1537 | assert_int_equal(rpcs->input.nodetype, LYS_INPUT); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1538 | assert_non_null(rpcs->input.groupings); |
| 1539 | assert_non_null(rpcs->input.exts); |
| 1540 | assert_non_null(rpcs->input.musts); |
| 1541 | assert_non_null(rpcs->input.typedefs); |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1542 | assert_non_null(rpcs->input.child); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1543 | /* output */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 1544 | assert_int_equal(rpcs->output.nodetype, LYS_OUTPUT); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1545 | assert_non_null(rpcs->output.groupings); |
| 1546 | assert_non_null(rpcs->output.exts); |
| 1547 | assert_non_null(rpcs->output.musts); |
| 1548 | assert_non_null(rpcs->output.typedefs); |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1549 | assert_non_null(rpcs->output.child); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1550 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1551 | ly_set_erase(&YCTX->tpdfs_nodes, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 1552 | ly_set_erase(&YCTX->grps_nodes, NULL); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1553 | lysp_node_free(&fctx, (struct lysp_node *)rpcs); rpcs = NULL; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1554 | |
| 1555 | /* invalid content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1556 | in.current = "func {config true} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1557 | assert_int_equal(LY_EVALID, parse_action(YCTX, NULL, &rpcs)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1558 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"rpc\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1559 | lysp_node_free(&fctx, (struct lysp_node *)rpcs); rpcs = NULL; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1560 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1561 | lysp_node_free(&fctx, (struct lysp_node *)c); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1562 | } |
| 1563 | |
| 1564 | static void |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1565 | test_notification(void **state) |
| 1566 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1567 | struct lysp_node_notif *notifs = NULL; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1568 | struct lysp_node_container *c = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1569 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1570 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 1571 | YCTX->main_ctx = (struct lys_parser_ctx *)YCTX; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1572 | |
| 1573 | /* invalid cardinality */ |
| 1574 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1575 | in.current = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1576 | assert_int_equal(LY_EVALID, parse_notif(YCTX, NULL, ¬ifs)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1577 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1578 | lysp_node_free(&fctx, (struct lysp_node*)notifs); notifs = NULL; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1579 | |
| 1580 | TEST_DUP("description", "text1", "text2"); |
| 1581 | TEST_DUP("reference", "1", "2"); |
| 1582 | TEST_DUP("status", "current", "obsolete"); |
| 1583 | #undef TEST_DUP |
| 1584 | |
| 1585 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1586 | in.current = "top;"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1587 | assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c)); |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1588 | in.current = "ntf {anydata a1; anyxml a2; choice ch; container c; description test; grouping grp; if-feature f; leaf l {type int8;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1589 | "leaf-list ll {type int8;} list li; must 1; reference test; status current; typedef mytype {type int8;} uses grp; m:ext;}"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1590 | assert_int_equal(LY_SUCCESS, parse_notif(YCTX, (struct lysp_node *)c, ¬ifs)); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1591 | assert_non_null(notifs); |
| 1592 | assert_int_equal(LYS_NOTIF, notifs->nodetype); |
| 1593 | assert_string_equal("ntf", notifs->name); |
| 1594 | assert_string_equal("test", notifs->dsc); |
| 1595 | assert_non_null(notifs->exts); |
| 1596 | assert_non_null(notifs->iffeatures); |
| 1597 | assert_string_equal("test", notifs->ref); |
| 1598 | assert_non_null(notifs->groupings); |
| 1599 | assert_non_null(notifs->typedefs); |
| 1600 | assert_non_null(notifs->musts); |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1601 | assert_non_null(notifs->child); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1602 | assert_int_equal(LYS_STATUS_CURR, notifs->flags); |
| 1603 | |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1604 | ly_set_erase(&YCTX->tpdfs_nodes, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 1605 | ly_set_erase(&YCTX->grps_nodes, NULL); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1606 | lysp_node_free(&fctx, (struct lysp_node *)notifs); notifs = NULL; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1607 | |
| 1608 | /* invalid content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1609 | in.current = "ntf {config true} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1610 | assert_int_equal(LY_EVALID, parse_notif(YCTX, NULL, ¬ifs)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1611 | CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"notification\".", "Line number 1."); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1612 | lysp_node_free(&fctx, (struct lysp_node *)notifs); notifs = NULL; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1613 | |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1614 | lysp_node_free(&fctx, (struct lysp_node *)c); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1615 | } |
| 1616 | |
| 1617 | static void |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1618 | test_uses(void **state) |
| 1619 | { |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1620 | struct lysp_node_uses *u = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1621 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1622 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1623 | |
| 1624 | /* invalid cardinality */ |
| 1625 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1626 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1627 | assert_int_equal(LY_EVALID, parse_uses(YCTX, NULL, (struct lysp_node**)&u)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1628 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1629 | lysp_node_free(&fctx, (struct lysp_node*)u); u = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1630 | |
| 1631 | TEST_DUP("description", "text1", "text2"); |
| 1632 | TEST_DUP("reference", "1", "2"); |
| 1633 | TEST_DUP("status", "current", "obsolete"); |
| 1634 | TEST_DUP("when", "true", "false"); |
| 1635 | #undef TEST_DUP |
| 1636 | |
| 1637 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1638 | in.current = "grpref {augment some/node;description test;if-feature f;reference test;refine some/other/node;status current;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1639 | assert_int_equal(LY_SUCCESS, parse_uses(YCTX, NULL, (struct lysp_node **)&u)); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1640 | CHECK_LYSP_NODE(u, "test", 1, LYS_STATUS_CURR, 1, "grpref", 0, LYS_USES, 0, "test", 1); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1641 | assert_non_null(u->augments); |
| 1642 | assert_non_null(u->refines); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1643 | lysp_node_free(&fctx, (struct lysp_node *)u); u = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1644 | } |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1645 | |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1646 | static void |
| 1647 | test_augment(void **state) |
| 1648 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1649 | struct lysp_node_augment *a = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1650 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1651 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1652 | |
| 1653 | /* invalid cardinality */ |
| 1654 | #define TEST_DUP(MEMBER, VALUE1, VALUE2) \ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1655 | in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1656 | assert_int_equal(LY_EVALID, parse_augment(YCTX, NULL, &a)); \ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1657 | CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \ |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1658 | lysp_node_free(&fctx, (struct lysp_node *)a); a = NULL; |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1659 | |
| 1660 | TEST_DUP("description", "text1", "text2"); |
| 1661 | TEST_DUP("reference", "1", "2"); |
| 1662 | TEST_DUP("status", "current", "obsolete"); |
| 1663 | TEST_DUP("when", "true", "false"); |
| 1664 | #undef TEST_DUP |
| 1665 | |
| 1666 | /* full content */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1667 | in.current = "/target/nodeid {action x; anydata any;anyxml anyxml; case cs; choice ch;container c;description test;if-feature f;leaf l {type string;}" |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1668 | "leaf-list ll {type string;} list li;notification not;reference test;status current;uses g;when true;m:ext;} ..."; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1669 | assert_int_equal(LY_SUCCESS, parse_augment(YCTX, NULL, &a)); |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1670 | assert_non_null(a); |
| 1671 | assert_int_equal(LYS_AUGMENT, a->nodetype); |
| 1672 | assert_string_equal("/target/nodeid", a->nodeid); |
| 1673 | assert_string_equal("test", a->dsc); |
| 1674 | assert_non_null(a->exts); |
| 1675 | assert_non_null(a->iffeatures); |
| 1676 | assert_string_equal("test", a->ref); |
| 1677 | assert_non_null(a->when); |
| 1678 | assert_null(a->parent); |
| 1679 | assert_int_equal(LYS_STATUS_CURR, a->flags); |
Michal Vasko | c636ea4 | 2022-09-16 10:20:31 +0200 | [diff] [blame^] | 1680 | lysp_node_free(&fctx, (struct lysp_node *)a); a = NULL; |
Radek Krejci | 5a7c4a5 | 2019-02-12 15:45:11 +0100 | [diff] [blame] | 1681 | } |
| 1682 | |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 1683 | static void |
| 1684 | test_when(void **state) |
| 1685 | { |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 1686 | struct lysp_when *w = NULL; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1687 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1688 | PARSER_CUR_PMOD(YCTX)->version = 2; /* simulate YANG 1.1 */ |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 1689 | |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1690 | in.current = "l { description text1;description text2;} ..."; |
| 1691 | assert_int_equal(LY_EVALID, parse_when(YCTX, &w)); |
| 1692 | assert_null(w); |
| 1693 | CHECK_LOG_CTX("Duplicate keyword \"description\".", "Line number 1."); |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 1694 | |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1695 | in.current = "l { reference 1;reference 2;} ..."; |
| 1696 | assert_int_equal(LY_EVALID, parse_when(YCTX, &w)); |
| 1697 | assert_null(w); |
| 1698 | CHECK_LOG_CTX("Duplicate keyword \"reference\".", "Line number 1."); |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 1699 | } |
| 1700 | |
David Sedlák | d6ce6d7 | 2019-07-16 17:30:18 +0200 | [diff] [blame] | 1701 | static void |
| 1702 | test_value(void **state) |
| 1703 | { |
David Sedlák | d6ce6d7 | 2019-07-16 17:30:18 +0200 | [diff] [blame] | 1704 | int64_t val = 0; |
| 1705 | uint16_t flags = 0; |
| 1706 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1707 | in.current = "-0;"; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1708 | assert_int_equal(parse_type_enum_value_pos(YCTX, LY_STMT_VALUE, &val, &flags, NULL), LY_SUCCESS); |
David Sedlák | d6ce6d7 | 2019-07-16 17:30:18 +0200 | [diff] [blame] | 1709 | assert_int_equal(val, 0); |
| 1710 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1711 | in.current = "-0;"; |
David Sedlák | d6ce6d7 | 2019-07-16 17:30:18 +0200 | [diff] [blame] | 1712 | flags = 0; |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 1713 | assert_int_equal(parse_type_enum_value_pos(YCTX, LY_STMT_POSITION, &val, &flags, NULL), LY_EVALID); |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1714 | CHECK_LOG_CTX("Invalid value \"-0\" of \"position\".", "Line number 1."); |
David Sedlák | d6ce6d7 | 2019-07-16 17:30:18 +0200 | [diff] [blame] | 1715 | } |
| 1716 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 1717 | int |
| 1718 | main(void) |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 1719 | { |
| 1720 | const struct CMUnitTest tests[] = { |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1721 | UTEST(test_helpers, setup, teardown), |
| 1722 | UTEST(test_comments, setup, teardown), |
| 1723 | UTEST(test_arg, setup, teardown), |
| 1724 | UTEST(test_stmts, setup, teardown), |
| 1725 | UTEST(test_minmax, setup, teardown), |
Michal Vasko | 12ef536 | 2022-09-16 15:13:58 +0200 | [diff] [blame] | 1726 | UTEST(test_valid_module, setup, teardown), |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 1727 | UTEST(test_module, setup, teardown), |
| 1728 | UTEST(test_deviation, setup, teardown), |
| 1729 | UTEST(test_deviate, setup, teardown), |
| 1730 | UTEST(test_container, setup, teardown), |
| 1731 | UTEST(test_leaf, setup, teardown), |
| 1732 | UTEST(test_leaflist, setup, teardown), |
| 1733 | UTEST(test_list, setup, teardown), |
| 1734 | UTEST(test_choice, setup, teardown), |
| 1735 | UTEST(test_case, setup, teardown), |
| 1736 | UTEST(test_anydata, setup, teardown), |
| 1737 | UTEST(test_anyxml, setup, teardown), |
| 1738 | UTEST(test_action, setup, teardown), |
| 1739 | UTEST(test_notification, setup, teardown), |
| 1740 | UTEST(test_grouping, setup, teardown), |
| 1741 | UTEST(test_uses, setup, teardown), |
| 1742 | UTEST(test_augment, setup, teardown), |
| 1743 | UTEST(test_when, setup, teardown), |
| 1744 | UTEST(test_value, setup, teardown), |
Radek Krejci | 80dd33e | 2018-09-26 15:57:18 +0200 | [diff] [blame] | 1745 | }; |
| 1746 | |
| 1747 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 1748 | } |