blob: f1ab8dab9c17de6fce5e779667d1d8c64386ae7b [file] [log] [blame]
Radek Krejci80dd33e2018-09-26 15:57:18 +02001/*
2 * @file test_parser_yang.c
3 * @author: Radek Krejci <rkrejci@cesnet.cz>
4 * @brief unit tests for functions from parser_yang.c
5 *
Radek Iša56ca9e42020-09-08 18:42:00 +02006 * Copyright (c) 2018-2020 CESNET, z.s.p.o.
Radek Krejci80dd33e2018-09-26 15:57:18 +02007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Iša56ca9e42020-09-08 18:42:00 +020014#define _UTEST_MAIN_
15#include "utests.h"
Radek Krejci80dd33e2018-09-26 15:57:18 +020016
Radek Krejci80dd33e2018-09-26 15:57:18 +020017#include <stdio.h>
18#include <string.h>
19
Radek Krejci70593c12020-06-13 20:48:09 +020020#include "common.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020021#include "in_internal.h"
Radek Krejci70593c12020-06-13 20:48:09 +020022#include "parser_internal.h"
Michal Vasko405cc9e2020-12-01 12:01:27 +010023#include "schema_compile.h"
Radek Krejci70593c12020-06-13 20:48:09 +020024#include "tree_schema.h"
25#include "tree_schema_internal.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020026
27/* originally static functions from tree_schema_free.c and parser_yang.c */
28void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020029void lysp_deviation_free(struct ly_ctx *ctx, struct lysp_deviation *dev);
30void lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp);
31void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action);
32void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif);
33void lysp_augment_free(struct ly_ctx *ctx, struct lysp_augment *augment);
34void lysp_deviate_free(struct ly_ctx *ctx, struct lysp_deviate *d);
35void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
Radek Krejcif09e4e82019-06-14 15:08:11 +020036void lysp_when_free(struct ly_ctx *ctx, struct lysp_when *when);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020037
Michal Vasko63f3d842020-07-08 10:10:14 +020038LY_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 Krejci33090f92020-12-17 20:12:46 +010039LY_ERR buf_store_char(struct lys_yang_parser_ctx *ctx, enum yang_arg arg, char **word_p,
Radek Krejcib4ac5a92020-11-23 17:54:33 +010040 size_t *word_len, char **word_b, size_t *buf_len, uint8_t need_buf, uint8_t *prefix);
Radek Krejci33090f92020-12-17 20:12:46 +010041LY_ERR get_keyword(struct lys_yang_parser_ctx *ctx, enum ly_stmt *kw, char **word_p, size_t *word_len);
42LY_ERR get_argument(struct lys_yang_parser_ctx *ctx, enum yang_arg arg,
Radek Krejcib4ac5a92020-11-23 17:54:33 +010043 uint16_t *flags, char **word_p, char **word_b, size_t *word_len);
Radek Krejci33090f92020-12-17 20:12:46 +010044LY_ERR skip_comment(struct lys_yang_parser_ctx *ctx, uint8_t comment);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020045
Radek Krejci33090f92020-12-17 20:12:46 +010046LY_ERR parse_action(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_action **actions);
47LY_ERR parse_any(struct lys_yang_parser_ctx *ctx, enum ly_stmt kw, struct lysp_node *parent, struct lysp_node **siblings);
48LY_ERR parse_augment(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_augment **augments);
49LY_ERR parse_case(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
50LY_ERR parse_container(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
51LY_ERR parse_deviate(struct lys_yang_parser_ctx *ctx, struct lysp_deviate **deviates);
52LY_ERR parse_deviation(struct lys_yang_parser_ctx *ctx, struct lysp_deviation **deviations);
53LY_ERR parse_grouping(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_grp **groupings);
54LY_ERR parse_choice(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
55LY_ERR parse_leaf(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
56LY_ERR parse_leaflist(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
57LY_ERR parse_list(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
58LY_ERR parse_maxelements(struct lys_yang_parser_ctx *ctx, uint32_t *max, uint16_t *flags, struct lysp_ext_instance **exts);
59LY_ERR parse_minelements(struct lys_yang_parser_ctx *ctx, uint32_t *min, uint16_t *flags, struct lysp_ext_instance **exts);
60LY_ERR parse_module(struct lys_yang_parser_ctx *ctx, struct lysp_module *mod);
61LY_ERR parse_notif(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_notif **notifs);
62LY_ERR parse_submodule(struct lys_yang_parser_ctx *ctx, struct lysp_submodule *submod);
63LY_ERR parse_uses(struct lys_yang_parser_ctx *ctx, struct lysp_node *parent, struct lysp_node **siblings);
64LY_ERR parse_when(struct lys_yang_parser_ctx *ctx, struct lysp_when **when_p);
65LY_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 Krejci80dd33e2018-09-26 15:57:18 +020066
Radek Iša56ca9e42020-09-08 18:42:00 +020067struct lys_yang_parser_ctx *YCTX;
Radek Krejci80dd33e2018-09-26 15:57:18 +020068
Radek Krejci33090f92020-12-17 20:12:46 +010069#define YCTX_INIT \
70 struct ly_in in = {0}; \
Radek Krejcid54412f2020-12-17 20:25:35 +010071 in.line = 1; \
Radek Krejci2efc45b2020-12-22 16:25:44 +010072 YCTX->in = &in; \
73 LOG_LOCINIT(UTEST_LYCTX, NULL, NULL, NULL, &in)
Radek Krejci33090f92020-12-17 20:12:46 +010074
Michal Vasko5d24f6c2020-10-13 13:49:06 +020075static int
Radek Iša56ca9e42020-09-08 18:42:00 +020076setup(void **state)
Michal Vasko5d24f6c2020-10-13 13:49:06 +020077{
Radek Iša56ca9e42020-09-08 18:42:00 +020078 UTEST_SETUP;
Michal Vasko5d24f6c2020-10-13 13:49:06 +020079
Radek Iša56ca9e42020-09-08 18:42:00 +020080 /* allocate parser context */
81 YCTX = calloc(1, sizeof(*YCTX));
82 YCTX->format = LYS_IN_YANG;
Michal Vasko5d24f6c2020-10-13 13:49:06 +020083
Radek Iša56ca9e42020-09-08 18:42:00 +020084 /* allocate new parsed module */
85 YCTX->parsed_mod = calloc(1, sizeof *YCTX->parsed_mod);
Michal Vasko5d24f6c2020-10-13 13:49:06 +020086
Radek Iša56ca9e42020-09-08 18:42:00 +020087 /* allocate new module */
88 YCTX->parsed_mod->mod = calloc(1, sizeof *YCTX->parsed_mod->mod);
89 YCTX->parsed_mod->mod->ctx = UTEST_LYCTX;
90 YCTX->parsed_mod->mod->parsed = YCTX->parsed_mod;
Michal Vasko5d24f6c2020-10-13 13:49:06 +020091
Michal Vasko5d24f6c2020-10-13 13:49:06 +020092 return 0;
93}
94
95static int
Radek Iša56ca9e42020-09-08 18:42:00 +020096teardown(void **state)
Michal Vasko5d24f6c2020-10-13 13:49:06 +020097{
Radek Iša56ca9e42020-09-08 18:42:00 +020098 lys_module_free(YCTX->parsed_mod->mod, NULL);
99 free(YCTX);
100 YCTX = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200101
Radek Iša56ca9e42020-09-08 18:42:00 +0200102 UTEST_TEARDOWN;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200103
104 return 0;
105}
106
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200107#define TEST_DUP_GENERIC(PREFIX, MEMBER, VALUE1, VALUE2, FUNC, RESULT, LINE, CLEANUP) \
Michal Vasko63f3d842020-07-08 10:10:14 +0200108 in.current = PREFIX MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +0100109 assert_int_equal(LY_EVALID, FUNC(YCTX, RESULT)); \
Radek Iša56ca9e42020-09-08 18:42:00 +0200110 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number "LINE".");\
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200111 CLEANUP
Radek Krejci44ceedc2018-10-02 15:54:31 +0200112static void
113test_helpers(void **state)
114{
Radek Krejci404251e2018-10-09 12:06:44 +0200115 char *buf, *p;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200116 size_t len, size;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200117 uint8_t prefix = 0;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200118
Radek Krejci33090f92020-12-17 20:12:46 +0100119 YCTX_INIT;
120
Radek Krejci44ceedc2018-10-02 15:54:31 +0200121 /* storing into buffer */
Michal Vasko63f3d842020-07-08 10:10:14 +0200122 in.current = "abcd";
Radek Krejci44ceedc2018-10-02 15:54:31 +0200123 buf = NULL;
124 size = len = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200125 assert_int_equal(LY_SUCCESS, buf_add_char(NULL, &in, 2, &buf, &size, &len));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200126 assert_int_not_equal(0, size);
127 assert_int_equal(2, len);
Michal Vasko63f3d842020-07-08 10:10:14 +0200128 assert_string_equal("cd", in.current);
Radek Krejci44ceedc2018-10-02 15:54:31 +0200129 assert_false(strncmp("ab", buf, 2));
130 free(buf);
Radek Krejci404251e2018-10-09 12:06:44 +0200131 buf = NULL;
132
133 /* invalid first characters */
134 len = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200135 in.current = "2invalid";
Radek Krejci33090f92020-12-17 20:12:46 +0100136 assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Michal Vasko63f3d842020-07-08 10:10:14 +0200137 in.current = ".invalid";
Radek Krejci33090f92020-12-17 20:12:46 +0100138 assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Michal Vasko63f3d842020-07-08 10:10:14 +0200139 in.current = "-invalid";
Radek Krejci33090f92020-12-17 20:12:46 +0100140 assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200141 /* invalid following characters */
142 len = 3; /* number of characters read before the str content */
Michal Vasko63f3d842020-07-08 10:10:14 +0200143 in.current = "!";
Radek Krejci33090f92020-12-17 20:12:46 +0100144 assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Michal Vasko63f3d842020-07-08 10:10:14 +0200145 in.current = ":";
Radek Krejci33090f92020-12-17 20:12:46 +0100146 assert_int_equal(LY_EVALID, buf_store_char(YCTX, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200147 /* valid colon for prefixed identifiers */
148 len = size = 0;
149 p = NULL;
David Sedlák40bb13b2019-07-10 14:34:18 +0200150 prefix = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200151 in.current = "x:id";
Radek Krejci33090f92020-12-17 20:12:46 +0100152 assert_int_equal(LY_SUCCESS, buf_store_char(YCTX, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 0, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200153 assert_int_equal(1, len);
154 assert_null(buf);
Michal Vasko63f3d842020-07-08 10:10:14 +0200155 assert_string_equal(":id", in.current);
Radek Krejci404251e2018-10-09 12:06:44 +0200156 assert_int_equal('x', p[len - 1]);
Radek Krejci33090f92020-12-17 20:12:46 +0100157 assert_int_equal(LY_SUCCESS, buf_store_char(YCTX, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200158 assert_int_equal(2, len);
Michal Vasko63f3d842020-07-08 10:10:14 +0200159 assert_string_equal("id", in.current);
Radek Krejci404251e2018-10-09 12:06:44 +0200160 assert_int_equal(':', p[len - 1]);
161 free(buf);
David Sedlák40bb13b2019-07-10 14:34:18 +0200162 prefix = 0;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200163
164 /* checking identifiers */
Radek Iša56ca9e42020-09-08 18:42:00 +0200165 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, NULL));
166 CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1.");
167 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, '#', 1, NULL));
168 CHECK_LOG_CTX("Invalid identifier first character '#' (0x0023).", "Line number 1.");
Radek Krejci44ceedc2018-10-02 15:54:31 +0200169
Radek Iša56ca9e42020-09-08 18:42:00 +0200170 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, 'a', 1, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200171 assert_int_equal(0, prefix);
Radek Iša56ca9e42020-09-08 18:42:00 +0200172 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200173 assert_int_equal(1, prefix);
Radek Iša56ca9e42020-09-08 18:42:00 +0200174 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix));
Radek Krejcidcc7b322018-10-11 14:24:02 +0200175 assert_int_equal(1, prefix);
Radek Iša56ca9e42020-09-08 18:42:00 +0200176 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, 'b', 0, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200177 assert_int_equal(2, prefix);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200178 /* second colon is invalid */
Radek Iša56ca9e42020-09-08 18:42:00 +0200179 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)YCTX, ':', 0, &prefix));
180 CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1.");
Radek Krejci44ceedc2018-10-02 15:54:31 +0200181}
Radek Krejci80dd33e2018-09-26 15:57:18 +0200182
Radek Krejcidd713ce2021-01-04 23:12:12 +0100183#define TEST_GET_ARGUMENT_SUCCESS(INPUT_TEXT, CTX, ARG_TYPE, EXPECT_WORD, EXPECT_LEN, EXPECT_CURRENT, EXPECT_LINE)\
Radek Iša56ca9e42020-09-08 18:42:00 +0200184 {\
Radek Krejcidd713ce2021-01-04 23:12:12 +0100185 const char * text = INPUT_TEXT;\
186 in.line = 1;\
Radek Iša56ca9e42020-09-08 18:42:00 +0200187 in.current = text;\
Radek Krejci33090f92020-12-17 20:12:46 +0100188 assert_int_equal(LY_SUCCESS, get_argument(CTX, Y_MAYBE_STR_ARG, NULL, &word, &buf, &len));\
Radek Iša56ca9e42020-09-08 18:42:00 +0200189 assert_string_equal(word, EXPECT_WORD);\
190 assert_int_equal(len, EXPECT_LEN);\
191 assert_string_equal(EXPECT_CURRENT, in.current);\
Radek Krejcidd713ce2021-01-04 23:12:12 +0100192 assert_int_equal(EXPECT_LINE, in.line);\
Radek Iša56ca9e42020-09-08 18:42:00 +0200193 }
194
Radek Krejci80dd33e2018-09-26 15:57:18 +0200195static void
196test_comments(void **state)
197{
Radek Krejciefd22f62018-09-27 11:47:58 +0200198 char *word, *buf;
199 size_t len;
Radek Krejci80dd33e2018-09-26 15:57:18 +0200200
Radek Krejci33090f92020-12-17 20:12:46 +0100201 YCTX_INIT;
202
Radek Krejcidd713ce2021-01-04 23:12:12 +0100203 TEST_GET_ARGUMENT_SUCCESS(" // this is a text of / one * line */ comment\nargument;",
204 YCTX, Y_STR_ARG, "argument;", 8, ";", 2);
Radek Krejciefd22f62018-09-27 11:47:58 +0200205 assert_null(buf);
Radek Krejci80dd33e2018-09-26 15:57:18 +0200206
Radek Krejcidd713ce2021-01-04 23:12:12 +0100207 TEST_GET_ARGUMENT_SUCCESS("/* this is a \n * text // of / block * comment */\"arg\" + \"ume\" \n + \n \"nt\";",
208 YCTX, Y_STR_ARG, "argument", 8, ";", 4);
Radek Krejciefd22f62018-09-27 11:47:58 +0200209 assert_ptr_equal(buf, word);
Radek Krejciefd22f62018-09-27 11:47:58 +0200210 free(word);
Radek Krejci80dd33e2018-09-26 15:57:18 +0200211
Radek Krejcidd713ce2021-01-04 23:12:12 +0100212 in.line = 1;
Michal Vasko63f3d842020-07-08 10:10:14 +0200213 in.current = " this is one line comment on last line";
Radek Krejci33090f92020-12-17 20:12:46 +0100214 assert_int_equal(LY_SUCCESS, skip_comment(YCTX, 1));
Michal Vasko63f3d842020-07-08 10:10:14 +0200215 assert_true(in.current[0] == '\0');
Radek Krejci80dd33e2018-09-26 15:57:18 +0200216
Radek Krejcidd713ce2021-01-04 23:12:12 +0100217 in.line = 1;
Michal Vasko63f3d842020-07-08 10:10:14 +0200218 in.current = " this is a not terminated comment x";
Radek Krejci33090f92020-12-17 20:12:46 +0100219 assert_int_equal(LY_EVALID, skip_comment(YCTX, 2));
Radek Krejcidd713ce2021-01-04 23:12:12 +0100220 CHECK_LOG_CTX("Unexpected end-of-input, non-terminated comment.", "Line number 1.");
Michal Vasko63f3d842020-07-08 10:10:14 +0200221 assert_true(in.current[0] == '\0');
Radek Krejci80dd33e2018-09-26 15:57:18 +0200222}
223
Radek Krejciefd22f62018-09-27 11:47:58 +0200224static void
225test_arg(void **state)
226{
Radek Krejciefd22f62018-09-27 11:47:58 +0200227 char *word, *buf;
228 size_t len;
229
Radek Krejci33090f92020-12-17 20:12:46 +0100230 YCTX_INIT;
231
Radek Krejciefd22f62018-09-27 11:47:58 +0200232 /* missing argument */
Michal Vasko63f3d842020-07-08 10:10:14 +0200233 in.current = ";";
Radek Krejci33090f92020-12-17 20:12:46 +0100234 assert_int_equal(LY_SUCCESS, get_argument(YCTX, Y_MAYBE_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200235 assert_null(word);
236
Michal Vasko63f3d842020-07-08 10:10:14 +0200237 in.current = "{";
Radek Krejci33090f92020-12-17 20:12:46 +0100238 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200239 CHECK_LOG_CTX("Invalid character sequence \"{\", expected an argument.", "Line number 1.");
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200240
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200241 /* invalid escape sequence */
Michal Vasko63f3d842020-07-08 10:10:14 +0200242 in.current = "\"\\s\"";
Radek Krejci33090f92020-12-17 20:12:46 +0100243 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200244 CHECK_LOG_CTX("Double-quoted string unknown special character \'\\s\'.", "Line number 1.");
245
Radek Krejcidd713ce2021-01-04 23:12:12 +0100246 TEST_GET_ARGUMENT_SUCCESS("\'\\s\'", YCTX, Y_STR_ARG, "\\s\'", 2, "", 1);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200247
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200248 /* invalid character after the argument */
Michal Vasko63f3d842020-07-08 10:10:14 +0200249 in.current = "hello\"";
Radek Krejci33090f92020-12-17 20:12:46 +0100250 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200251 CHECK_LOG_CTX("Invalid character sequence \"\"\", expected unquoted string character, optsep, semicolon or opening brace.", "Line number 1.");
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200252
Radek Iša56ca9e42020-09-08 18:42:00 +0200253 in.current = "hello}";
Radek Krejci33090f92020-12-17 20:12:46 +0100254 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200255 CHECK_LOG_CTX("Invalid character sequence \"}\", expected unquoted string character, optsep, semicolon or opening brace.", "Line number 1.");
David Sedlák40bb13b2019-07-10 14:34:18 +0200256 /* invalid identifier-ref-arg-str */
Michal Vasko63f3d842020-07-08 10:10:14 +0200257 in.current = "pre:pre:value";
Radek Krejci33090f92020-12-17 20:12:46 +0100258 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200259 CHECK_LOG_CTX("Invalid identifier character ':' (0x003a).", "Line number 1.");
David Sedlák40bb13b2019-07-10 14:34:18 +0200260
Michal Vasko63f3d842020-07-08 10:10:14 +0200261 in.current = "\"\";"; /* empty identifier is not allowed */
Radek Krejci33090f92020-12-17 20:12:46 +0100262 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_IDENTIF_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200263 CHECK_LOG_CTX("Statement argument is required.", "Line number 1.");
264
Michal Vasko63f3d842020-07-08 10:10:14 +0200265 in.current = "\"\";"; /* empty reference identifier is not allowed */
Radek Krejci33090f92020-12-17 20:12:46 +0100266 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200267 CHECK_LOG_CTX("Statement argument is required.", "Line number 1.");
Radek Krejci4e199f52019-05-28 09:09:28 +0200268
Radek Iša56ca9e42020-09-08 18:42:00 +0200269 /* slash is not an invalid character */
Radek Krejcidd713ce2021-01-04 23:12:12 +0100270 TEST_GET_ARGUMENT_SUCCESS("hello/x\t", YCTX, Y_STR_ARG, "hello/x\t", 7, "\t", 1);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200271 assert_null(buf);
Radek Krejciefd22f62018-09-27 11:47:58 +0200272
273 /* different quoting */
Radek Krejcidd713ce2021-01-04 23:12:12 +0100274 TEST_GET_ARGUMENT_SUCCESS("hello/x\t", YCTX, Y_STR_ARG, "hello/x\t", 7, "\t", 1);
Radek Krejciefd22f62018-09-27 11:47:58 +0200275
Radek Krejcidd713ce2021-01-04 23:12:12 +0100276 TEST_GET_ARGUMENT_SUCCESS("hello ", YCTX, Y_STR_ARG, "hello ", 5, " ", 1);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200277
Radek Krejcidd713ce2021-01-04 23:12:12 +0100278 TEST_GET_ARGUMENT_SUCCESS("hello/*comment*/\n", YCTX, Y_STR_ARG, "hello/*comment*/\n", 5, "\n", 1);
Radek Iša56ca9e42020-09-08 18:42:00 +0200279
Radek Krejcidd713ce2021-01-04 23:12:12 +0100280 TEST_GET_ARGUMENT_SUCCESS("\"hello\\n\\t\\\"\\\\\";", YCTX, Y_STR_ARG, "hello\n\t\"\\", 9, ";", 1);
fredgand49fe112019-10-21 20:51:50 +0800281 free(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200282
Radek Iša56ca9e42020-09-08 18:42:00 +0200283 YCTX->indent = 14;
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200284 /* - space and tabs before newline are stripped out
285 * - space and tabs after newline (indentation) are stripped out
286 */
Radek Krejcidd713ce2021-01-04 23:12:12 +0100287 TEST_GET_ARGUMENT_SUCCESS("\"hello \t\n\t\t world!\"", YCTX, Y_STR_ARG, "hello\n world!", 14, "", 2);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200288 free(buf);
Radek Iša56ca9e42020-09-08 18:42:00 +0200289
290/* In contrast to previous, the backslash-escaped tabs are expanded after trimming, so they are preserved */
291 YCTX->indent = 14;
Radek Krejcidd713ce2021-01-04 23:12:12 +0100292 TEST_GET_ARGUMENT_SUCCESS("\"hello \\t\n\t\\t world!\"", YCTX, Y_STR_ARG, "hello \t\n\t world!", 16, "", 2);
Radek Krejciff13cd12019-10-25 15:34:24 +0200293 assert_ptr_equal(word, buf);
Radek Krejciff13cd12019-10-25 15:34:24 +0200294 free(buf);
Radek Iša56ca9e42020-09-08 18:42:00 +0200295
Radek Krejciff13cd12019-10-25 15:34:24 +0200296 /* Do not handle whitespaces after backslash-escaped newline as indentation */
Radek Iša56ca9e42020-09-08 18:42:00 +0200297 YCTX->indent = 14;
Radek Krejcidd713ce2021-01-04 23:12:12 +0100298 TEST_GET_ARGUMENT_SUCCESS("\"hello\\n\t\t world!\"", YCTX, Y_STR_ARG, "hello\n\t\t world!", 15, "", 1);
Radek Krejciff13cd12019-10-25 15:34:24 +0200299 assert_ptr_equal(word, buf);
Radek Krejciff13cd12019-10-25 15:34:24 +0200300 free(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200301
Radek Iša56ca9e42020-09-08 18:42:00 +0200302 YCTX->indent = 14;
Radek Krejcidd713ce2021-01-04 23:12:12 +0100303 TEST_GET_ARGUMENT_SUCCESS("\"hello\n \tworld!\"", YCTX, Y_STR_ARG, "hello\nworld!", 12, "", 2);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200304 assert_ptr_equal(word, buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200305 free(buf);
Radek Krejciefd22f62018-09-27 11:47:58 +0200306
Radek Krejcidd713ce2021-01-04 23:12:12 +0100307 TEST_GET_ARGUMENT_SUCCESS("\'hello\'", YCTX, Y_STR_ARG, "hello'", 5, "", 1);
Radek Krejciefd22f62018-09-27 11:47:58 +0200308
Radek Krejcidd713ce2021-01-04 23:12:12 +0100309 TEST_GET_ARGUMENT_SUCCESS("\"hel\" +\t\n\"lo\"", YCTX, Y_STR_ARG, "hello", 5, "", 2);
Radek Krejciefd22f62018-09-27 11:47:58 +0200310 assert_ptr_equal(word, buf);
Radek Krejciefd22f62018-09-27 11:47:58 +0200311 free(buf);
Radek Iša56ca9e42020-09-08 18:42:00 +0200312
Radek Krejcidd713ce2021-01-04 23:12:12 +0100313 in.line = 1;
Michal Vasko63f3d842020-07-08 10:10:14 +0200314 in.current = "\"hel\" +\t\nlo"; /* unquoted the second part */
Radek Krejci33090f92020-12-17 20:12:46 +0100315 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcidd713ce2021-01-04 23:12:12 +0100316 CHECK_LOG_CTX("Both string parts divided by '+' must be quoted.", "Line number 2.");
Radek Krejciefd22f62018-09-27 11:47:58 +0200317
Radek Krejcidd713ce2021-01-04 23:12:12 +0100318 TEST_GET_ARGUMENT_SUCCESS("\'he\'\t\n+ \"llo\"", YCTX, Y_STR_ARG, "hello", 5, "", 2);
Radek Krejciefd22f62018-09-27 11:47:58 +0200319 free(buf);
320
Radek Krejcidd713ce2021-01-04 23:12:12 +0100321 TEST_GET_ARGUMENT_SUCCESS(" \t\n\"he\"+\'llo\'", YCTX, Y_STR_ARG, "hello", 5, "", 2);
Radek Krejciefd22f62018-09-27 11:47:58 +0200322 free(buf);
323
Radek Krejci44ceedc2018-10-02 15:54:31 +0200324 /* missing argument */
Radek Krejcidd713ce2021-01-04 23:12:12 +0100325 in.line = 1;
Michal Vasko63f3d842020-07-08 10:10:14 +0200326 in.current = ";";
Radek Krejci33090f92020-12-17 20:12:46 +0100327 assert_int_equal(LY_EVALID, get_argument(YCTX, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcidd713ce2021-01-04 23:12:12 +0100328 CHECK_LOG_CTX("Invalid character sequence \";\", expected an argument.", "Line number 1.");
Radek Krejcidcc7b322018-10-11 14:24:02 +0200329}
330
Radek Iša56ca9e42020-09-08 18:42:00 +0200331#define TEST_STMS_SUCCESS(INPUT_TEXT, CTX, ACTION, EXPECT_WORD)\
332 in.current = INPUT_TEXT;\
Radek Krejci33090f92020-12-17 20:12:46 +0100333 assert_int_equal(LY_SUCCESS, get_keyword(CTX, &kw, &word, &len));\
Radek Iša56ca9e42020-09-08 18:42:00 +0200334 assert_int_equal(ACTION, kw);\
335 assert_int_equal(strlen(EXPECT_WORD), len);\
336 assert_true(0 == strncmp(EXPECT_WORD, word, len))
337
Radek Krejcidcc7b322018-10-11 14:24:02 +0200338static void
339test_stmts(void **state)
340{
Michal Vasko63f3d842020-07-08 10:10:14 +0200341 const char *p;
Radek Krejcid6b76452019-09-03 17:03:03 +0200342 enum ly_stmt kw;
Radek Krejcidcc7b322018-10-11 14:24:02 +0200343 char *word;
344 size_t len;
345
Radek Krejci33090f92020-12-17 20:12:46 +0100346 YCTX_INIT;
347
Michal Vasko63f3d842020-07-08 10:10:14 +0200348 in.current = "\n// comment\n\tinput\t{";
Radek Krejci33090f92020-12-17 20:12:46 +0100349 assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200350 assert_int_equal(LY_STMT_INPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200351 assert_int_equal(5, len);
352 assert_string_equal("input\t{", word);
Michal Vasko63f3d842020-07-08 10:10:14 +0200353 assert_string_equal("\t{", in.current);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200354
Michal Vasko63f3d842020-07-08 10:10:14 +0200355 in.current = "\t /* comment */\t output\n\t{";
Radek Krejci33090f92020-12-17 20:12:46 +0100356 assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200357 assert_int_equal(LY_STMT_OUTPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200358 assert_int_equal(6, len);
359 assert_string_equal("output\n\t{", word);
Michal Vasko63f3d842020-07-08 10:10:14 +0200360 assert_string_equal("\n\t{", in.current);
Radek Krejci33090f92020-12-17 20:12:46 +0100361 assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200362 assert_int_equal(LY_STMT_SYNTAX_LEFT_BRACE, kw);
Radek Krejciabdd8062019-06-11 16:44:19 +0200363 assert_int_equal(1, len);
364 assert_string_equal("{", word);
Michal Vasko63f3d842020-07-08 10:10:14 +0200365 assert_string_equal("", in.current);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200366
Michal Vasko63f3d842020-07-08 10:10:14 +0200367 in.current = "/input { "; /* invalid slash */
Radek Krejci33090f92020-12-17 20:12:46 +0100368 assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200369 CHECK_LOG_CTX("Invalid identifier first character '/'.", "Line number 4.");
Radek Krejcidcc7b322018-10-11 14:24:02 +0200370
Michal Vasko63f3d842020-07-08 10:10:14 +0200371 in.current = "not-a-statement-nor-extension { "; /* invalid identifier */
Radek Krejci33090f92020-12-17 20:12:46 +0100372 assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200373 CHECK_LOG_CTX("Invalid character sequence \"not-a-statement-nor-extension\", expected a keyword.", "Line number 4.");
Radek Krejcidcc7b322018-10-11 14:24:02 +0200374
Michal Vasko63f3d842020-07-08 10:10:14 +0200375 in.current = "path;"; /* missing sep after the keyword */
Radek Krejci33090f92020-12-17 20:12:46 +0100376 assert_int_equal(LY_EVALID, get_keyword(YCTX, &kw, &word, &len));
Radek Iša56ca9e42020-09-08 18:42:00 +0200377 CHECK_LOG_CTX("Invalid character sequence \"path;\", expected a keyword followed by a separator.", "Line number 4.");
Radek Krejcidcc7b322018-10-11 14:24:02 +0200378
Radek Iša56ca9e42020-09-08 18:42:00 +0200379 TEST_STMS_SUCCESS("action ", YCTX, LY_STMT_ACTION, "action");
380
381 TEST_STMS_SUCCESS("anydata ", YCTX, LY_STMT_ANYDATA, "anydata");
382 TEST_STMS_SUCCESS("anyxml ", YCTX, LY_STMT_ANYXML, "anyxml");
383 TEST_STMS_SUCCESS("argument ", YCTX, LY_STMT_ARGUMENT, "argument");
384 TEST_STMS_SUCCESS("augment ", YCTX, LY_STMT_AUGMENT, "augment");
385 TEST_STMS_SUCCESS("base ", YCTX, LY_STMT_BASE, "base");
386 TEST_STMS_SUCCESS("belongs-to ", YCTX, LY_STMT_BELONGS_TO, "belongs-to");
387 TEST_STMS_SUCCESS("bit ", YCTX, LY_STMT_BIT, "bit");
388 TEST_STMS_SUCCESS("case ", YCTX, LY_STMT_CASE, "case");
389 TEST_STMS_SUCCESS("choice ", YCTX, LY_STMT_CHOICE, "choice");
390 TEST_STMS_SUCCESS("config ", YCTX, LY_STMT_CONFIG, "config");
391 TEST_STMS_SUCCESS("contact ", YCTX, LY_STMT_CONTACT, "contact");
392 TEST_STMS_SUCCESS("container ", YCTX, LY_STMT_CONTAINER, "container");
393 TEST_STMS_SUCCESS("default ", YCTX, LY_STMT_DEFAULT, "default");
394 TEST_STMS_SUCCESS("description ", YCTX, LY_STMT_DESCRIPTION, "description");
395 TEST_STMS_SUCCESS("deviate ", YCTX, LY_STMT_DEVIATE, "deviate");
396 TEST_STMS_SUCCESS("deviation ", YCTX, LY_STMT_DEVIATION, "deviation");
397 TEST_STMS_SUCCESS("enum ", YCTX, LY_STMT_ENUM, "enum");
398 TEST_STMS_SUCCESS("error-app-tag ", YCTX, LY_STMT_ERROR_APP_TAG, "error-app-tag");
399 TEST_STMS_SUCCESS("error-message ", YCTX, LY_STMT_ERROR_MESSAGE, "error-message");
400 TEST_STMS_SUCCESS("extension ", YCTX, LY_STMT_EXTENSION, "extension");
401 TEST_STMS_SUCCESS("feature ", YCTX, LY_STMT_FEATURE, "feature");
402 TEST_STMS_SUCCESS("fraction-digits ", YCTX, LY_STMT_FRACTION_DIGITS, "fraction-digits");
403 TEST_STMS_SUCCESS("grouping ", YCTX, LY_STMT_GROUPING, "grouping");
404 TEST_STMS_SUCCESS("identity ", YCTX, LY_STMT_IDENTITY, "identity");
405 TEST_STMS_SUCCESS("if-feature ", YCTX, LY_STMT_IF_FEATURE, "if-feature");
406 TEST_STMS_SUCCESS("import ", YCTX, LY_STMT_IMPORT, "import");
407 TEST_STMS_SUCCESS("include ", YCTX, LY_STMT_INCLUDE, "include");
408 TEST_STMS_SUCCESS("input{", YCTX, LY_STMT_INPUT, "input");
409 TEST_STMS_SUCCESS("key ", YCTX, LY_STMT_KEY, "key");
410 TEST_STMS_SUCCESS("leaf ", YCTX, LY_STMT_LEAF, "leaf");
411 TEST_STMS_SUCCESS("leaf-list ", YCTX, LY_STMT_LEAF_LIST, "leaf-list");
412 TEST_STMS_SUCCESS("length ", YCTX, LY_STMT_LENGTH, "length");
413 TEST_STMS_SUCCESS("list ", YCTX, LY_STMT_LIST, "list");
414 TEST_STMS_SUCCESS("mandatory ", YCTX, LY_STMT_MANDATORY, "mandatory");
415 TEST_STMS_SUCCESS("max-elements ", YCTX, LY_STMT_MAX_ELEMENTS, "max-elements");
416 TEST_STMS_SUCCESS("min-elements ", YCTX, LY_STMT_MIN_ELEMENTS, "min-elements");
417 TEST_STMS_SUCCESS("modifier ", YCTX, LY_STMT_MODIFIER, "modifier");
418 TEST_STMS_SUCCESS("module ", YCTX, LY_STMT_MODULE, "module");
419 TEST_STMS_SUCCESS("must ", YCTX, LY_STMT_MUST, "must");
420 TEST_STMS_SUCCESS("namespace ", YCTX, LY_STMT_NAMESPACE, "namespace");
421 TEST_STMS_SUCCESS("notification ", YCTX, LY_STMT_NOTIFICATION, "notification");
422 TEST_STMS_SUCCESS("ordered-by ", YCTX, LY_STMT_ORDERED_BY, "ordered-by");
423 TEST_STMS_SUCCESS("organization ", YCTX, LY_STMT_ORGANIZATION, "organization");
424 TEST_STMS_SUCCESS("output ", YCTX, LY_STMT_OUTPUT, "output");
425 TEST_STMS_SUCCESS("path ", YCTX, LY_STMT_PATH, "path");
426 TEST_STMS_SUCCESS("pattern ", YCTX, LY_STMT_PATTERN, "pattern");
427 TEST_STMS_SUCCESS("position ", YCTX, LY_STMT_POSITION, "position");
428 TEST_STMS_SUCCESS("prefix ", YCTX, LY_STMT_PREFIX, "prefix");
429 TEST_STMS_SUCCESS("presence ", YCTX, LY_STMT_PRESENCE, "presence");
430 TEST_STMS_SUCCESS("range ", YCTX, LY_STMT_RANGE, "range");
431 TEST_STMS_SUCCESS("reference ", YCTX, LY_STMT_REFERENCE, "reference");
432 TEST_STMS_SUCCESS("refine ", YCTX, LY_STMT_REFINE, "refine");
433 TEST_STMS_SUCCESS("require-instance ", YCTX, LY_STMT_REQUIRE_INSTANCE, "require-instance");
434 TEST_STMS_SUCCESS("revision ", YCTX, LY_STMT_REVISION, "revision");
435 TEST_STMS_SUCCESS("revision-date ", YCTX, LY_STMT_REVISION_DATE, "revision-date");
436 TEST_STMS_SUCCESS("rpc ", YCTX, LY_STMT_RPC, "rpc");
437 TEST_STMS_SUCCESS("status ", YCTX, LY_STMT_STATUS, "status");
438 TEST_STMS_SUCCESS("submodule ", YCTX, LY_STMT_SUBMODULE, "submodule");
439 TEST_STMS_SUCCESS("type ", YCTX, LY_STMT_TYPE, "type");
440 TEST_STMS_SUCCESS("typedef ", YCTX, LY_STMT_TYPEDEF, "typedef");
441 TEST_STMS_SUCCESS("unique ", YCTX, LY_STMT_UNIQUE, "unique");
442 TEST_STMS_SUCCESS("units ", YCTX, LY_STMT_UNITS, "units");
443 TEST_STMS_SUCCESS("uses ", YCTX, LY_STMT_USES, "uses");
444 TEST_STMS_SUCCESS("value ", YCTX, LY_STMT_VALUE, "value");
445 TEST_STMS_SUCCESS("when ", YCTX, LY_STMT_WHEN, "when");
446 TEST_STMS_SUCCESS("yang-version ", YCTX, LY_STMT_YANG_VERSION, "yang-version");
447 TEST_STMS_SUCCESS("yin-element ", YCTX, LY_STMT_YIN_ELEMENT, "yin-element");
448 TEST_STMS_SUCCESS(";config false;", YCTX, LY_STMT_SYNTAX_SEMICOLON, ";");
Michal Vasko63f3d842020-07-08 10:10:14 +0200449 assert_string_equal("config false;", in.current);
Radek Iša56ca9e42020-09-08 18:42:00 +0200450 TEST_STMS_SUCCESS("{ config false;", YCTX, LY_STMT_SYNTAX_LEFT_BRACE, "{");
Michal Vasko63f3d842020-07-08 10:10:14 +0200451 assert_string_equal(" config false;", in.current);
Radek Iša56ca9e42020-09-08 18:42:00 +0200452 TEST_STMS_SUCCESS("}", YCTX, LY_STMT_SYNTAX_RIGHT_BRACE, "}");
Michal Vasko63f3d842020-07-08 10:10:14 +0200453 assert_string_equal("", in.current);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200454
455 /* geenric extension */
Michal Vasko63f3d842020-07-08 10:10:14 +0200456 in.current = p = "nacm:default-deny-write;";
Radek Krejci33090f92020-12-17 20:12:46 +0100457 assert_int_equal(LY_SUCCESS, get_keyword(YCTX, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200458 assert_int_equal(LY_STMT_EXTENSION_INSTANCE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200459 assert_int_equal(23, len);
460 assert_ptr_equal(p, word);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200461}
Radek Krejci44ceedc2018-10-02 15:54:31 +0200462
Radek Iša56ca9e42020-09-08 18:42:00 +0200463#define TEST_MINMAX_SUCCESS(INPUT_TEXT, CTX, TYPE, VALUE)\
464 in.current = INPUT_TEXT;\
465 if(TYPE == LYS_SET_MIN){\
Radek Krejci33090f92020-12-17 20:12:46 +0100466 assert_int_equal(LY_SUCCESS, parse_minelements(CTX, &value, &flags, &ext));\
Radek Iša56ca9e42020-09-08 18:42:00 +0200467 }\
468 if(TYPE == LYS_SET_MAX){\
Radek Krejci33090f92020-12-17 20:12:46 +0100469 assert_int_equal(LY_SUCCESS, parse_maxelements(CTX, &value, &flags, &ext));\
Radek Iša56ca9e42020-09-08 18:42:00 +0200470 }\
471 assert_int_equal(TYPE, flags);\
472 assert_int_equal(VALUE, value)
473
Radek Krejci05b13982018-11-28 16:22:07 +0100474static void
475test_minmax(void **state)
476{
Radek Krejci05b13982018-11-28 16:22:07 +0100477 uint16_t flags = 0;
478 uint32_t value = 0;
479 struct lysp_ext_instance *ext = NULL;
Radek Krejci05b13982018-11-28 16:22:07 +0100480
Radek Krejci33090f92020-12-17 20:12:46 +0100481 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +0200482 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci05b13982018-11-28 16:22:07 +0100483
Michal Vasko63f3d842020-07-08 10:10:14 +0200484 in.current = " 1invalid; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100485 assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200486 CHECK_LOG_CTX("Invalid value \"1invalid\" of \"min-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100487
488 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200489 in.current = " -1; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100490 assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200491 CHECK_LOG_CTX("Invalid value \"-1\" of \"min-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100492
Radek Krejcidf6cad12018-11-28 17:10:55 +0100493 /* implementation limit */
494 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200495 in.current = " 4294967296; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100496 assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200497 CHECK_LOG_CTX("Value \"4294967296\" is out of \"min-elements\" bounds.", "Line number 1.");
Radek Krejcidf6cad12018-11-28 17:10:55 +0100498
Radek Krejci05b13982018-11-28 16:22:07 +0100499 flags = value = 0;
Radek Iša56ca9e42020-09-08 18:42:00 +0200500 TEST_MINMAX_SUCCESS(" 1; ...", YCTX, LYS_SET_MIN, 1);
Radek Krejci05b13982018-11-28 16:22:07 +0100501
502 flags = value = 0;
Radek Iša56ca9e42020-09-08 18:42:00 +0200503 TEST_MINMAX_SUCCESS(" 1 {m:ext;} ...", YCTX, LYS_SET_MIN, 1);
Radek Krejci05b13982018-11-28 16:22:07 +0100504 assert_non_null(ext);
Radek Iša56ca9e42020-09-08 18:42:00 +0200505 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, ext, lysp_ext_instance_free);
Radek Krejci05b13982018-11-28 16:22:07 +0100506 ext = NULL;
507
508 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200509 in.current = " 1 {config true;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100510 assert_int_equal(LY_EVALID, parse_minelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200511 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"min-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100512
Michal Vasko63f3d842020-07-08 10:10:14 +0200513 in.current = " 1invalid; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100514 assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200515 CHECK_LOG_CTX("Invalid value \"1invalid\" of \"max-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100516
517 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200518 in.current = " -1; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100519 assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200520 CHECK_LOG_CTX("Invalid value \"-1\" of \"max-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100521
Radek Krejcidf6cad12018-11-28 17:10:55 +0100522 /* implementation limit */
523 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200524 in.current = " 4294967296; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100525 assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200526 CHECK_LOG_CTX("Value \"4294967296\" is out of \"max-elements\" bounds.", "Line number 1.");
Radek Krejcidf6cad12018-11-28 17:10:55 +0100527
Radek Krejci05b13982018-11-28 16:22:07 +0100528 flags = value = 0;
Radek Iša56ca9e42020-09-08 18:42:00 +0200529 TEST_MINMAX_SUCCESS(" 1; ...", YCTX, LYS_SET_MAX, 1);
Radek Krejci05b13982018-11-28 16:22:07 +0100530
531 flags = value = 0;
Radek Iša56ca9e42020-09-08 18:42:00 +0200532 TEST_MINMAX_SUCCESS(" unbounded; ...", YCTX, LYS_SET_MAX, 0);
Radek Krejci05b13982018-11-28 16:22:07 +0100533
534 flags = value = 0;
Radek Iša56ca9e42020-09-08 18:42:00 +0200535 TEST_MINMAX_SUCCESS(" 1 {m:ext;} ...", YCTX, LYS_SET_MAX, 1);
Radek Krejci05b13982018-11-28 16:22:07 +0100536 assert_non_null(ext);
Radek Iša56ca9e42020-09-08 18:42:00 +0200537 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, ext, lysp_ext_instance_free);
Radek Krejci05b13982018-11-28 16:22:07 +0100538 ext = NULL;
539
540 flags = value = 0;
Michal Vasko63f3d842020-07-08 10:10:14 +0200541 in.current = " 1 {config true;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100542 assert_int_equal(LY_EVALID, parse_maxelements(YCTX, &value, &flags, &ext));
Radek Iša56ca9e42020-09-08 18:42:00 +0200543 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"max-elements\".", "Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100544}
545
Radek Krejci9fcacc12018-10-11 15:59:11 +0200546static struct lysp_module *
Michal Vaskob36053d2020-03-26 15:49:30 +0100547mod_renew(struct lys_yang_parser_ctx *ctx)
Radek Krejci9fcacc12018-10-11 15:59:11 +0200548{
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200549 struct ly_ctx *ly_ctx = ctx->parsed_mod->mod->ctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100550
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200551 lys_module_free(ctx->parsed_mod->mod, NULL);
552 ctx->parsed_mod = calloc(1, sizeof *ctx->parsed_mod);
553 ctx->parsed_mod->mod = calloc(1, sizeof *ctx->parsed_mod->mod);
554 ctx->parsed_mod->mod->parsed = ctx->parsed_mod;
555 ctx->parsed_mod->mod->ctx = ly_ctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100556
Radek Krejci2efc45b2020-12-22 16:25:44 +0100557 ctx->in->line = 1;
558
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200559 return ctx->parsed_mod;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100560}
561
562static struct lysp_submodule *
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200563submod_renew(struct lys_yang_parser_ctx *ctx)
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100564{
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200565 struct ly_ctx *ly_ctx = ctx->parsed_mod->mod->ctx;
566
567 lys_module_free(ctx->parsed_mod->mod, NULL);
568 ctx->parsed_mod = calloc(1, sizeof(struct lysp_submodule));
569 ctx->parsed_mod->mod = calloc(1, sizeof *ctx->parsed_mod->mod);
570 lydict_insert(ly_ctx, "name", 0, &ctx->parsed_mod->mod->name);
571 ctx->parsed_mod->mod->parsed = ctx->parsed_mod;
572 ctx->parsed_mod->mod->ctx = ly_ctx;
573
574 return (struct lysp_submodule *)ctx->parsed_mod;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200575}
576
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100577static LY_ERR
578test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
579 const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format,
580 const char **module_data, void (**free_module_data)(void *model_data, void *user_data))
Radek Krejcid33273d2018-10-25 14:55:52 +0200581{
582 *module_data = user_data;
583 *format = LYS_IN_YANG;
584 *free_module_data = NULL;
585 return LY_SUCCESS;
586}
587
Radek Krejci9fcacc12018-10-11 15:59:11 +0200588static void
589test_module(void **state)
590{
Radek Krejci40544fa2019-01-11 09:38:37 +0100591 struct lysp_module *mod = NULL;
592 struct lysp_submodule *submod = NULL;
593 struct lys_module *m;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100594 struct lys_glob_unres unres = {0};
Radek Iša56ca9e42020-09-08 18:42:00 +0200595 struct lys_yang_parser_ctx *ctx_p;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200596
Radek Krejci33090f92020-12-17 20:12:46 +0100597 YCTX_INIT;
598
Radek Iša56ca9e42020-09-08 18:42:00 +0200599 mod = mod_renew(YCTX);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200600
601 /* missing mandatory substatements */
Michal Vasko63f3d842020-07-08 10:10:14 +0200602 in.current = " name {}";
Radek Krejci33090f92020-12-17 20:12:46 +0100603 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100604 assert_string_equal("name", mod->mod->name);
Radek Iša56ca9e42020-09-08 18:42:00 +0200605 CHECK_LOG_CTX("Missing mandatory keyword \"namespace\" as a child of \"module\".", "Line number 1.");
Radek Krejci9fcacc12018-10-11 15:59:11 +0200606
Radek Iša56ca9e42020-09-08 18:42:00 +0200607 mod = mod_renew(YCTX);
Michal Vasko63f3d842020-07-08 10:10:14 +0200608 in.current = " name {namespace urn:x;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100609 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100610 assert_string_equal("urn:x", mod->mod->ns);
Radek Iša56ca9e42020-09-08 18:42:00 +0200611 CHECK_LOG_CTX("Missing mandatory keyword \"prefix\" as a child of \"module\".", "Line number 1.");
612 mod = mod_renew(YCTX);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200613
Michal Vasko63f3d842020-07-08 10:10:14 +0200614 in.current = " name {namespace urn:x;prefix \"x\";}";
Radek Krejci33090f92020-12-17 20:12:46 +0100615 assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod));
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100616 assert_string_equal("x", mod->mod->prefix);
Radek Iša56ca9e42020-09-08 18:42:00 +0200617 mod = mod_renew(YCTX);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200618
Radek Krejci027d5802018-11-14 16:57:28 +0100619#define SCHEMA_BEGINNING " name {yang-version 1.1;namespace urn:x;prefix \"x\";"
620#define SCHEMA_BEGINNING2 " name {namespace urn:x;prefix \"x\";"
Radek Krejcia042ea12018-10-13 07:52:15 +0200621#define TEST_NODE(NODETYPE, INPUT, NAME) \
Michal Vasko63f3d842020-07-08 10:10:14 +0200622 in.current = SCHEMA_BEGINNING INPUT; \
Radek Krejci33090f92020-12-17 20:12:46 +0100623 assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); \
Radek Krejcia042ea12018-10-13 07:52:15 +0200624 assert_non_null(mod->data); \
625 assert_int_equal(NODETYPE, mod->data->nodetype); \
626 assert_string_equal(NAME, mod->data->name); \
Radek Iša56ca9e42020-09-08 18:42:00 +0200627 mod = mod_renew(YCTX);
Radek Krejcia042ea12018-10-13 07:52:15 +0200628#define TEST_GENERIC(INPUT, TARGET, TEST) \
Michal Vasko63f3d842020-07-08 10:10:14 +0200629 in.current = SCHEMA_BEGINNING INPUT; \
Radek Krejci33090f92020-12-17 20:12:46 +0100630 assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod)); \
Radek Krejcia042ea12018-10-13 07:52:15 +0200631 assert_non_null(TARGET); \
632 TEST; \
Radek Iša56ca9e42020-09-08 18:42:00 +0200633 mod = mod_renew(YCTX);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100634#define TEST_DUP(MEMBER, VALUE1, VALUE2, LINE) \
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200635 TEST_DUP_GENERIC(SCHEMA_BEGINNING, MEMBER, VALUE1, VALUE2, \
Radek Iša56ca9e42020-09-08 18:42:00 +0200636 parse_module, mod, LINE, mod = mod_renew(YCTX))
Radek Krejcia042ea12018-10-13 07:52:15 +0200637
638 /* duplicated namespace, prefix */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100639 TEST_DUP("namespace", "y", "z", "1");
640 TEST_DUP("prefix", "y", "z", "1");
641 TEST_DUP("contact", "a", "b", "1");
642 TEST_DUP("description", "a", "b", "1");
643 TEST_DUP("organization", "a", "b", "1");
644 TEST_DUP("reference", "a", "b", "1");
Radek Krejcia042ea12018-10-13 07:52:15 +0200645
Radek Krejci70853c52018-10-15 14:46:16 +0200646 /* not allowed in module (submodule-specific) */
Michal Vasko63f3d842020-07-08 10:10:14 +0200647 in.current = SCHEMA_BEGINNING "belongs-to master {prefix m;}}";
Radek Krejci33090f92020-12-17 20:12:46 +0100648 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Iša56ca9e42020-09-08 18:42:00 +0200649 CHECK_LOG_CTX("Invalid keyword \"belongs-to\" as a child of \"module\".", "Line number 1.");
650 mod = mod_renew(YCTX);
Radek Krejci70853c52018-10-15 14:46:16 +0200651
Radek Krejcia042ea12018-10-13 07:52:15 +0200652 /* anydata */
653 TEST_NODE(LYS_ANYDATA, "anydata test;}", "test");
654 /* anyxml */
655 TEST_NODE(LYS_ANYXML, "anyxml test;}", "test");
656 /* augment */
657 TEST_GENERIC("augment /somepath;}", mod->augments,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100658 assert_string_equal("/somepath", mod->augments[0].nodeid));
Radek Krejcia042ea12018-10-13 07:52:15 +0200659 /* choice */
660 TEST_NODE(LYS_CHOICE, "choice test;}", "test");
661 /* contact 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100662 TEST_GENERIC("contact \"firstname\" + \n\t\" surname\";}", mod->mod->contact,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100663 assert_string_equal("firstname surname", mod->mod->contact));
Radek Krejcia042ea12018-10-13 07:52:15 +0200664 /* container */
665 TEST_NODE(LYS_CONTAINER, "container test;}", "test");
666 /* description 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100667 TEST_GENERIC("description \'some description\';}", mod->mod->dsc,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100668 assert_string_equal("some description", mod->mod->dsc));
Radek Krejcia042ea12018-10-13 07:52:15 +0200669 /* deviation */
670 TEST_GENERIC("deviation /somepath {deviate not-supported;}}", mod->deviations,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100671 assert_string_equal("/somepath", mod->deviations[0].nodeid));
Radek Krejcia042ea12018-10-13 07:52:15 +0200672 /* extension */
673 TEST_GENERIC("extension test;}", mod->extensions,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100674 assert_string_equal("test", mod->extensions[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200675 /* feature */
676 TEST_GENERIC("feature test;}", mod->features,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100677 assert_string_equal("test", mod->features[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200678 /* grouping */
679 TEST_GENERIC("grouping grp;}", mod->groupings,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100680 assert_string_equal("grp", mod->groupings[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200681 /* identity */
682 TEST_GENERIC("identity test;}", mod->identities,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100683 assert_string_equal("test", mod->identities[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200684 /* import */
Radek Iša56ca9e42020-09-08 18:42:00 +0200685 ly_ctx_set_module_imp_clb(YCTX->parsed_mod->mod->ctx, test_imp_clb, "module zzz { namespace urn:zzz; prefix z;}");
Radek Krejci086c7132018-10-26 15:29:04 +0200686 TEST_GENERIC("import zzz {prefix z;}}", mod->imports,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100687 assert_string_equal("zzz", mod->imports[0].name));
Radek Krejci70853c52018-10-15 14:46:16 +0200688
Radek Krejcia042ea12018-10-13 07:52:15 +0200689 /* import - prefix collision */
Michal Vasko63f3d842020-07-08 10:10:14 +0200690 in.current = SCHEMA_BEGINNING "import zzz {prefix x;}}";
Radek Krejci33090f92020-12-17 20:12:46 +0100691 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100692 CHECK_LOG_CTX("Prefix \"x\" already used as module prefix.", "Line number 1.");
Radek Iša56ca9e42020-09-08 18:42:00 +0200693 mod = mod_renew(YCTX);
694
Michal Vasko63f3d842020-07-08 10:10:14 +0200695 in.current = SCHEMA_BEGINNING "import zzz {prefix y;}import zzz {prefix y;}}";
Radek Krejci33090f92020-12-17 20:12:46 +0100696 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100697 CHECK_LOG_CTX("Prefix \"y\" already used to import \"zzz\" module.", "Line number 1.");
Radek Iša56ca9e42020-09-08 18:42:00 +0200698
699 mod = mod_renew(YCTX);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100700 LOG_LOCBACK(UTEST_LYCTX, 0, 0, 0, 1);
701
Michal Vasko7c8439f2020-08-05 13:25:19 +0200702 in.current = "module name10 {yang-version 1.1;namespace urn:x;prefix \"x\";import zzz {prefix y;}import zzz {prefix z;}}";
Radek Iša56ca9e42020-09-08 18:42:00 +0200703 assert_int_equal(lys_parse_mem(YCTX->parsed_mod->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_SUCCESS);
704 CHECK_LOG_CTX("Single revision of the module \"zzz\" imported twice.", NULL);
Radek Krejci70853c52018-10-15 14:46:16 +0200705
Radek Krejcia042ea12018-10-13 07:52:15 +0200706 /* include */
Radek Iša56ca9e42020-09-08 18:42:00 +0200707 ly_ctx_set_module_imp_clb(YCTX->parsed_mod->mod->ctx, test_imp_clb, "module xxx { namespace urn:xxx; prefix x;}");
Michal Vasko63f3d842020-07-08 10:10:14 +0200708 in.current = "module" SCHEMA_BEGINNING "include xxx;}";
Radek Iša56ca9e42020-09-08 18:42:00 +0200709 assert_int_equal(lys_parse_mem(YCTX->parsed_mod->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_EVALID);
710 CHECK_LOG_CTX("Including \"xxx\" submodule into \"name\" failed.", NULL);
Radek Krejcid33273d2018-10-25 14:55:52 +0200711
Radek Iša56ca9e42020-09-08 18:42:00 +0200712 ly_ctx_set_module_imp_clb(YCTX->parsed_mod->mod->ctx, test_imp_clb, "submodule xxx {belongs-to wrong-name {prefix w;}}");
Michal Vasko63f3d842020-07-08 10:10:14 +0200713 in.current = "module" SCHEMA_BEGINNING "include xxx;}";
Radek Iša56ca9e42020-09-08 18:42:00 +0200714 assert_int_equal(lys_parse_mem(YCTX->parsed_mod->mod->ctx, in.current, LYS_IN_YANG, NULL), LY_EVALID);
715 CHECK_LOG_CTX("Including \"xxx\" submodule into \"name\" failed.", NULL);
Radek Krejcid33273d2018-10-25 14:55:52 +0200716
Radek Iša56ca9e42020-09-08 18:42:00 +0200717 ly_ctx_set_module_imp_clb(YCTX->parsed_mod->mod->ctx, test_imp_clb, "submodule xxx {belongs-to name {prefix x;}}");
Radek Krejcid33273d2018-10-25 14:55:52 +0200718 TEST_GENERIC("include xxx;}", mod->includes,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100719 assert_string_equal("xxx", mod->includes[0].name));
Radek Krejcid33273d2018-10-25 14:55:52 +0200720
Radek Krejcia042ea12018-10-13 07:52:15 +0200721 /* leaf */
722 TEST_NODE(LYS_LEAF, "leaf test {type string;}}", "test");
723 /* leaf-list */
724 TEST_NODE(LYS_LEAFLIST, "leaf-list test {type string;}}", "test");
725 /* list */
726 TEST_NODE(LYS_LIST, "list test {key a;leaf a {type string;}}}", "test");
727 /* notification */
728 TEST_GENERIC("notification test;}", mod->notifs,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100729 assert_string_equal("test", mod->notifs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200730 /* organization 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100731 TEST_GENERIC("organization \"CESNET a.l.e.\";}", mod->mod->org,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100732 assert_string_equal("CESNET a.l.e.", mod->mod->org));
Radek Krejcia042ea12018-10-13 07:52:15 +0200733 /* reference 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100734 TEST_GENERIC("reference RFC7950;}", mod->mod->ref,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100735 assert_string_equal("RFC7950", mod->mod->ref));
Radek Krejcia042ea12018-10-13 07:52:15 +0200736 /* revision */
737 TEST_GENERIC("revision 2018-10-12;}", mod->revs,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100738 assert_string_equal("2018-10-12", mod->revs[0].date));
Radek Krejcia042ea12018-10-13 07:52:15 +0200739 /* rpc */
740 TEST_GENERIC("rpc test;}", mod->rpcs,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100741 assert_string_equal("test", mod->rpcs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200742 /* typedef */
743 TEST_GENERIC("typedef test{type string;}}", mod->typedefs,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100744 assert_string_equal("test", mod->typedefs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200745 /* uses */
746 TEST_NODE(LYS_USES, "uses test;}", "test");
747 /* yang-version */
Michal Vasko63f3d842020-07-08 10:10:14 +0200748 in.current = SCHEMA_BEGINNING2 "\n\tyang-version 10;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100749 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100750 CHECK_LOG_CTX("Invalid value \"10\" of \"yang-version\".", NULL);
Radek Iša56ca9e42020-09-08 18:42:00 +0200751 mod = mod_renew(YCTX);
Radek Krejci96e48da2020-09-04 13:18:06 +0200752 in.current = SCHEMA_BEGINNING2 "yang-version 1;yang-version 1.1;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100753 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100754 CHECK_LOG_CTX("Duplicate keyword \"yang-version\".", NULL);
Radek Iša56ca9e42020-09-08 18:42:00 +0200755 mod = mod_renew(YCTX);
Radek Krejci96e48da2020-09-04 13:18:06 +0200756 in.current = SCHEMA_BEGINNING2 "yang-version 1;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100757 assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod));
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200758 assert_int_equal(1, mod->version);
Radek Iša56ca9e42020-09-08 18:42:00 +0200759 mod = mod_renew(YCTX);
Michal Vasko63f3d842020-07-08 10:10:14 +0200760 in.current = SCHEMA_BEGINNING2 "yang-version \"1.1\";}";
Radek Krejci33090f92020-12-17 20:12:46 +0100761 assert_int_equal(LY_SUCCESS, parse_module(YCTX, mod));
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200762 assert_int_equal(2, mod->version);
Radek Iša56ca9e42020-09-08 18:42:00 +0200763 mod = mod_renew(YCTX);
Radek Krejci40544fa2019-01-11 09:38:37 +0100764
Michal Vasko63f3d842020-07-08 10:10:14 +0200765 in.current = "module " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}";
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200766 m = calloc(1, sizeof *m);
Radek Iša56ca9e42020-09-08 18:42:00 +0200767 m->ctx = YCTX->parsed_mod->mod->ctx;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100768 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m, &unres));
Radek Iša56ca9e42020-09-08 18:42:00 +0200769 CHECK_LOG_CTX("Trailing garbage \"module q {names...\" after module, expected end-of-input.", "Line number 1.");
Michal Vaskob36053d2020-03-26 15:49:30 +0100770 yang_parser_ctx_free(ctx_p);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200771 lys_module_free(m, NULL);
Radek Krejci40544fa2019-01-11 09:38:37 +0100772
Michal Vasko63f3d842020-07-08 10:10:14 +0200773 in.current = "prefix " SCHEMA_BEGINNING "}";
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200774 m = calloc(1, sizeof *m);
Radek Iša56ca9e42020-09-08 18:42:00 +0200775 m->ctx = YCTX->parsed_mod->mod->ctx;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100776 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m, &unres));
Radek Iša56ca9e42020-09-08 18:42:00 +0200777 CHECK_LOG_CTX("Invalid keyword \"prefix\", expected \"module\" or \"submodule\".", "Line number 1.");
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200778 yang_parser_ctx_free(ctx_p);
779 lys_module_free(m, NULL);
Radek Krejci09306362018-10-15 15:26:01 +0200780
Michal Vasko63f3d842020-07-08 10:10:14 +0200781 in.current = "module " SCHEMA_BEGINNING "leaf enum {type enumeration {enum seven { position 7;}}}}";
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200782 m = calloc(1, sizeof *m);
Radek Iša56ca9e42020-09-08 18:42:00 +0200783 m->ctx = YCTX->parsed_mod->mod->ctx;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100784 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, &in, m, &unres));
Radek Iša56ca9e42020-09-08 18:42:00 +0200785 CHECK_LOG_CTX("Invalid keyword \"position\" as a child of \"enum\".", "Line number 1.");
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200786 yang_parser_ctx_free(ctx_p);
787 lys_module_free(m, NULL);
David Sedlák9fb515f2019-07-11 10:33:58 +0200788
Radek Krejci156ccaf2018-10-15 15:49:17 +0200789 /* extensions */
790 TEST_GENERIC("prefix:test;}", mod->exts,
Radek Krejcib4ac5a92020-11-23 17:54:33 +0100791 assert_string_equal("prefix:test", mod->exts[0].name);
792 assert_int_equal(LYEXT_SUBSTMT_SELF, mod->exts[0].insubstmt));
Radek Iša56ca9e42020-09-08 18:42:00 +0200793 mod = mod_renew(YCTX);
Radek Krejci156ccaf2018-10-15 15:49:17 +0200794
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200795 /* invalid substatement */
Michal Vasko63f3d842020-07-08 10:10:14 +0200796 in.current = SCHEMA_BEGINNING "must false;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100797 assert_int_equal(LY_EVALID, parse_module(YCTX, mod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100798 CHECK_LOG_CTX("Invalid keyword \"must\" as a child of \"module\".", NULL);
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200799
Radek Krejci09306362018-10-15 15:26:01 +0200800 /* submodule */
Radek Iša56ca9e42020-09-08 18:42:00 +0200801 submod = submod_renew(YCTX);
Radek Krejci09306362018-10-15 15:26:01 +0200802
803 /* missing mandatory substatements */
Michal Vasko63f3d842020-07-08 10:10:14 +0200804 in.current = " subname {}";
Radek Krejci33090f92020-12-17 20:12:46 +0100805 assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100806 CHECK_LOG_CTX("Missing mandatory keyword \"belongs-to\" as a child of \"submodule\".", NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100807 assert_string_equal("subname", submod->name);
Radek Iša56ca9e42020-09-08 18:42:00 +0200808
809 submod = submod_renew(YCTX);
Radek Krejci09306362018-10-15 15:26:01 +0200810
Michal Vasko63f3d842020-07-08 10:10:14 +0200811 in.current = " subname {belongs-to name {prefix x;}}";
Radek Krejci33090f92020-12-17 20:12:46 +0100812 assert_int_equal(LY_SUCCESS, parse_submodule(YCTX, submod));
Michal Vaskoc3781c32020-10-06 14:04:08 +0200813 assert_string_equal("name", submod->mod->name);
Radek Iša56ca9e42020-09-08 18:42:00 +0200814 submod = submod_renew(YCTX);
Radek Krejci09306362018-10-15 15:26:01 +0200815
816#undef SCHEMA_BEGINNING
Radek Krejci313d9902018-11-08 09:42:58 +0100817#define SCHEMA_BEGINNING " subname {belongs-to name {prefix x;}"
Radek Krejci09306362018-10-15 15:26:01 +0200818
819 /* duplicated namespace, prefix */
Michal Vasko63f3d842020-07-08 10:10:14 +0200820 in.current = " subname {belongs-to name {prefix x;}belongs-to module1;belongs-to module2;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100821 assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100822 CHECK_LOG_CTX("Duplicate keyword \"belongs-to\".", NULL);
Radek Iša56ca9e42020-09-08 18:42:00 +0200823 submod = submod_renew(YCTX);
Radek Krejci09306362018-10-15 15:26:01 +0200824
825 /* not allowed in submodule (module-specific) */
Michal Vasko63f3d842020-07-08 10:10:14 +0200826 in.current = SCHEMA_BEGINNING "namespace \"urn:z\";}";
Radek Krejci33090f92020-12-17 20:12:46 +0100827 assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100828 CHECK_LOG_CTX("Invalid keyword \"namespace\" as a child of \"submodule\".", NULL);
Radek Iša56ca9e42020-09-08 18:42:00 +0200829 submod = submod_renew(YCTX);
Michal Vasko63f3d842020-07-08 10:10:14 +0200830 in.current = SCHEMA_BEGINNING "prefix m;}}";
Radek Krejci33090f92020-12-17 20:12:46 +0100831 assert_int_equal(LY_EVALID, parse_submodule(YCTX, submod));
Radek Krejci2efc45b2020-12-22 16:25:44 +0100832 CHECK_LOG_CTX("Invalid keyword \"prefix\" as a child of \"submodule\".", NULL);
Radek Iša56ca9e42020-09-08 18:42:00 +0200833 submod = submod_renew(YCTX);
Radek Krejcia042ea12018-10-13 07:52:15 +0200834
Michal Vasko63f3d842020-07-08 10:10:14 +0200835 in.current = "submodule " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100836 assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, YCTX->parsed_mod->mod->ctx, (struct lys_parser_ctx *)YCTX, YCTX->in, &submod));
Radek Iša56ca9e42020-09-08 18:42:00 +0200837 CHECK_LOG_CTX("Trailing garbage \"module q {names...\" after submodule, expected end-of-input.", "Line number 1.");
Michal Vaskob36053d2020-03-26 15:49:30 +0100838 yang_parser_ctx_free(ctx_p);
Radek Krejci40544fa2019-01-11 09:38:37 +0100839
Michal Vasko63f3d842020-07-08 10:10:14 +0200840 in.current = "prefix " SCHEMA_BEGINNING "}";
Radek Krejci33090f92020-12-17 20:12:46 +0100841 assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, YCTX->parsed_mod->mod->ctx, (struct lys_parser_ctx *)YCTX, YCTX->in, &submod));
Radek Iša56ca9e42020-09-08 18:42:00 +0200842 CHECK_LOG_CTX("Invalid keyword \"prefix\", expected \"module\" or \"submodule\".", "Line number 1.");
Michal Vaskob36053d2020-03-26 15:49:30 +0100843 yang_parser_ctx_free(ctx_p);
Radek Iša56ca9e42020-09-08 18:42:00 +0200844 submod = submod_renew(YCTX);
Radek Krejci40544fa2019-01-11 09:38:37 +0100845
Radek Krejcia042ea12018-10-13 07:52:15 +0200846#undef TEST_GENERIC
847#undef TEST_NODE
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200848#undef TEST_DUP
Radek Krejcia042ea12018-10-13 07:52:15 +0200849#undef SCHEMA_BEGINNING
Radek Krejciefd22f62018-09-27 11:47:58 +0200850}
851
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200852static void
853test_deviation(void **state)
854{
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200855 struct lysp_deviation *d = NULL;
Radek Krejci33090f92020-12-17 20:12:46 +0100856
857 YCTX_INIT;
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200858
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200859 /* invalid cardinality */
860#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
861 TEST_DUP_GENERIC(" test {deviate not-supported;", MEMBER, VALUE1, VALUE2, parse_deviation, \
Radek Iša56ca9e42020-09-08 18:42:00 +0200862 &d, "1", FREE_ARRAY(YCTX->parsed_mod->mod->ctx, d, lysp_deviation_free); d = NULL)
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200863
864 TEST_DUP("description", "a", "b");
865 TEST_DUP("reference", "a", "b");
866
867 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +0200868 in.current = " test {deviate not-supported;description text;reference \'another text\';prefix:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100869 assert_int_equal(LY_SUCCESS, parse_deviation(YCTX, &d));
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200870 assert_non_null(d);
Michal Vasko63f3d842020-07-08 10:10:14 +0200871 assert_string_equal(" ...", in.current);
Radek Iša56ca9e42020-09-08 18:42:00 +0200872 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200873 d = NULL;
874
875 /* missing mandatory substatement */
Michal Vasko63f3d842020-07-08 10:10:14 +0200876 in.current = " test {description text;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100877 assert_int_equal(LY_EVALID, parse_deviation(YCTX, &d));
Radek Iša56ca9e42020-09-08 18:42:00 +0200878 CHECK_LOG_CTX("Missing mandatory keyword \"deviate\" as a child of \"deviation\".", "Line number 1.");
879 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200880 d = NULL;
881
882 /* invalid substatement */
Michal Vasko63f3d842020-07-08 10:10:14 +0200883 in.current = " test {deviate not-supported; status obsolete;}";
Radek Krejci33090f92020-12-17 20:12:46 +0100884 assert_int_equal(LY_EVALID, parse_deviation(YCTX, &d));
Radek Iša56ca9e42020-09-08 18:42:00 +0200885 CHECK_LOG_CTX("Invalid keyword \"status\" as a child of \"deviation\".", "Line number 1.");
886 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200887 d = NULL;
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200888#undef TEST_DUP
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200889}
890
Radek Iša56ca9e42020-09-08 18:42:00 +0200891#define TEST_DEVIATE_SUCCESS(INPUT_TEXT, REMAIN_TEXT)\
892 in.current = INPUT_TEXT;\
Radek Krejci33090f92020-12-17 20:12:46 +0100893 assert_int_equal(LY_SUCCESS, parse_deviate(YCTX, &d));\
Radek Iša56ca9e42020-09-08 18:42:00 +0200894 assert_non_null(d);\
895 assert_string_equal(REMAIN_TEXT, in.current);\
896 lysp_deviate_free(YCTX->parsed_mod->mod->ctx, d); free(d); d = NULL
897
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200898static void
899test_deviate(void **state)
900{
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200901 struct lysp_deviate *d = NULL;
Radek Krejci33090f92020-12-17 20:12:46 +0100902
903 YCTX_INIT;
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200904
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200905 /* invalid cardinality */
906#define TEST_DUP(TYPE, MEMBER, VALUE1, VALUE2) \
907 TEST_DUP_GENERIC(TYPE" {", MEMBER, VALUE1, VALUE2, parse_deviate, \
Radek Iša56ca9e42020-09-08 18:42:00 +0200908 &d, "1", lysp_deviate_free(YCTX->parsed_mod->mod->ctx, d); free(d); d = NULL)
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200909
910 TEST_DUP("add", "config", "true", "false");
911 TEST_DUP("replace", "default", "int8", "uint8");
912 TEST_DUP("add", "mandatory", "true", "false");
913 TEST_DUP("add", "max-elements", "1", "2");
914 TEST_DUP("add", "min-elements", "1", "2");
915 TEST_DUP("replace", "type", "int8", "uint8");
916 TEST_DUP("add", "units", "kilometers", "miles");
917
918 /* full contents */
Radek Iša56ca9e42020-09-08 18:42:00 +0200919 TEST_DEVIATE_SUCCESS(" not-supported {prefix:ext;} ...", " ...");
920 TEST_DEVIATE_SUCCESS(" add {units meters; must 1; must 2; unique x; unique y; default a; default b; config true; mandatory true; min-elements 1; max-elements 2; prefix:ext;} ...", " ...");
921 TEST_DEVIATE_SUCCESS(" delete {units meters; must 1; must 2; unique x; unique y; default a; default b; prefix:ext;} ...", " ...");
922 TEST_DEVIATE_SUCCESS(" replace {type string; units meters; default a; config true; mandatory true; min-elements 1; max-elements 2; prefix:ext;} ...", " ...");
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200923
924 /* invalid substatements */
925#define TEST_NOT_SUP(DEV, STMT, VALUE) \
Michal Vasko63f3d842020-07-08 10:10:14 +0200926 in.current = " "DEV" {"STMT" "VALUE";}..."; \
Radek Krejci33090f92020-12-17 20:12:46 +0100927 assert_int_equal(LY_EVALID, parse_deviate(YCTX, &d)); \
Radek Iša56ca9e42020-09-08 18:42:00 +0200928 CHECK_LOG_CTX("Deviate \""DEV"\" does not support keyword \""STMT"\".", "Line number 1.");\
929 lysp_deviate_free(YCTX->parsed_mod->mod->ctx, d); free(d); d = NULL
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200930
931 TEST_NOT_SUP("not-supported", "units", "meters");
932 TEST_NOT_SUP("not-supported", "must", "1");
933 TEST_NOT_SUP("not-supported", "unique", "x");
934 TEST_NOT_SUP("not-supported", "default", "a");
935 TEST_NOT_SUP("not-supported", "config", "true");
936 TEST_NOT_SUP("not-supported", "mandatory", "true");
937 TEST_NOT_SUP("not-supported", "min-elements", "1");
938 TEST_NOT_SUP("not-supported", "max-elements", "2");
939 TEST_NOT_SUP("not-supported", "type", "string");
940 TEST_NOT_SUP("add", "type", "string");
941 TEST_NOT_SUP("delete", "config", "true");
942 TEST_NOT_SUP("delete", "mandatory", "true");
943 TEST_NOT_SUP("delete", "min-elements", "1");
944 TEST_NOT_SUP("delete", "max-elements", "2");
945 TEST_NOT_SUP("delete", "type", "string");
946 TEST_NOT_SUP("replace", "must", "1");
947 TEST_NOT_SUP("replace", "unique", "a");
948
Michal Vasko63f3d842020-07-08 10:10:14 +0200949 in.current = " nonsence; ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100950 assert_int_equal(LY_EVALID, parse_deviate(YCTX, &d));
Radek Iša56ca9e42020-09-08 18:42:00 +0200951 CHECK_LOG_CTX("Invalid value \"nonsence\" of \"deviate\".", "Line number 1.");\
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200952 assert_null(d);
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200953#undef TEST_NOT_SUP
954#undef TEST_DUP
Radek Krejci4c6d9bd2018-10-15 16:43:06 +0200955}
956
Radek Krejci8c370832018-11-02 15:10:03 +0100957static void
958test_container(void **state)
959{
Radek Krejci8c370832018-11-02 15:10:03 +0100960 struct lysp_node_container *c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +0100961
Radek Krejci33090f92020-12-17 20:12:46 +0100962 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +0200963 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci8c370832018-11-02 15:10:03 +0100964
965 /* invalid cardinality */
966#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +0200967 in.current = "cont {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +0100968 assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node**)&c)); \
Radek Iša56ca9e42020-09-08 18:42:00 +0200969 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
970 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +0100971
972 TEST_DUP("config", "true", "false");
973 TEST_DUP("description", "text1", "text2");
974 TEST_DUP("presence", "true", "false");
975 TEST_DUP("reference", "1", "2");
976 TEST_DUP("status", "current", "obsolete");
977 TEST_DUP("when", "true", "false");
978#undef TEST_DUP
979
980 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +0200981 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 Krejcib4ac5a92020-11-23 17:54:33 +0100982 "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 Krejci33090f92020-12-17 20:12:46 +0100983 assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Radek Iša56ca9e42020-09-08 18:42:00 +0200984 CHECK_LYSP_NODE(c, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR, 1, "cont", 0, LYS_CONTAINER, 0, "test", 1);
Radek Krejci8c370832018-11-02 15:10:03 +0100985 assert_non_null(c->actions);
986 assert_non_null(c->child);
Radek Krejci8c370832018-11-02 15:10:03 +0100987 assert_non_null(c->groupings);
Radek Krejci8c370832018-11-02 15:10:03 +0100988 assert_non_null(c->musts);
989 assert_non_null(c->notifs);
990 assert_string_equal("true", c->presence);
Radek Krejci8c370832018-11-02 15:10:03 +0100991 assert_non_null(c->typedefs);
Radek Iša56ca9e42020-09-08 18:42:00 +0200992 ly_set_erase(&YCTX->tpdfs_nodes, NULL);
993 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +0100994
995 /* invalid */
Michal Vasko63f3d842020-07-08 10:10:14 +0200996 in.current = " cont {augment /root;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +0100997 assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Radek Iša56ca9e42020-09-08 18:42:00 +0200998 CHECK_LOG_CTX("Invalid keyword \"augment\" as a child of \"container\".", "Line number 1.");
999 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c); c = NULL;
Michal Vasko63f3d842020-07-08 10:10:14 +02001000 in.current = " cont {nonsence true;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001001 assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Radek Iša56ca9e42020-09-08 18:42:00 +02001002 CHECK_LOG_CTX("Invalid character sequence \"nonsence\", expected a keyword.", "Line number 1.");
1003 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001004
Radek Iša56ca9e42020-09-08 18:42:00 +02001005 YCTX->parsed_mod->version = 1; /* simulate YANG 1.0 */
Michal Vasko63f3d842020-07-08 10:10:14 +02001006 in.current = " cont {action x;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001007 assert_int_equal(LY_EVALID, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Radek Iša56ca9e42020-09-08 18:42:00 +02001008 CHECK_LOG_CTX("Invalid keyword \"action\" as a child of \"container\" - "
1009 "the statement is allowed only in YANG 1.1 modules.", "Line number 1.");
1010 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001011}
1012
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001013static void
1014test_leaf(void **state)
1015{
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001016 struct lysp_node_leaf *l = NULL;
Radek Krejci33090f92020-12-17 20:12:46 +01001017
1018 YCTX_INIT;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001019
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001020 /* invalid cardinality */
1021#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001022 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001023 assert_int_equal(LY_EVALID, parse_leaf(YCTX, NULL, (struct lysp_node**)&l)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001024 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1025 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)l); l = NULL;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001026
1027 TEST_DUP("config", "true", "false");
1028 TEST_DUP("default", "x", "y");
1029 TEST_DUP("description", "text1", "text2");
1030 TEST_DUP("mandatory", "true", "false");
1031 TEST_DUP("reference", "1", "2");
1032 TEST_DUP("status", "current", "obsolete");
Radek Krejci0e5d8382018-11-28 16:37:53 +01001033 TEST_DUP("type", "int8", "uint8");
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001034 TEST_DUP("units", "text1", "text2");
1035 TEST_DUP("when", "true", "false");
1036#undef TEST_DUP
1037
1038 /* full content - without mandatory which is mutual exclusive with default */
Michal Vasko63f3d842020-07-08 10:10:14 +02001039 in.current = "l {config false;default \"xxx\";description test;if-feature f;"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001040 "must 'expr';reference test;status current;type string; units yyy;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001041 assert_int_equal(LY_SUCCESS, parse_leaf(YCTX, NULL, (struct lysp_node **)&l));
Radek Iša56ca9e42020-09-08 18:42:00 +02001042 CHECK_LYSP_NODE(l, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR, 1, "l", 0, LYS_LEAF, 0, "test", 1);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001043 assert_string_equal("xxx", l->dflt.str);
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001044 assert_string_equal("yyy", l->units);
1045 assert_string_equal("string", l->type.name);
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001046 assert_non_null(l->musts);
Radek Iša56ca9e42020-09-08 18:42:00 +02001047 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)l); l = NULL;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001048
1049 /* full content - now with mandatory */
Michal Vasko63f3d842020-07-08 10:10:14 +02001050 in.current = "l {mandatory true; type string;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001051 assert_int_equal(LY_SUCCESS, parse_leaf(YCTX, NULL, (struct lysp_node **)&l));
Radek Iša56ca9e42020-09-08 18:42:00 +02001052 CHECK_LYSP_NODE(l, NULL, 0, LYS_MAND_TRUE, 0, "l", 0, LYS_LEAF, 0, NULL, 0);
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001053 assert_string_equal("string", l->type.name);
Radek Iša56ca9e42020-09-08 18:42:00 +02001054 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)l); l = NULL;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001055
1056 /* invalid */
Michal Vasko63f3d842020-07-08 10:10:14 +02001057 in.current = " l {description \"missing type\";} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001058 assert_int_equal(LY_EVALID, parse_leaf(YCTX, NULL, (struct lysp_node **)&l));
Radek Iša56ca9e42020-09-08 18:42:00 +02001059 CHECK_LOG_CTX("Missing mandatory keyword \"type\" as a child of \"leaf\".", "Line number 1.");
1060 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)l); l = NULL;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001061}
1062
Radek Krejci0e5d8382018-11-28 16:37:53 +01001063static void
1064test_leaflist(void **state)
1065{
Radek Krejci0e5d8382018-11-28 16:37:53 +01001066 struct lysp_node_leaflist *ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001067
Radek Krejci33090f92020-12-17 20:12:46 +01001068 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001069 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci0e5d8382018-11-28 16:37:53 +01001070
1071 /* invalid cardinality */
1072#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001073 in.current = "ll {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001074 assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node**)&ll)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001075 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1076 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)ll); ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001077
1078 TEST_DUP("config", "true", "false");
1079 TEST_DUP("description", "text1", "text2");
1080 TEST_DUP("max-elements", "10", "20");
1081 TEST_DUP("min-elements", "10", "20");
1082 TEST_DUP("ordered-by", "user", "system");
1083 TEST_DUP("reference", "1", "2");
1084 TEST_DUP("status", "current", "obsolete");
1085 TEST_DUP("type", "int8", "uint8");
1086 TEST_DUP("units", "text1", "text2");
1087 TEST_DUP("when", "true", "false");
1088#undef TEST_DUP
1089
1090 /* full content - without min-elements which is mutual exclusive with default */
Michal Vasko63f3d842020-07-08 10:10:14 +02001091 in.current = "ll {config false;default \"xxx\"; default \"yyy\";description test;if-feature f;"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001092 "max-elements 10;must 'expr';ordered-by user;reference test;"
1093 "status current;type string; units zzz;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001094 assert_int_equal(LY_SUCCESS, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll));
Radek Iša56ca9e42020-09-08 18:42:00 +02001095 CHECK_LYSP_NODE(ll, "test", 1, 0x446, 1, "ll", 0, LYS_LEAFLIST, 0, "test", 1);
Radek Krejci0e5d8382018-11-28 16:37:53 +01001096 assert_non_null(ll->dflts);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001097 assert_int_equal(2, LY_ARRAY_COUNT(ll->dflts));
Michal Vasko7f45cf22020-10-01 12:49:44 +02001098 assert_string_equal("xxx", ll->dflts[0].str);
1099 assert_string_equal("yyy", ll->dflts[1].str);
Radek Krejci0e5d8382018-11-28 16:37:53 +01001100 assert_string_equal("zzz", ll->units);
1101 assert_int_equal(10, ll->max);
1102 assert_int_equal(0, ll->min);
1103 assert_string_equal("string", ll->type.name);
Radek Krejci0e5d8382018-11-28 16:37:53 +01001104 assert_non_null(ll->musts);
Radek Krejci0e5d8382018-11-28 16:37:53 +01001105 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_USER | LYS_SET_MAX, ll->flags);
Radek Iša56ca9e42020-09-08 18:42:00 +02001106 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ll); ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001107
1108 /* full content - now with min-elements */
Michal Vasko63f3d842020-07-08 10:10:14 +02001109 in.current = "ll {min-elements 10; type string;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001110 assert_int_equal(LY_SUCCESS, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll));
Radek Iša56ca9e42020-09-08 18:42:00 +02001111 CHECK_LYSP_NODE(ll, NULL, 0, 0x200, 0, "ll", 0, LYS_LEAFLIST, 0, NULL, 0);
Radek Krejci0e5d8382018-11-28 16:37:53 +01001112 assert_string_equal("string", ll->type.name);
1113 assert_int_equal(0, ll->max);
1114 assert_int_equal(10, ll->min);
1115 assert_int_equal(LYS_SET_MIN, ll->flags);
Radek Iša56ca9e42020-09-08 18:42:00 +02001116 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ll); ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001117
1118 /* invalid */
Michal Vasko63f3d842020-07-08 10:10:14 +02001119 in.current = " ll {description \"missing type\";} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001120 assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll));
Radek Iša56ca9e42020-09-08 18:42:00 +02001121 CHECK_LOG_CTX("Missing mandatory keyword \"type\" as a child of \"leaf-list\".", "Line number 1.");
1122 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ll); ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001123
Radek Iša56ca9e42020-09-08 18:42:00 +02001124 YCTX->parsed_mod->version = 1; /* simulate YANG 1.0 - default statement is not allowed */
Michal Vasko63f3d842020-07-08 10:10:14 +02001125 in.current = " ll {default xx; type string;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001126 assert_int_equal(LY_EVALID, parse_leaflist(YCTX, NULL, (struct lysp_node **)&ll));
Radek Iša56ca9e42020-09-08 18:42:00 +02001127 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.");
1128 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ll); ll = NULL;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001129}
1130
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001131static void
1132test_list(void **state)
1133{
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001134 struct lysp_node_list *l = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001135
Radek Krejci33090f92020-12-17 20:12:46 +01001136 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001137 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001138
1139 /* invalid cardinality */
1140#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001141 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001142 assert_int_equal(LY_EVALID, parse_list(YCTX, NULL, (struct lysp_node**)&l)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001143 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1144 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)l); l = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001145
1146 TEST_DUP("config", "true", "false");
1147 TEST_DUP("description", "text1", "text2");
1148 TEST_DUP("key", "one", "two");
1149 TEST_DUP("max-elements", "10", "20");
1150 TEST_DUP("min-elements", "10", "20");
1151 TEST_DUP("ordered-by", "user", "system");
1152 TEST_DUP("reference", "1", "2");
1153 TEST_DUP("status", "current", "obsolete");
1154 TEST_DUP("when", "true", "false");
1155#undef TEST_DUP
1156
1157 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001158 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 Krejcib4ac5a92020-11-23 17:54:33 +01001159 "leaf-list ll {type string;} list li;max-elements 10; min-elements 1;must 'expr';notification not; ordered-by system; reference test;"
1160 "status current;typedef t {type int8;}unique xxx;unique yyy;uses g;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001161 assert_int_equal(LY_SUCCESS, parse_list(YCTX, NULL, (struct lysp_node **)&l));
Radek Iša56ca9e42020-09-08 18:42:00 +02001162 CHECK_LYSP_NODE(l, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_MAX | LYS_SET_MIN, 1, "l",
1163 0, LYS_LIST, 0, "test", 1);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001164 assert_string_equal("l", l->key);
1165 assert_non_null(l->uniques);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001166 assert_int_equal(2, LY_ARRAY_COUNT(l->uniques));
Michal Vasko7f45cf22020-10-01 12:49:44 +02001167 assert_string_equal("xxx", l->uniques[0].str);
1168 assert_string_equal("yyy", l->uniques[1].str);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001169 assert_int_equal(10, l->max);
1170 assert_int_equal(1, l->min);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001171 assert_non_null(l->musts);
Radek Iša56ca9e42020-09-08 18:42:00 +02001172 ly_set_erase(&YCTX->tpdfs_nodes, NULL);
1173 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)l); l = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001174
Radek Krejcif538ce52019-03-05 10:46:14 +01001175 /* invalid content */
Radek Iša56ca9e42020-09-08 18:42:00 +02001176 YCTX->parsed_mod->version = 1; /* simulate YANG 1.0 */
Michal Vasko63f3d842020-07-08 10:10:14 +02001177 in.current = "l {action x;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001178 assert_int_equal(LY_EVALID, parse_list(YCTX, NULL, (struct lysp_node **)&l));
Radek Iša56ca9e42020-09-08 18:42:00 +02001179 CHECK_LOG_CTX("Invalid keyword \"action\" as a child of \"list\" - the statement is allowed only in YANG 1.1 modules.", "Line number 1.");
1180 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)l); l = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001181}
1182
Radek Krejci056d0a82018-12-06 16:57:25 +01001183static void
1184test_choice(void **state)
1185{
Radek Krejci056d0a82018-12-06 16:57:25 +01001186 struct lysp_node_choice *ch = NULL;
Radek Krejci056d0a82018-12-06 16:57:25 +01001187
Radek Krejci33090f92020-12-17 20:12:46 +01001188 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001189 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci056d0a82018-12-06 16:57:25 +01001190
1191 /* invalid cardinality */
1192#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001193 in.current = "ch {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001194 assert_int_equal(LY_EVALID, parse_choice(YCTX, NULL, (struct lysp_node**)&ch)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001195 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1196 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)ch); ch = NULL;
Radek Krejci056d0a82018-12-06 16:57:25 +01001197
1198 TEST_DUP("config", "true", "false");
1199 TEST_DUP("default", "a", "b");
1200 TEST_DUP("description", "text1", "text2");
1201 TEST_DUP("mandatory", "true", "false");
1202 TEST_DUP("reference", "1", "2");
1203 TEST_DUP("status", "current", "obsolete");
1204 TEST_DUP("when", "true", "false");
1205#undef TEST_DUP
1206
Radek Krejcia9026eb2018-12-12 16:04:47 +01001207 /* full content - without default due to a collision with mandatory */
Michal Vasko63f3d842020-07-08 10:10:14 +02001208 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 Krejcib4ac5a92020-11-23 17:54:33 +01001209 "leaf-list ll {type string;} list li;mandatory true;reference test;status current;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001210 assert_int_equal(LY_SUCCESS, parse_choice(YCTX, NULL, (struct lysp_node **)&ch));
Radek Iša56ca9e42020-09-08 18:42:00 +02001211 CHECK_LYSP_NODE(ch, "test", 1, LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "ch", 0, LYS_CHOICE, 0, "test", 1);
1212 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ch); ch = NULL;
Radek Krejci056d0a82018-12-06 16:57:25 +01001213
Radek Krejcia9026eb2018-12-12 16:04:47 +01001214 /* full content - the default missing from the previous node */
Michal Vasko63f3d842020-07-08 10:10:14 +02001215 in.current = "ch {default c;case c;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001216 assert_int_equal(LY_SUCCESS, parse_choice(YCTX, NULL, (struct lysp_node **)&ch));
Radek Iša56ca9e42020-09-08 18:42:00 +02001217 CHECK_LYSP_NODE(ch, NULL, 0, 0, 0, "ch", 0, LYS_CHOICE, 0, NULL, 0);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001218 assert_string_equal("c", ch->dflt.str);
Radek Iša56ca9e42020-09-08 18:42:00 +02001219 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)ch); ch = NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001220}
1221
1222static void
1223test_case(void **state)
1224{
Radek Krejcia9026eb2018-12-12 16:04:47 +01001225 struct lysp_node_case *cs = NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001226
Radek Krejci33090f92020-12-17 20:12:46 +01001227 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001228 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcia9026eb2018-12-12 16:04:47 +01001229
1230 /* invalid cardinality */
1231#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001232 in.current = "cs {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001233 assert_int_equal(LY_EVALID, parse_case(YCTX, NULL, (struct lysp_node**)&cs)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001234 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1235 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)cs); cs = NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001236
1237 TEST_DUP("description", "text1", "text2");
1238 TEST_DUP("reference", "1", "2");
1239 TEST_DUP("status", "current", "obsolete");
1240 TEST_DUP("when", "true", "false");
1241#undef TEST_DUP
1242
1243 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001244 in.current = "cs {anydata any;anyxml anyxml; choice ch;container c;description test;if-feature f;leaf l {type string;}"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001245 "leaf-list ll {type string;} list li;reference test;status current;uses grp;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001246 assert_int_equal(LY_SUCCESS, parse_case(YCTX, NULL, (struct lysp_node **)&cs));
Radek Iša56ca9e42020-09-08 18:42:00 +02001247 CHECK_LYSP_NODE(cs, "test", 1, LYS_STATUS_CURR, 1, "cs", 0, LYS_CASE, 0, "test", 1);
1248 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)cs); cs = NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001249
1250 /* invalid content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001251 in.current = "cs {config true} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001252 assert_int_equal(LY_EVALID, parse_case(YCTX, NULL, (struct lysp_node **)&cs));
Radek Iša56ca9e42020-09-08 18:42:00 +02001253 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"case\".", "Line number 1.");
1254 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)cs); cs = NULL;
Radek Krejci056d0a82018-12-06 16:57:25 +01001255}
1256
Radek Krejci9800fb82018-12-13 14:26:23 +01001257static void
Radek Krejcid6b76452019-09-03 17:03:03 +02001258test_any(void **state, enum ly_stmt kw)
Radek Krejci9800fb82018-12-13 14:26:23 +01001259{
Radek Krejci9800fb82018-12-13 14:26:23 +01001260 struct lysp_node_anydata *any = NULL;
Radek Krejci9800fb82018-12-13 14:26:23 +01001261
Radek Krejci33090f92020-12-17 20:12:46 +01001262 YCTX_INIT;
Radek Krejcid6b76452019-09-03 17:03:03 +02001263 if (kw == LY_STMT_ANYDATA) {
Radek Iša56ca9e42020-09-08 18:42:00 +02001264 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci9800fb82018-12-13 14:26:23 +01001265 } else {
Radek Iša56ca9e42020-09-08 18:42:00 +02001266 YCTX->parsed_mod->version = 1; /* simulate YANG 1.0 */
Radek Krejci9800fb82018-12-13 14:26:23 +01001267 }
1268
1269 /* invalid cardinality */
1270#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001271 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001272 assert_int_equal(LY_EVALID, parse_any(YCTX, kw, NULL, (struct lysp_node**)&any)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001273 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1274 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)any); any = NULL;
Radek Krejci9800fb82018-12-13 14:26:23 +01001275
1276 TEST_DUP("config", "true", "false");
1277 TEST_DUP("description", "text1", "text2");
1278 TEST_DUP("mandatory", "true", "false");
1279 TEST_DUP("reference", "1", "2");
1280 TEST_DUP("status", "current", "obsolete");
1281 TEST_DUP("when", "true", "false");
1282#undef TEST_DUP
1283
1284 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001285 in.current = "any {config true;description test;if-feature f;mandatory true;must 'expr';reference test;status current;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001286 assert_int_equal(LY_SUCCESS, parse_any(YCTX, kw, NULL, (struct lysp_node **)&any));
Radek Iša56ca9e42020-09-08 18:42:00 +02001287 // CHECK_LYSP_NODE(NODE, DSC, EXTS, FLAGS, IFFEATURES, NAME, NEXT, TYPE, PARENT, REF, WHEN)
1288 uint16_t node_type = kw == LY_STMT_ANYDATA ? LYS_ANYDATA : LYS_ANYXML;
1289 CHECK_LYSP_NODE(any, "test", 1, LYS_CONFIG_W | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "any", 0, node_type, 0, "test", 1);
Radek Krejci9800fb82018-12-13 14:26:23 +01001290 assert_non_null(any->musts);
Radek Iša56ca9e42020-09-08 18:42:00 +02001291 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)any); any = NULL;
Radek Krejci9800fb82018-12-13 14:26:23 +01001292}
1293
1294static void
1295test_anydata(void **state)
1296{
Radek Krejcid6b76452019-09-03 17:03:03 +02001297 return test_any(state, LY_STMT_ANYDATA);
Radek Krejci9800fb82018-12-13 14:26:23 +01001298}
1299
1300static void
1301test_anyxml(void **state)
1302{
Radek Krejcid6b76452019-09-03 17:03:03 +02001303 return test_any(state, LY_STMT_ANYXML);
Radek Krejci9800fb82018-12-13 14:26:23 +01001304}
1305
Radek Krejcie86bf772018-12-14 11:39:53 +01001306static void
1307test_grouping(void **state)
1308{
Radek Krejcie86bf772018-12-14 11:39:53 +01001309 struct lysp_grp *grp = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001310
Radek Krejci33090f92020-12-17 20:12:46 +01001311 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001312 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcie86bf772018-12-14 11:39:53 +01001313
1314 /* invalid cardinality */
1315#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001316 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001317 assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001318 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1319 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, grp, lysp_grp_free); grp = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001320
1321 TEST_DUP("description", "text1", "text2");
1322 TEST_DUP("reference", "1", "2");
1323 TEST_DUP("status", "current", "obsolete");
1324#undef TEST_DUP
1325
1326 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001327 in.current = "grp {action x;anydata any;anyxml anyxml; choice ch;container c;description test;grouping g;leaf l {type string;}"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001328 "leaf-list ll {type string;} list li;notification not;reference test;status current;typedef t {type int8;}uses g;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001329 assert_int_equal(LY_SUCCESS, parse_grouping(YCTX, NULL, &grp));
Radek Krejcie86bf772018-12-14 11:39:53 +01001330 assert_non_null(grp);
1331 assert_int_equal(LYS_GROUPING, grp->nodetype);
1332 assert_string_equal("grp", grp->name);
1333 assert_string_equal("test", grp->dsc);
1334 assert_non_null(grp->exts);
1335 assert_string_equal("test", grp->ref);
1336 assert_null(grp->parent);
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001337 assert_int_equal(LYS_STATUS_CURR, grp->flags);
Radek Iša56ca9e42020-09-08 18:42:00 +02001338 ly_set_erase(&YCTX->tpdfs_nodes, NULL);
1339 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, grp, lysp_grp_free); grp = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001340
1341 /* invalid content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001342 in.current = "grp {config true} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001343 assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp));
Radek Iša56ca9e42020-09-08 18:42:00 +02001344 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"grouping\".", "Line number 1.");
1345 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, grp, lysp_grp_free); grp = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001346
Michal Vasko63f3d842020-07-08 10:10:14 +02001347 in.current = "grp {must 'expr'} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001348 assert_int_equal(LY_EVALID, parse_grouping(YCTX, NULL, &grp));
Radek Iša56ca9e42020-09-08 18:42:00 +02001349 CHECK_LOG_CTX("Invalid keyword \"must\" as a child of \"grouping\".", "Line number 1.");
1350 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, grp, lysp_grp_free); grp = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001351}
1352
1353static void
Radek Krejcif538ce52019-03-05 10:46:14 +01001354test_action(void **state)
1355{
Radek Krejcif538ce52019-03-05 10:46:14 +01001356 struct lysp_action *rpcs = NULL;
1357 struct lysp_node_container *c = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01001358
Radek Krejci33090f92020-12-17 20:12:46 +01001359 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001360 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcif538ce52019-03-05 10:46:14 +01001361
1362 /* invalid cardinality */
1363#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001364 in.current = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001365 assert_int_equal(LY_EVALID, parse_action(YCTX, NULL, &rpcs)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001366 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1367 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, rpcs, lysp_action_free); rpcs = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01001368
1369 TEST_DUP("description", "text1", "text2");
Michal Vaskob83af8a2020-01-06 09:49:22 +01001370 TEST_DUP("input", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a");
1371 TEST_DUP("output", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a");
Radek Krejcif538ce52019-03-05 10:46:14 +01001372 TEST_DUP("reference", "1", "2");
1373 TEST_DUP("status", "current", "obsolete");
1374#undef TEST_DUP
1375
1376 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001377 in.current = "top;";
Radek Krejci33090f92020-12-17 20:12:46 +01001378 assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Michal Vasko63f3d842020-07-08 10:10:14 +02001379 in.current = "func {description test;grouping grp;if-feature f;reference test;status current;typedef mytype {type int8;} m:ext;"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001380 "input {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}"
1381 " list li; must 1; typedef mytypei {type int8;} uses grp; m:ext;}"
1382 "output {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}"
1383 " list li; must 1; typedef mytypeo {type int8;} uses grp; m:ext;}} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001384 assert_int_equal(LY_SUCCESS, parse_action(YCTX, (struct lysp_node *)c, &rpcs));
Radek Krejcif538ce52019-03-05 10:46:14 +01001385 assert_non_null(rpcs);
1386 assert_int_equal(LYS_ACTION, rpcs->nodetype);
1387 assert_string_equal("func", rpcs->name);
1388 assert_string_equal("test", rpcs->dsc);
1389 assert_non_null(rpcs->exts);
1390 assert_non_null(rpcs->iffeatures);
1391 assert_string_equal("test", rpcs->ref);
1392 assert_non_null(rpcs->groupings);
1393 assert_non_null(rpcs->typedefs);
1394 assert_int_equal(LYS_STATUS_CURR, rpcs->flags);
1395 /* input */
Radek Krejcid3ca0632019-04-16 16:54:54 +02001396 assert_int_equal(rpcs->input.nodetype, LYS_INPUT);
Radek Krejcif538ce52019-03-05 10:46:14 +01001397 assert_non_null(rpcs->input.groupings);
1398 assert_non_null(rpcs->input.exts);
1399 assert_non_null(rpcs->input.musts);
1400 assert_non_null(rpcs->input.typedefs);
1401 assert_non_null(rpcs->input.data);
1402 /* output */
Radek Krejcid3ca0632019-04-16 16:54:54 +02001403 assert_int_equal(rpcs->output.nodetype, LYS_OUTPUT);
Radek Krejcif538ce52019-03-05 10:46:14 +01001404 assert_non_null(rpcs->output.groupings);
1405 assert_non_null(rpcs->output.exts);
1406 assert_non_null(rpcs->output.musts);
1407 assert_non_null(rpcs->output.typedefs);
1408 assert_non_null(rpcs->output.data);
1409
Radek Iša56ca9e42020-09-08 18:42:00 +02001410 ly_set_erase(&YCTX->tpdfs_nodes, NULL);
1411 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, rpcs, lysp_action_free); rpcs = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01001412
1413 /* invalid content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001414 in.current = "func {config true} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001415 assert_int_equal(LY_EVALID, parse_action(YCTX, NULL, &rpcs));
Radek Iša56ca9e42020-09-08 18:42:00 +02001416 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"rpc\".", "Line number 1.");
1417 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, rpcs, lysp_action_free); rpcs = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01001418
Radek Iša56ca9e42020-09-08 18:42:00 +02001419 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c);
Radek Krejcif538ce52019-03-05 10:46:14 +01001420}
1421
1422static void
Radek Krejcifc11bd72019-04-11 16:00:05 +02001423test_notification(void **state)
1424{
Radek Krejcifc11bd72019-04-11 16:00:05 +02001425 struct lysp_notif *notifs = NULL;
1426 struct lysp_node_container *c = NULL;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001427
Radek Krejci33090f92020-12-17 20:12:46 +01001428 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001429 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001430
1431 /* invalid cardinality */
1432#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001433 in.current = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001434 assert_int_equal(LY_EVALID, parse_notif(YCTX, NULL, &notifs)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001435 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1436 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, notifs, lysp_notif_free); notifs = NULL;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001437
1438 TEST_DUP("description", "text1", "text2");
1439 TEST_DUP("reference", "1", "2");
1440 TEST_DUP("status", "current", "obsolete");
1441#undef TEST_DUP
1442
1443 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001444 in.current = "top;";
Radek Krejci33090f92020-12-17 20:12:46 +01001445 assert_int_equal(LY_SUCCESS, parse_container(YCTX, NULL, (struct lysp_node **)&c));
Michal Vasko63f3d842020-07-08 10:10:14 +02001446 in.current = "ntf {anydata a1; anyxml a2; choice ch; container c; description test; grouping grp; if-feature f; leaf l {type int8;}"
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001447 "leaf-list ll {type int8;} list li; must 1; reference test; status current; typedef mytype {type int8;} uses grp; m:ext;}";
Radek Krejci33090f92020-12-17 20:12:46 +01001448 assert_int_equal(LY_SUCCESS, parse_notif(YCTX, (struct lysp_node *)c, &notifs));
Radek Krejcifc11bd72019-04-11 16:00:05 +02001449 assert_non_null(notifs);
1450 assert_int_equal(LYS_NOTIF, notifs->nodetype);
1451 assert_string_equal("ntf", notifs->name);
1452 assert_string_equal("test", notifs->dsc);
1453 assert_non_null(notifs->exts);
1454 assert_non_null(notifs->iffeatures);
1455 assert_string_equal("test", notifs->ref);
1456 assert_non_null(notifs->groupings);
1457 assert_non_null(notifs->typedefs);
1458 assert_non_null(notifs->musts);
1459 assert_non_null(notifs->data);
1460 assert_int_equal(LYS_STATUS_CURR, notifs->flags);
1461
Radek Iša56ca9e42020-09-08 18:42:00 +02001462 ly_set_erase(&YCTX->tpdfs_nodes, NULL);
1463 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, notifs, lysp_notif_free); notifs = NULL;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001464
1465 /* invalid content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001466 in.current = "ntf {config true} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001467 assert_int_equal(LY_EVALID, parse_notif(YCTX, NULL, &notifs));
Radek Iša56ca9e42020-09-08 18:42:00 +02001468 CHECK_LOG_CTX("Invalid keyword \"config\" as a child of \"notification\".", "Line number 1.");
1469 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, notifs, lysp_notif_free); notifs = NULL;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001470
Radek Iša56ca9e42020-09-08 18:42:00 +02001471 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)c);
Radek Krejcifc11bd72019-04-11 16:00:05 +02001472}
1473
1474static void
Radek Krejcie86bf772018-12-14 11:39:53 +01001475test_uses(void **state)
1476{
Radek Krejcie86bf772018-12-14 11:39:53 +01001477 struct lysp_node_uses *u = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001478
Radek Krejci33090f92020-12-17 20:12:46 +01001479 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001480 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcie86bf772018-12-14 11:39:53 +01001481
1482 /* invalid cardinality */
1483#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001484 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001485 assert_int_equal(LY_EVALID, parse_uses(YCTX, NULL, (struct lysp_node**)&u)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001486 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1487 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node*)u); u = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001488
1489 TEST_DUP("description", "text1", "text2");
1490 TEST_DUP("reference", "1", "2");
1491 TEST_DUP("status", "current", "obsolete");
1492 TEST_DUP("when", "true", "false");
1493#undef TEST_DUP
1494
1495 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001496 in.current = "grpref {augment some/node;description test;if-feature f;reference test;refine some/other/node;status current;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001497 assert_int_equal(LY_SUCCESS, parse_uses(YCTX, NULL, (struct lysp_node **)&u));
Radek Iša56ca9e42020-09-08 18:42:00 +02001498 CHECK_LYSP_NODE(u, "test", 1, LYS_STATUS_CURR, 1, "grpref", 0, LYS_USES, 0, "test", 1);
Radek Krejcie86bf772018-12-14 11:39:53 +01001499 assert_non_null(u->augments);
1500 assert_non_null(u->refines);
Radek Iša56ca9e42020-09-08 18:42:00 +02001501 lysp_node_free(YCTX->parsed_mod->mod->ctx, (struct lysp_node *)u); u = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01001502}
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001503
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001504static void
1505test_augment(void **state)
1506{
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001507 struct lysp_augment *a = NULL;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001508
Radek Krejci33090f92020-12-17 20:12:46 +01001509 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001510 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001511
1512 /* invalid cardinality */
1513#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001514 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001515 assert_int_equal(LY_EVALID, parse_augment(YCTX, NULL, &a)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001516 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1517 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, a, lysp_augment_free); a = NULL;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001518
1519 TEST_DUP("description", "text1", "text2");
1520 TEST_DUP("reference", "1", "2");
1521 TEST_DUP("status", "current", "obsolete");
1522 TEST_DUP("when", "true", "false");
1523#undef TEST_DUP
1524
1525 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001526 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 Krejcib4ac5a92020-11-23 17:54:33 +01001527 "leaf-list ll {type string;} list li;notification not;reference test;status current;uses g;when true;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001528 assert_int_equal(LY_SUCCESS, parse_augment(YCTX, NULL, &a));
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001529 assert_non_null(a);
1530 assert_int_equal(LYS_AUGMENT, a->nodetype);
1531 assert_string_equal("/target/nodeid", a->nodeid);
1532 assert_string_equal("test", a->dsc);
1533 assert_non_null(a->exts);
1534 assert_non_null(a->iffeatures);
1535 assert_string_equal("test", a->ref);
1536 assert_non_null(a->when);
1537 assert_null(a->parent);
1538 assert_int_equal(LYS_STATUS_CURR, a->flags);
Radek Iša56ca9e42020-09-08 18:42:00 +02001539 FREE_ARRAY(YCTX->parsed_mod->mod->ctx, a, lysp_augment_free); a = NULL;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01001540}
1541
Radek Krejcif09e4e82019-06-14 15:08:11 +02001542static void
1543test_when(void **state)
1544{
Radek Krejcif09e4e82019-06-14 15:08:11 +02001545 struct lysp_when *w = NULL;
Radek Krejcif09e4e82019-06-14 15:08:11 +02001546
Radek Krejci33090f92020-12-17 20:12:46 +01001547 YCTX_INIT;
Radek Iša56ca9e42020-09-08 18:42:00 +02001548 YCTX->parsed_mod->version = 2; /* simulate YANG 1.1 */
Radek Krejcif09e4e82019-06-14 15:08:11 +02001549
1550 /* invalid cardinality */
1551#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
Michal Vasko63f3d842020-07-08 10:10:14 +02001552 in.current = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
Radek Krejci33090f92020-12-17 20:12:46 +01001553 assert_int_equal(LY_EVALID, parse_when(YCTX, &w)); \
Radek Iša56ca9e42020-09-08 18:42:00 +02001554 CHECK_LOG_CTX("Duplicate keyword \""MEMBER"\".", "Line number 1."); \
1555 FREE_MEMBER(YCTX->parsed_mod->mod->ctx, w, lysp_when_free); w = NULL;
Radek Krejcif09e4e82019-06-14 15:08:11 +02001556
1557 TEST_DUP("description", "text1", "text2");
1558 TEST_DUP("reference", "1", "2");
1559#undef TEST_DUP
1560
1561 /* full content */
Michal Vasko63f3d842020-07-08 10:10:14 +02001562 in.current = "expression {description test;reference test;m:ext;} ...";
Radek Krejci33090f92020-12-17 20:12:46 +01001563 assert_int_equal(LY_SUCCESS, parse_when(YCTX, &w));
Radek Krejcif09e4e82019-06-14 15:08:11 +02001564 assert_non_null(w);
1565 assert_string_equal("expression", w->cond);
1566 assert_string_equal("test", w->dsc);
1567 assert_string_equal("test", w->ref);
1568 assert_non_null(w->exts);
Radek Iša56ca9e42020-09-08 18:42:00 +02001569 FREE_MEMBER(YCTX->parsed_mod->mod->ctx, w, lysp_when_free); w = NULL;
Radek Krejcif09e4e82019-06-14 15:08:11 +02001570
1571 /* empty condition */
Michal Vasko63f3d842020-07-08 10:10:14 +02001572 in.current = "\"\";";
Radek Krejci33090f92020-12-17 20:12:46 +01001573 assert_int_equal(LY_SUCCESS, parse_when(YCTX, &w));
Radek Iša56ca9e42020-09-08 18:42:00 +02001574 CHECK_LOG_CTX("Empty argument of when statement does not make sense.", NULL);
Radek Krejcif09e4e82019-06-14 15:08:11 +02001575 assert_non_null(w);
1576 assert_string_equal("", w->cond);
Radek Iša56ca9e42020-09-08 18:42:00 +02001577 FREE_MEMBER(YCTX->parsed_mod->mod->ctx, w, lysp_when_free); w = NULL;
Radek Krejcif09e4e82019-06-14 15:08:11 +02001578}
1579
David Sedlákd6ce6d72019-07-16 17:30:18 +02001580static void
1581test_value(void **state)
1582{
David Sedlákd6ce6d72019-07-16 17:30:18 +02001583 int64_t val = 0;
1584 uint16_t flags = 0;
1585
Radek Krejci33090f92020-12-17 20:12:46 +01001586 YCTX_INIT;
1587
Michal Vasko63f3d842020-07-08 10:10:14 +02001588 in.current = "-0;";
Radek Krejci33090f92020-12-17 20:12:46 +01001589 assert_int_equal(parse_type_enum_value_pos(YCTX, LY_STMT_VALUE, &val, &flags, NULL), LY_SUCCESS);
David Sedlákd6ce6d72019-07-16 17:30:18 +02001590 assert_int_equal(val, 0);
1591
Michal Vasko63f3d842020-07-08 10:10:14 +02001592 in.current = "-0;";
David Sedlákd6ce6d72019-07-16 17:30:18 +02001593 flags = 0;
Radek Krejci33090f92020-12-17 20:12:46 +01001594 assert_int_equal(parse_type_enum_value_pos(YCTX, LY_STMT_POSITION, &val, &flags, NULL), LY_EVALID);
Radek Iša56ca9e42020-09-08 18:42:00 +02001595 CHECK_LOG_CTX("Invalid value \"-0\" of \"position\".", "Line number 1.");
David Sedlákd6ce6d72019-07-16 17:30:18 +02001596}
1597
Radek Krejcib4ac5a92020-11-23 17:54:33 +01001598int
1599main(void)
Radek Krejci80dd33e2018-09-26 15:57:18 +02001600{
1601 const struct CMUnitTest tests[] = {
Radek Iša56ca9e42020-09-08 18:42:00 +02001602 UTEST(test_helpers, setup, teardown),
1603 UTEST(test_comments, setup, teardown),
1604 UTEST(test_arg, setup, teardown),
1605 UTEST(test_stmts, setup, teardown),
1606 UTEST(test_minmax, setup, teardown),
1607 UTEST(test_module, setup, teardown),
1608 UTEST(test_deviation, setup, teardown),
1609 UTEST(test_deviate, setup, teardown),
1610 UTEST(test_container, setup, teardown),
1611 UTEST(test_leaf, setup, teardown),
1612 UTEST(test_leaflist, setup, teardown),
1613 UTEST(test_list, setup, teardown),
1614 UTEST(test_choice, setup, teardown),
1615 UTEST(test_case, setup, teardown),
1616 UTEST(test_anydata, setup, teardown),
1617 UTEST(test_anyxml, setup, teardown),
1618 UTEST(test_action, setup, teardown),
1619 UTEST(test_notification, setup, teardown),
1620 UTEST(test_grouping, setup, teardown),
1621 UTEST(test_uses, setup, teardown),
1622 UTEST(test_augment, setup, teardown),
1623 UTEST(test_when, setup, teardown),
1624 UTEST(test_value, setup, teardown),
Radek Krejci80dd33e2018-09-26 15:57:18 +02001625 };
1626
1627 return cmocka_run_group_tests(tests, NULL, NULL);
1628}