blob: 3d19f2479be504c146bedee923548e24fc549b1b [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 *
6 * Copyright (c) 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejci80dd33e2018-09-26 15:57:18 +020015#include <stdarg.h>
16#include <stddef.h>
17#include <setjmp.h>
18#include <cmocka.h>
19
20#include <stdio.h>
21#include <string.h>
22
Radek Krejci70593c12020-06-13 20:48:09 +020023#include "common.h"
24#include "parser_internal.h"
25#include "tree_schema.h"
26#include "tree_schema_internal.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020027
28/* originally static functions from tree_schema_free.c and parser_yang.c */
29void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020030void lysp_deviation_free(struct ly_ctx *ctx, struct lysp_deviation *dev);
31void lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp);
32void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action);
33void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif);
34void lysp_augment_free(struct ly_ctx *ctx, struct lysp_augment *augment);
35void lysp_deviate_free(struct ly_ctx *ctx, struct lysp_deviate *d);
36void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
Radek Krejcif09e4e82019-06-14 15:08:11 +020037void lysp_when_free(struct ly_ctx *ctx, struct lysp_when *when);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020038
39LY_ERR buf_add_char(struct ly_ctx *ctx, const char **input, size_t len, char **buf, size_t *buf_len, size_t *buf_used);
Michal Vaskob36053d2020-03-26 15:49:30 +010040LY_ERR buf_store_char(struct lys_yang_parser_ctx *ctx, const char **input, enum yang_arg arg, char **word_p,
David Sedlák40bb13b2019-07-10 14:34:18 +020041 size_t *word_len, char **word_b, size_t *buf_len, int need_buf, int *prefix);
Michal Vaskob36053d2020-03-26 15:49:30 +010042LY_ERR get_keyword(struct lys_yang_parser_ctx *ctx, const char **data, enum ly_stmt *kw, char **word_p, size_t *word_len);
43LY_ERR get_argument(struct lys_yang_parser_ctx *ctx, const char **data, enum yang_arg arg,
Radek Krejci2d7a47b2019-05-16 13:34:10 +020044 uint16_t *flags, char **word_p, char **word_b, size_t *word_len);
Michal Vaskob36053d2020-03-26 15:49:30 +010045LY_ERR skip_comment(struct lys_yang_parser_ctx *ctx, const char **data, int comment);
Radek Krejci2d7a47b2019-05-16 13:34:10 +020046
Michal Vaskob36053d2020-03-26 15:49:30 +010047LY_ERR parse_action(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_action **actions);
48LY_ERR parse_any(struct lys_yang_parser_ctx *ctx, const char **data, enum ly_stmt kw, struct lysp_node *parent, struct lysp_node **siblings);
49LY_ERR parse_augment(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_augment **augments);
50LY_ERR parse_case(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
51LY_ERR parse_container(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
52LY_ERR parse_deviate(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_deviate **deviates);
53LY_ERR parse_deviation(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_deviation **deviations);
Michal Vaskob36053d2020-03-26 15:49:30 +010054LY_ERR parse_grouping(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_grp **groupings);
55LY_ERR parse_choice(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
Michal Vaskob36053d2020-03-26 15:49:30 +010056LY_ERR parse_leaf(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
57LY_ERR parse_leaflist(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
58LY_ERR parse_list(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
59LY_ERR parse_maxelements(struct lys_yang_parser_ctx *ctx, const char **data, uint32_t *max, uint16_t *flags, struct lysp_ext_instance **exts);
60LY_ERR parse_minelements(struct lys_yang_parser_ctx *ctx, const char **data, uint32_t *min, uint16_t *flags, struct lysp_ext_instance **exts);
61LY_ERR parse_module(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_module *mod);
62LY_ERR parse_notif(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_notif **notifs);
63LY_ERR parse_submodule(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_submodule *submod);
64LY_ERR parse_uses(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_node *parent, struct lysp_node **siblings);
65LY_ERR parse_when(struct lys_yang_parser_ctx *ctx, const char **data, struct lysp_when **when_p);
66LY_ERR parse_type_enum_value_pos(struct lys_yang_parser_ctx *ctx, const char **data, enum ly_stmt val_kw, int64_t *value, uint16_t *flags, struct lysp_ext_instance **exts);
Radek Krejci80dd33e2018-09-26 15:57:18 +020067
68#define BUFSIZE 1024
69char logbuf[BUFSIZE] = {0};
Radek Krejci9ed7a192018-10-31 16:23:51 +010070int store = -1; /* negative for infinite logging, positive for limited logging */
Radek Krejci80dd33e2018-09-26 15:57:18 +020071
72/* set to 0 to printing error messages to stderr instead of checking them in code */
Radek Krejci70853c52018-10-15 14:46:16 +020073#define ENABLE_LOGGER_CHECKING 1
Radek Krejci80dd33e2018-09-26 15:57:18 +020074
Radek Krejcid5f2b5f2018-10-11 10:54:36 +020075#if ENABLE_LOGGER_CHECKING
Radek Krejci80dd33e2018-09-26 15:57:18 +020076static void
77logger(LY_LOG_LEVEL level, const char *msg, const char *path)
78{
79 (void) level; /* unused */
Radek Krejci9ed7a192018-10-31 16:23:51 +010080 if (store) {
81 if (path && path[0]) {
82 snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path);
83 } else {
84 strncpy(logbuf, msg, BUFSIZE - 1);
85 }
86 if (store > 0) {
87 --store;
88 }
Radek Krejci80dd33e2018-09-26 15:57:18 +020089 }
90}
Radek Krejcid5f2b5f2018-10-11 10:54:36 +020091#endif
Radek Krejci80dd33e2018-09-26 15:57:18 +020092
93static int
94logger_setup(void **state)
95{
96 (void) state; /* unused */
97#if ENABLE_LOGGER_CHECKING
98 ly_set_log_clb(logger, 1);
99#endif
100 return 0;
101}
102
Radek Krejcib1a5dcc2018-11-26 14:50:05 +0100103static int
104logger_teardown(void **state)
105{
106 (void) state; /* unused */
107#if ENABLE_LOGGER_CHECKING
108 if (*state) {
109 fprintf(stderr, "%s\n", logbuf);
110 }
111#endif
112 return 0;
113}
114
Radek Krejci80dd33e2018-09-26 15:57:18 +0200115void
116logbuf_clean(void)
117{
118 logbuf[0] = '\0';
119}
120
121#if ENABLE_LOGGER_CHECKING
122# define logbuf_assert(str) assert_string_equal(logbuf, str)
123#else
124# define logbuf_assert(str)
125#endif
126
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200127#define TEST_DUP_GENERIC(PREFIX, MEMBER, VALUE1, VALUE2, FUNC, RESULT, LINE, CLEANUP) \
128 str = PREFIX MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
129 assert_int_equal(LY_EVALID, FUNC(&ctx, &str, RESULT)); \
130 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number "LINE"."); \
131 CLEANUP
132
Radek Krejci44ceedc2018-10-02 15:54:31 +0200133static void
134test_helpers(void **state)
135{
136 (void) state; /* unused */
137
138 const char *str;
Radek Krejci404251e2018-10-09 12:06:44 +0200139 char *buf, *p;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200140 size_t len, size;
Michal Vaskob36053d2020-03-26 15:49:30 +0100141 struct lys_yang_parser_ctx ctx;
142 ctx.format = LYS_IN_YANG;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200143 ctx.ctx = NULL;
Radek Krejci99435242019-09-05 16:19:15 +0200144 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200145 ctx.line = 1;
David Sedlák40bb13b2019-07-10 14:34:18 +0200146 int prefix = 0;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200147
148 /* storing into buffer */
149 str = "abcd";
150 buf = NULL;
151 size = len = 0;
152 assert_int_equal(LY_SUCCESS, buf_add_char(NULL, &str, 2, &buf, &size, &len));
153 assert_int_not_equal(0, size);
154 assert_int_equal(2, len);
155 assert_string_equal("cd", str);
156 assert_false(strncmp("ab", buf, 2));
157 free(buf);
Radek Krejci404251e2018-10-09 12:06:44 +0200158 buf = NULL;
159
160 /* invalid first characters */
161 len = 0;
162 str = "2invalid";
David Sedlák40bb13b2019-07-10 14:34:18 +0200163 assert_int_equal(LY_EVALID, buf_store_char(&ctx, &str, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200164 str = ".invalid";
David Sedlák40bb13b2019-07-10 14:34:18 +0200165 assert_int_equal(LY_EVALID, buf_store_char(&ctx, &str, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200166 str = "-invalid";
David Sedlák40bb13b2019-07-10 14:34:18 +0200167 assert_int_equal(LY_EVALID, buf_store_char(&ctx, &str, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200168 /* invalid following characters */
169 len = 3; /* number of characters read before the str content */
170 str = "!";
David Sedlák40bb13b2019-07-10 14:34:18 +0200171 assert_int_equal(LY_EVALID, buf_store_char(&ctx, &str, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200172 str = ":";
David Sedlák40bb13b2019-07-10 14:34:18 +0200173 assert_int_equal(LY_EVALID, buf_store_char(&ctx, &str, Y_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200174 /* valid colon for prefixed identifiers */
175 len = size = 0;
176 p = NULL;
David Sedlák40bb13b2019-07-10 14:34:18 +0200177 prefix = 0;
Radek Krejci404251e2018-10-09 12:06:44 +0200178 str = "x:id";
David Sedlák40bb13b2019-07-10 14:34:18 +0200179 assert_int_equal(LY_SUCCESS, buf_store_char(&ctx, &str, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 0, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200180 assert_int_equal(1, len);
181 assert_null(buf);
182 assert_string_equal(":id", str);
183 assert_int_equal('x', p[len - 1]);
David Sedlák40bb13b2019-07-10 14:34:18 +0200184 assert_int_equal(LY_SUCCESS, buf_store_char(&ctx, &str, Y_PREF_IDENTIF_ARG, &p, &len, &buf, &size, 1, &prefix));
Radek Krejci404251e2018-10-09 12:06:44 +0200185 assert_int_equal(2, len);
186 assert_string_equal("id", str);
187 assert_int_equal(':', p[len - 1]);
188 free(buf);
David Sedlák40bb13b2019-07-10 14:34:18 +0200189 prefix = 0;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200190
191 /* checking identifiers */
Michal Vaskob36053d2020-03-26 15:49:30 +0100192 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, ':', 0, NULL));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200193 logbuf_assert("Invalid identifier character ':'. Line number 1.");
Michal Vaskob36053d2020-03-26 15:49:30 +0100194 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, '#', 1, NULL));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200195 logbuf_assert("Invalid identifier first character '#'. Line number 1.");
196
Michal Vaskob36053d2020-03-26 15:49:30 +0100197 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, 'a', 1, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200198 assert_int_equal(0, prefix);
Michal Vaskob36053d2020-03-26 15:49:30 +0100199 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, ':', 0, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200200 assert_int_equal(1, prefix);
Michal Vaskob36053d2020-03-26 15:49:30 +0100201 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, ':', 0, &prefix));
Radek Krejcidcc7b322018-10-11 14:24:02 +0200202 assert_int_equal(1, prefix);
Michal Vaskob36053d2020-03-26 15:49:30 +0100203 assert_int_equal(LY_SUCCESS, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, 'b', 0, &prefix));
Radek Krejci44ceedc2018-10-02 15:54:31 +0200204 assert_int_equal(2, prefix);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200205 /* second colon is invalid */
Michal Vaskob36053d2020-03-26 15:49:30 +0100206 assert_int_equal(LY_EVALID, lysp_check_identifierchar((struct lys_parser_ctx *)&ctx, ':', 0, &prefix));
Radek Krejcidcc7b322018-10-11 14:24:02 +0200207 logbuf_assert("Invalid identifier character ':'. Line number 1.");
Radek Krejci44ceedc2018-10-02 15:54:31 +0200208}
Radek Krejci80dd33e2018-09-26 15:57:18 +0200209
210static void
211test_comments(void **state)
212{
213 (void) state; /* unused */
214
Michal Vaskob36053d2020-03-26 15:49:30 +0100215 struct lys_yang_parser_ctx ctx;
Radek Krejci80dd33e2018-09-26 15:57:18 +0200216 const char *str, *p;
Radek Krejciefd22f62018-09-27 11:47:58 +0200217 char *word, *buf;
218 size_t len;
Radek Krejci80dd33e2018-09-26 15:57:18 +0200219
Michal Vaskob36053d2020-03-26 15:49:30 +0100220 ctx.format = LYS_IN_YANG;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200221 ctx.ctx = NULL;
Radek Krejci99435242019-09-05 16:19:15 +0200222 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200223 ctx.line = 1;
224
Radek Krejci0a1d0d42019-05-16 15:14:51 +0200225 str = " // this is a text of / one * line */ comment\nargument;";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200226 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejci0a1d0d42019-05-16 15:14:51 +0200227 assert_string_equal("argument;", word);
Radek Krejciefd22f62018-09-27 11:47:58 +0200228 assert_null(buf);
229 assert_int_equal(8, len);
Radek Krejci80dd33e2018-09-26 15:57:18 +0200230
Radek Krejci0a1d0d42019-05-16 15:14:51 +0200231 str = "/* this is a \n * text // of / block * comment */\"arg\" + \"ume\" \n + \n \"nt\";";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200232 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200233 assert_string_equal("argument", word);
234 assert_ptr_equal(buf, word);
235 assert_int_equal(8, len);
236 free(word);
Radek Krejci80dd33e2018-09-26 15:57:18 +0200237
238 str = p = " this is one line comment on last line";
Radek Krejci44ceedc2018-10-02 15:54:31 +0200239 assert_int_equal(LY_SUCCESS, skip_comment(&ctx, &str, 1));
Radek Krejci80dd33e2018-09-26 15:57:18 +0200240 assert_true(str[0] == '\0');
241
242 str = p = " this is a not terminated comment x";
Radek Krejci44ceedc2018-10-02 15:54:31 +0200243 assert_int_equal(LY_EVALID, skip_comment(&ctx, &str, 2));
Radek Krejci0a1d0d42019-05-16 15:14:51 +0200244 logbuf_assert("Unexpected end-of-input, non-terminated comment. Line number 5.");
Radek Krejci80dd33e2018-09-26 15:57:18 +0200245 assert_true(str[0] == '\0');
246}
247
Radek Krejciefd22f62018-09-27 11:47:58 +0200248static void
249test_arg(void **state)
250{
251 (void) state; /* unused */
252
Michal Vaskob36053d2020-03-26 15:49:30 +0100253 struct lys_yang_parser_ctx ctx;
Radek Krejciefd22f62018-09-27 11:47:58 +0200254 const char *str;
255 char *word, *buf;
256 size_t len;
257
Michal Vaskob36053d2020-03-26 15:49:30 +0100258 ctx.format = LYS_IN_YANG;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200259 ctx.ctx = NULL;
Radek Krejci99435242019-09-05 16:19:15 +0200260 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci44ceedc2018-10-02 15:54:31 +0200261 ctx.line = 1;
262
Radek Krejciefd22f62018-09-27 11:47:58 +0200263 /* missing argument */
264 str = ";";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200265 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_MAYBE_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200266 assert_null(word);
267
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200268 str = "{";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200269 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200270 logbuf_assert("Invalid character sequence \"{\", expected an argument. Line number 1.");
271
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200272 /* invalid escape sequence */
273 str = "\"\\s\"";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200274 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200275 logbuf_assert("Double-quoted string unknown special character \'\\s\'. Line number 1.");
276 str = "\'\\s\'"; /* valid, since it is not an escape sequence in single quoted string */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200277 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200278 assert_int_equal(2, len);
279 assert_string_equal("\\s\'", word);
280 assert_int_equal('\0', str[0]); /* input has been eaten */
281
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200282 /* invalid character after the argument */
283 str = "hello\"";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200284 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200285 logbuf_assert("Invalid character sequence \"\"\", expected unquoted string character, optsep, semicolon or opening brace. Line number 1.");
286 str = "hello}";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200287 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200288 logbuf_assert("Invalid character sequence \"}\", expected unquoted string character, optsep, semicolon or opening brace. Line number 1.");
289
David Sedlák40bb13b2019-07-10 14:34:18 +0200290 /* invalid identifier-ref-arg-str */
291 str = "pre:pre:value";
292 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len));
293
Radek Krejci4e199f52019-05-28 09:09:28 +0200294 str = "\"\";"; /* empty identifier is not allowed */
295 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_IDENTIF_ARG, NULL, &word, &buf, &len));
296 logbuf_assert("Statement argument is required. Line number 1.");
297 logbuf_clean();
298 str = "\"\";"; /* empty reference identifier is not allowed */
299 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_PREF_IDENTIF_ARG, NULL, &word, &buf, &len));
300 logbuf_assert("Statement argument is required. Line number 1.");
301
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200302 str = "hello/x\t"; /* slash is not an invalid character */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200303 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200304 assert_int_equal(7, len);
305 assert_string_equal("hello/x\t", word);
306
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200307 assert_null(buf);
Radek Krejciefd22f62018-09-27 11:47:58 +0200308
309 /* different quoting */
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200310 str = "hello ";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200311 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200312 assert_null(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200313 assert_int_equal(5, len);
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200314 assert_string_equal("hello ", word);
Radek Krejciefd22f62018-09-27 11:47:58 +0200315
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200316 str = "hello/*comment*/\n";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200317 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200318 assert_null(buf);
319 assert_int_equal(5, len);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200320 assert_false(strncmp("hello", word, len));
321
322
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200323 str = "\"hello\\n\\t\\\"\\\\\";";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200324 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
fredgand49fe112019-10-21 20:51:50 +0800325 assert_non_null(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200326 assert_int_equal(9, len);
fredgand49fe112019-10-21 20:51:50 +0800327 assert_string_equal("hello\n\t\"\\", word);
328 free(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200329
330 ctx.indent = 14;
331 str = "\"hello \t\n\t\t world!\"";
332 /* - space and tabs before newline are stripped out
333 * - space and tabs after newline (indentation) are stripped out
334 */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200335 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200336 assert_non_null(buf);
337 assert_ptr_equal(word, buf);
338 assert_int_equal(14, len);
339 assert_string_equal("hello\n world!", word);
340 free(buf);
Radek Krejciff13cd12019-10-25 15:34:24 +0200341 /* In contrast to previous, the backslash-escaped tabs are expanded after trimming, so they are preserved */
342 ctx.indent = 14;
343 str = "\"hello \\t\n\t\\t world!\"";
344 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
345 assert_non_null(buf);
346 assert_ptr_equal(word, buf);
347 assert_int_equal(16, len);
348 assert_string_equal("hello \t\n\t world!", word);
349 free(buf);
350 /* Do not handle whitespaces after backslash-escaped newline as indentation */
351 ctx.indent = 14;
352 str = "\"hello\\n\t\t world!\"";
353 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
354 assert_non_null(buf);
355 assert_ptr_equal(word, buf);
356 assert_int_equal(15, len);
357 assert_string_equal("hello\n\t\t world!", word);
358 free(buf);
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200359
360 ctx.indent = 14;
361 str = "\"hello\n \tworld!\"";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200362 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejcid5f2b5f2018-10-11 10:54:36 +0200363 assert_non_null(buf);
364 assert_ptr_equal(word, buf);
365 assert_int_equal(12, len);
366 assert_string_equal("hello\nworld!", word);
367 free(buf);
Radek Krejciefd22f62018-09-27 11:47:58 +0200368
369 str = "\'hello\'";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200370 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200371 assert_null(buf);
372 assert_int_equal(5, len);
373 assert_false(strncmp("hello", word, 5));
374
375 str = "\"hel\" +\t\n\"lo\"";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200376 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200377 assert_ptr_equal(word, buf);
378 assert_int_equal(5, len);
379 assert_string_equal("hello", word);
380 free(buf);
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200381 str = "\"hel\" +\t\nlo"; /* unquoted the second part */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200382 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciff13cd12019-10-25 15:34:24 +0200383 logbuf_assert("Both string parts divided by '+' must be quoted. Line number 6.");
Radek Krejciefd22f62018-09-27 11:47:58 +0200384
385 str = "\'he\'\t\n+ \"llo\"";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200386 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200387 assert_ptr_equal(word, buf);
388 assert_int_equal(5, len);
389 assert_string_equal("hello", word);
390 free(buf);
391
Radek Krejcifc62d7e2018-10-11 12:56:42 +0200392 str = " \t\n\"he\"+\'llo\'";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200393 assert_int_equal(LY_SUCCESS, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciefd22f62018-09-27 11:47:58 +0200394 assert_ptr_equal(word, buf);
395 assert_int_equal(5, len);
396 assert_string_equal("hello", word);
397 free(buf);
398
Radek Krejci44ceedc2018-10-02 15:54:31 +0200399 /* missing argument */
400 str = ";";
Radek Krejcid3ca0632019-04-16 16:54:54 +0200401 assert_int_equal(LY_EVALID, get_argument(&ctx, &str, Y_STR_ARG, NULL, &word, &buf, &len));
Radek Krejciff13cd12019-10-25 15:34:24 +0200402 logbuf_assert("Invalid character sequence \";\", expected an argument. Line number 8.");
Radek Krejcidcc7b322018-10-11 14:24:02 +0200403}
404
405static void
406test_stmts(void **state)
407{
408 (void) state; /* unused */
409
Michal Vaskob36053d2020-03-26 15:49:30 +0100410 struct lys_yang_parser_ctx ctx;
Radek Krejcidcc7b322018-10-11 14:24:02 +0200411 const char *str, *p;
Radek Krejcid6b76452019-09-03 17:03:03 +0200412 enum ly_stmt kw;
Radek Krejcidcc7b322018-10-11 14:24:02 +0200413 char *word;
414 size_t len;
415
Michal Vaskob36053d2020-03-26 15:49:30 +0100416 ctx.format = LYS_IN_YANG;
Radek Krejcidcc7b322018-10-11 14:24:02 +0200417 ctx.ctx = NULL;
Radek Krejci99435242019-09-05 16:19:15 +0200418 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcidcc7b322018-10-11 14:24:02 +0200419 ctx.line = 1;
420
421 str = "\n// comment\n\tinput\t{";
422 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200423 assert_int_equal(LY_STMT_INPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200424 assert_int_equal(5, len);
425 assert_string_equal("input\t{", word);
426 assert_string_equal("\t{", str);
427
428 str = "\t /* comment */\t output\n\t{";
429 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200430 assert_int_equal(LY_STMT_OUTPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200431 assert_int_equal(6, len);
432 assert_string_equal("output\n\t{", word);
433 assert_string_equal("\n\t{", str);
Radek Krejciabdd8062019-06-11 16:44:19 +0200434 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200435 assert_int_equal(LY_STMT_SYNTAX_LEFT_BRACE, kw);
Radek Krejciabdd8062019-06-11 16:44:19 +0200436 assert_int_equal(1, len);
437 assert_string_equal("{", word);
438 assert_string_equal("", str);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200439
440 str = "/input { "; /* invalid slash */
441 assert_int_equal(LY_EVALID, get_keyword(&ctx, &str, &kw, &word, &len));
442 logbuf_assert("Invalid identifier first character '/'. Line number 4.");
443
444 str = "not-a-statement-nor-extension { "; /* invalid identifier */
445 assert_int_equal(LY_EVALID, get_keyword(&ctx, &str, &kw, &word, &len));
446 logbuf_assert("Invalid character sequence \"not-a-statement-nor-extension\", expected a keyword. Line number 4.");
447
448 str = "path;"; /* missing sep after the keyword */
449 assert_int_equal(LY_EVALID, get_keyword(&ctx, &str, &kw, &word, &len));
450 logbuf_assert("Invalid character sequence \"path;\", expected a keyword followed by a separator. Line number 4.");
451
452 str = "action ";
453 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200454 assert_int_equal(LY_STMT_ACTION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200455 assert_int_equal(6, len);
456 str = "anydata ";
457 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200458 assert_int_equal(LY_STMT_ANYDATA, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200459 assert_int_equal(7, len);
460 str = "anyxml ";
461 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200462 assert_int_equal(LY_STMT_ANYXML, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200463 assert_int_equal(6, len);
464 str = "argument ";
465 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200466 assert_int_equal(LY_STMT_ARGUMENT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200467 assert_int_equal(8, len);
468 str = "augment ";
469 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200470 assert_int_equal(LY_STMT_AUGMENT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200471 assert_int_equal(7, len);
472 str = "base ";
473 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200474 assert_int_equal(LY_STMT_BASE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200475 assert_int_equal(4, len);
476 str = "belongs-to ";
477 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200478 assert_int_equal(LY_STMT_BELONGS_TO, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200479 assert_int_equal(10, len);
480 str = "bit ";
481 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200482 assert_int_equal(LY_STMT_BIT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200483 assert_int_equal(3, len);
484 str = "case ";
485 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200486 assert_int_equal(LY_STMT_CASE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200487 assert_int_equal(4, len);
488 str = "choice ";
489 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200490 assert_int_equal(LY_STMT_CHOICE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200491 assert_int_equal(6, len);
492 str = "config ";
493 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200494 assert_int_equal(LY_STMT_CONFIG, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200495 assert_int_equal(6, len);
496 str = "contact ";
497 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200498 assert_int_equal(LY_STMT_CONTACT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200499 assert_int_equal(7, len);
500 str = "container ";
501 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200502 assert_int_equal(LY_STMT_CONTAINER, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200503 assert_int_equal(9, len);
504 str = "default ";
505 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200506 assert_int_equal(LY_STMT_DEFAULT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200507 assert_int_equal(7, len);
508 str = "description ";
509 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200510 assert_int_equal(LY_STMT_DESCRIPTION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200511 assert_int_equal(11, len);
512 str = "deviate ";
513 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200514 assert_int_equal(LY_STMT_DEVIATE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200515 assert_int_equal(7, len);
516 str = "deviation ";
517 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200518 assert_int_equal(LY_STMT_DEVIATION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200519 assert_int_equal(9, len);
520 str = "enum ";
521 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200522 assert_int_equal(LY_STMT_ENUM, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200523 assert_int_equal(4, len);
524 str = "error-app-tag ";
525 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200526 assert_int_equal(LY_STMT_ERROR_APP_TAG, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200527 assert_int_equal(13, len);
528 str = "error-message ";
529 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200530 assert_int_equal(LY_STMT_ERROR_MESSAGE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200531 assert_int_equal(13, len);
532 str = "extension ";
533 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200534 assert_int_equal(LY_STMT_EXTENSION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200535 assert_int_equal(9, len);
536 str = "feature ";
537 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200538 assert_int_equal(LY_STMT_FEATURE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200539 assert_int_equal(7, len);
540 str = "fraction-digits ";
541 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200542 assert_int_equal(LY_STMT_FRACTION_DIGITS, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200543 assert_int_equal(15, len);
544 str = "grouping ";
545 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200546 assert_int_equal(LY_STMT_GROUPING, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200547 assert_int_equal(8, len);
548 str = "identity ";
549 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200550 assert_int_equal(LY_STMT_IDENTITY, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200551 assert_int_equal(8, len);
552 str = "if-feature ";
553 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200554 assert_int_equal(LY_STMT_IF_FEATURE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200555 assert_int_equal(10, len);
556 str = "import ";
557 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200558 assert_int_equal(LY_STMT_IMPORT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200559 assert_int_equal(6, len);
560 str = "include ";
561 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200562 assert_int_equal(LY_STMT_INCLUDE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200563 assert_int_equal(7, len);
564 str = "input{";
565 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200566 assert_int_equal(LY_STMT_INPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200567 assert_int_equal(5, len);
568 str = "key ";
569 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200570 assert_int_equal(LY_STMT_KEY, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200571 assert_int_equal(3, len);
572 str = "leaf ";
573 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200574 assert_int_equal(LY_STMT_LEAF, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200575 assert_int_equal(4, len);
576 str = "leaf-list ";
577 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200578 assert_int_equal(LY_STMT_LEAF_LIST, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200579 assert_int_equal(9, len);
580 str = "length ";
581 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200582 assert_int_equal(LY_STMT_LENGTH, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200583 assert_int_equal(6, len);
584 str = "list ";
585 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200586 assert_int_equal(LY_STMT_LIST, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200587 assert_int_equal(4, len);
588 str = "mandatory ";
589 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200590 assert_int_equal(LY_STMT_MANDATORY, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200591 assert_int_equal(9, len);
592 str = "max-elements ";
593 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200594 assert_int_equal(LY_STMT_MAX_ELEMENTS, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200595 assert_int_equal(12, len);
596 str = "min-elements ";
597 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200598 assert_int_equal(LY_STMT_MIN_ELEMENTS, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200599 assert_int_equal(12, len);
600 str = "modifier ";
601 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200602 assert_int_equal(LY_STMT_MODIFIER, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200603 assert_int_equal(8, len);
604 str = "module ";
605 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200606 assert_int_equal(LY_STMT_MODULE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200607 assert_int_equal(6, len);
608 str = "must ";
609 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200610 assert_int_equal(LY_STMT_MUST, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200611 assert_int_equal(4, len);
612 str = "namespace ";
613 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200614 assert_int_equal(LY_STMT_NAMESPACE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200615 assert_int_equal(9, len);
616 str = "notification ";
617 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200618 assert_int_equal(LY_STMT_NOTIFICATION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200619 assert_int_equal(12, len);
620 str = "ordered-by ";
621 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200622 assert_int_equal(LY_STMT_ORDERED_BY, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200623 assert_int_equal(10, len);
624 str = "organization ";
625 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200626 assert_int_equal(LY_STMT_ORGANIZATION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200627 assert_int_equal(12, len);
628 str = "output ";
629 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200630 assert_int_equal(LY_STMT_OUTPUT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200631 assert_int_equal(6, len);
632 str = "path ";
633 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200634 assert_int_equal(LY_STMT_PATH, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200635 assert_int_equal(4, len);
636 str = "pattern ";
637 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200638 assert_int_equal(LY_STMT_PATTERN, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200639 assert_int_equal(7, len);
640 str = "position ";
641 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200642 assert_int_equal(LY_STMT_POSITION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200643 assert_int_equal(8, len);
644 str = "prefix ";
645 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200646 assert_int_equal(LY_STMT_PREFIX, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200647 assert_int_equal(6, len);
648 str = "presence ";
649 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200650 assert_int_equal(LY_STMT_PRESENCE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200651 assert_int_equal(8, len);
652 str = "range ";
653 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200654 assert_int_equal(LY_STMT_RANGE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200655 assert_int_equal(5, len);
656 str = "reference ";
657 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200658 assert_int_equal(LY_STMT_REFERENCE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200659 assert_int_equal(9, len);
660 str = "refine ";
661 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200662 assert_int_equal(LY_STMT_REFINE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200663 assert_int_equal(6, len);
664 str = "require-instance ";
665 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200666 assert_int_equal(LY_STMT_REQUIRE_INSTANCE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200667 assert_int_equal(16, len);
668 str = "revision ";
669 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200670 assert_int_equal(LY_STMT_REVISION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200671 assert_int_equal(8, len);
672 str = "revision-date ";
673 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200674 assert_int_equal(LY_STMT_REVISION_DATE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200675 assert_int_equal(13, len);
676 str = "rpc ";
677 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200678 assert_int_equal(LY_STMT_RPC, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200679 assert_int_equal(3, len);
680 str = "status ";
681 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200682 assert_int_equal(LY_STMT_STATUS, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200683 assert_int_equal(6, len);
684 str = "submodule ";
685 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200686 assert_int_equal(LY_STMT_SUBMODULE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200687 assert_int_equal(9, len);
688 str = "type ";
689 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200690 assert_int_equal(LY_STMT_TYPE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200691 assert_int_equal(4, len);
692 str = "typedef ";
693 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200694 assert_int_equal(LY_STMT_TYPEDEF, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200695 assert_int_equal(7, len);
696 str = "unique ";
697 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200698 assert_int_equal(LY_STMT_UNIQUE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200699 assert_int_equal(6, len);
700 str = "units ";
701 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200702 assert_int_equal(LY_STMT_UNITS, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200703 assert_int_equal(5, len);
704 str = "uses ";
705 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200706 assert_int_equal(LY_STMT_USES, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200707 assert_int_equal(4, len);
708 str = "value ";
709 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200710 assert_int_equal(LY_STMT_VALUE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200711 assert_int_equal(5, len);
712 str = "when ";
713 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200714 assert_int_equal(LY_STMT_WHEN, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200715 assert_int_equal(4, len);
716 str = "yang-version ";
717 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200718 assert_int_equal(LY_STMT_YANG_VERSION, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200719 assert_int_equal(12, len);
720 str = "yin-element ";
721 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200722 assert_int_equal(LY_STMT_YIN_ELEMENT, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200723 assert_int_equal(11, len);
Radek Krejci626df482018-10-11 15:06:31 +0200724 str = ";config false;";
725 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200726 assert_int_equal(LY_STMT_SYNTAX_SEMICOLON, kw);
Radek Krejci626df482018-10-11 15:06:31 +0200727 assert_int_equal(1, len);
728 assert_string_equal("config false;", str);
729 str = "{ config false;";
730 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200731 assert_int_equal(LY_STMT_SYNTAX_LEFT_BRACE, kw);
Radek Krejci626df482018-10-11 15:06:31 +0200732 assert_int_equal(1, len);
733 assert_string_equal(" config false;", str);
734 str = "}";
735 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200736 assert_int_equal(LY_STMT_SYNTAX_RIGHT_BRACE, kw);
Radek Krejci626df482018-10-11 15:06:31 +0200737 assert_int_equal(1, len);
738 assert_string_equal("", str);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200739
740 /* geenric extension */
741 str = p = "nacm:default-deny-write;";
742 assert_int_equal(LY_SUCCESS, get_keyword(&ctx, &str, &kw, &word, &len));
Radek Krejcid6b76452019-09-03 17:03:03 +0200743 assert_int_equal(LY_STMT_EXTENSION_INSTANCE, kw);
Radek Krejcidcc7b322018-10-11 14:24:02 +0200744 assert_int_equal(23, len);
745 assert_ptr_equal(p, word);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200746}
Radek Krejci44ceedc2018-10-02 15:54:31 +0200747
Radek Krejci05b13982018-11-28 16:22:07 +0100748static void
749test_minmax(void **state)
750{
751 *state = test_minmax;
752
Michal Vaskob36053d2020-03-26 15:49:30 +0100753 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci05b13982018-11-28 16:22:07 +0100754 uint16_t flags = 0;
755 uint32_t value = 0;
756 struct lysp_ext_instance *ext = NULL;
757 const char *str;
758
Michal Vaskob36053d2020-03-26 15:49:30 +0100759 ctx.format = LYS_IN_YANG;
Radek Krejci05b13982018-11-28 16:22:07 +0100760 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
761 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +0200762 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci05b13982018-11-28 16:22:07 +0100763 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100764 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci05b13982018-11-28 16:22:07 +0100765
Radek Krejcidf6cad12018-11-28 17:10:55 +0100766 str = " 1invalid; ...";
Radek Krejci05b13982018-11-28 16:22:07 +0100767 assert_int_equal(LY_EVALID, parse_minelements(&ctx, &str, &value, &flags, &ext));
Radek Krejcidf6cad12018-11-28 17:10:55 +0100768 logbuf_assert("Invalid value \"1invalid\" of \"min-elements\". Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100769
770 flags = value = 0;
771 str = " -1; ...";
772 assert_int_equal(LY_EVALID, parse_minelements(&ctx, &str, &value, &flags, &ext));
773 logbuf_assert("Invalid value \"-1\" of \"min-elements\". Line number 1.");
774
Radek Krejcidf6cad12018-11-28 17:10:55 +0100775 /* implementation limit */
776 flags = value = 0;
777 str = " 4294967296; ...";
778 assert_int_equal(LY_EVALID, parse_minelements(&ctx, &str, &value, &flags, &ext));
779 logbuf_assert("Value \"4294967296\" is out of \"min-elements\" bounds. Line number 1.");
780
Radek Krejci05b13982018-11-28 16:22:07 +0100781 flags = value = 0;
782 str = " 1; ...";
783 assert_int_equal(LY_SUCCESS, parse_minelements(&ctx, &str, &value, &flags, &ext));
784 assert_int_equal(LYS_SET_MIN, flags);
785 assert_int_equal(1, value);
786
787 flags = value = 0;
788 str = " 1 {m:ext;} ...";
789 assert_int_equal(LY_SUCCESS, parse_minelements(&ctx, &str, &value, &flags, &ext));
790 assert_int_equal(LYS_SET_MIN, flags);
791 assert_int_equal(1, value);
792 assert_non_null(ext);
793 FREE_ARRAY(ctx.ctx, ext, lysp_ext_instance_free);
794 ext = NULL;
795
796 flags = value = 0;
797 str = " 1 {config true;} ...";
798 assert_int_equal(LY_EVALID, parse_minelements(&ctx, &str, &value, &flags, &ext));
799 logbuf_assert("Invalid keyword \"config\" as a child of \"min-elements\". Line number 1.");
800
Radek Krejcidf6cad12018-11-28 17:10:55 +0100801 str = " 1invalid; ...";
Radek Krejci05b13982018-11-28 16:22:07 +0100802 assert_int_equal(LY_EVALID, parse_maxelements(&ctx, &str, &value, &flags, &ext));
Radek Krejcidf6cad12018-11-28 17:10:55 +0100803 logbuf_assert("Invalid value \"1invalid\" of \"max-elements\". Line number 1.");
Radek Krejci05b13982018-11-28 16:22:07 +0100804
805 flags = value = 0;
806 str = " -1; ...";
807 assert_int_equal(LY_EVALID, parse_maxelements(&ctx, &str, &value, &flags, &ext));
808 logbuf_assert("Invalid value \"-1\" of \"max-elements\". Line number 1.");
809
Radek Krejcidf6cad12018-11-28 17:10:55 +0100810 /* implementation limit */
811 flags = value = 0;
812 str = " 4294967296; ...";
813 assert_int_equal(LY_EVALID, parse_maxelements(&ctx, &str, &value, &flags, &ext));
814 logbuf_assert("Value \"4294967296\" is out of \"max-elements\" bounds. Line number 1.");
815
Radek Krejci05b13982018-11-28 16:22:07 +0100816 flags = value = 0;
817 str = " 1; ...";
818 assert_int_equal(LY_SUCCESS, parse_maxelements(&ctx, &str, &value, &flags, &ext));
819 assert_int_equal(LYS_SET_MAX, flags);
820 assert_int_equal(1, value);
821
822 flags = value = 0;
823 str = " unbounded; ...";
824 assert_int_equal(LY_SUCCESS, parse_maxelements(&ctx, &str, &value, &flags, &ext));
825 assert_int_equal(LYS_SET_MAX, flags);
826 assert_int_equal(0, value);
827
828 flags = value = 0;
829 str = " 1 {m:ext;} ...";
830 assert_int_equal(LY_SUCCESS, parse_maxelements(&ctx, &str, &value, &flags, &ext));
831 assert_int_equal(LYS_SET_MAX, flags);
832 assert_int_equal(1, value);
833 assert_non_null(ext);
834 FREE_ARRAY(ctx.ctx, ext, lysp_ext_instance_free);
835 ext = NULL;
836
837 flags = value = 0;
838 str = " 1 {config true;} ...";
839 assert_int_equal(LY_EVALID, parse_maxelements(&ctx, &str, &value, &flags, &ext));
840 logbuf_assert("Invalid keyword \"config\" as a child of \"max-elements\". Line number 1.");
841
842 *state = NULL;
843 ly_ctx_destroy(ctx.ctx, NULL);
844}
845
Radek Krejci9fcacc12018-10-11 15:59:11 +0200846static struct lysp_module *
Michal Vaskob36053d2020-03-26 15:49:30 +0100847mod_renew(struct lys_yang_parser_ctx *ctx)
Radek Krejci9fcacc12018-10-11 15:59:11 +0200848{
Radek Krejci40544fa2019-01-11 09:38:37 +0100849 struct lysp_module *mod_p;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100850 static struct lys_module mod = {0};
851
852 lysc_module_free(mod.compiled, NULL);
853 lysp_module_free(mod.parsed);
854 FREE_STRING(mod.ctx, mod.name);
855 FREE_STRING(mod.ctx, mod.ns);
856 FREE_STRING(mod.ctx, mod.prefix);
857 FREE_STRING(mod.ctx, mod.filepath);
858 FREE_STRING(mod.ctx, mod.org);
859 FREE_STRING(mod.ctx, mod.contact);
860 FREE_STRING(mod.ctx, mod.dsc);
861 FREE_STRING(mod.ctx, mod.ref);
862 memset(&mod, 0, sizeof mod);
863 mod.ctx = ctx->ctx;
864
865 mod_p = calloc(1, sizeof *mod_p);
866 mod.parsed = mod_p;
867 mod_p->mod = &mod;
868 assert_non_null(mod_p);
869 return mod_p;
870}
871
872static struct lysp_submodule *
Michal Vaskob36053d2020-03-26 15:49:30 +0100873submod_renew(struct lys_yang_parser_ctx *ctx, struct lysp_submodule *submod)
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100874{
875 lysp_submodule_free(ctx->ctx, submod);
876 submod = calloc(1, sizeof *submod);
877 assert_non_null(submod);
878 return submod;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200879}
880
Radek Krejcid33273d2018-10-25 14:55:52 +0200881static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
882 const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format,
883 const char **module_data, void (**free_module_data)(void *model_data, void *user_data))
884{
885 *module_data = user_data;
886 *format = LYS_IN_YANG;
887 *free_module_data = NULL;
888 return LY_SUCCESS;
889}
890
Radek Krejci9fcacc12018-10-11 15:59:11 +0200891static void
892test_module(void **state)
893{
Radek Krejci40544fa2019-01-11 09:38:37 +0100894 *state = test_module;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200895
Michal Vaskob36053d2020-03-26 15:49:30 +0100896 struct lys_yang_parser_ctx ctx;
Radek Krejci40544fa2019-01-11 09:38:37 +0100897 struct lysp_module *mod = NULL;
898 struct lysp_submodule *submod = NULL;
899 struct lys_module *m;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200900 const char *str;
901
Michal Vaskob36053d2020-03-26 15:49:30 +0100902 ctx.format = LYS_IN_YANG;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200903 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
904 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +0200905 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200906 ctx.line = 1;
Radek Krejcia042ea12018-10-13 07:52:15 +0200907 ctx.indent = 0;
Radek Krejci9fcacc12018-10-11 15:59:11 +0200908
Radek Krejci40544fa2019-01-11 09:38:37 +0100909 mod = mod_renew(&ctx);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200910
911 /* missing mandatory substatements */
912 str = " name {}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100913 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
914 assert_string_equal("name", mod->mod->name);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200915 logbuf_assert("Missing mandatory keyword \"namespace\" as a child of \"module\". Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +0100916 mod = mod_renew(&ctx);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200917
918 str = " name {namespace urn:x;}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100919 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
920 assert_string_equal("urn:x", mod->mod->ns);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200921 logbuf_assert("Missing mandatory keyword \"prefix\" as a child of \"module\". Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +0100922 mod = mod_renew(&ctx);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200923
924 str = " name {namespace urn:x;prefix \"x\";}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100925 assert_int_equal(LY_SUCCESS, parse_module(&ctx, &str, mod));
926 assert_string_equal("x", mod->mod->prefix);
Radek Krejci40544fa2019-01-11 09:38:37 +0100927 mod = mod_renew(&ctx);
Radek Krejci9fcacc12018-10-11 15:59:11 +0200928
Radek Krejci027d5802018-11-14 16:57:28 +0100929#define SCHEMA_BEGINNING " name {yang-version 1.1;namespace urn:x;prefix \"x\";"
930#define SCHEMA_BEGINNING2 " name {namespace urn:x;prefix \"x\";"
Radek Krejcia042ea12018-10-13 07:52:15 +0200931#define TEST_NODE(NODETYPE, INPUT, NAME) \
932 str = SCHEMA_BEGINNING INPUT; \
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100933 assert_int_equal(LY_SUCCESS, parse_module(&ctx, &str, mod)); \
Radek Krejcia042ea12018-10-13 07:52:15 +0200934 assert_non_null(mod->data); \
935 assert_int_equal(NODETYPE, mod->data->nodetype); \
936 assert_string_equal(NAME, mod->data->name); \
Radek Krejci40544fa2019-01-11 09:38:37 +0100937 mod = mod_renew(&ctx);
Radek Krejcia042ea12018-10-13 07:52:15 +0200938#define TEST_GENERIC(INPUT, TARGET, TEST) \
939 str = SCHEMA_BEGINNING INPUT; \
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100940 assert_int_equal(LY_SUCCESS, parse_module(&ctx, &str, mod)); \
Radek Krejcia042ea12018-10-13 07:52:15 +0200941 assert_non_null(TARGET); \
942 TEST; \
Radek Krejci40544fa2019-01-11 09:38:37 +0100943 mod = mod_renew(&ctx);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100944#define TEST_DUP(MEMBER, VALUE1, VALUE2, LINE) \
Radek Krejci2c02f3e2018-10-16 10:54:38 +0200945 TEST_DUP_GENERIC(SCHEMA_BEGINNING, MEMBER, VALUE1, VALUE2, \
Radek Krejci40544fa2019-01-11 09:38:37 +0100946 parse_module, mod, LINE, mod = mod_renew(&ctx))
Radek Krejcia042ea12018-10-13 07:52:15 +0200947
948 /* duplicated namespace, prefix */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100949 TEST_DUP("namespace", "y", "z", "1");
950 TEST_DUP("prefix", "y", "z", "1");
951 TEST_DUP("contact", "a", "b", "1");
952 TEST_DUP("description", "a", "b", "1");
953 TEST_DUP("organization", "a", "b", "1");
954 TEST_DUP("reference", "a", "b", "1");
Radek Krejcia042ea12018-10-13 07:52:15 +0200955
Radek Krejci70853c52018-10-15 14:46:16 +0200956 /* not allowed in module (submodule-specific) */
957 str = SCHEMA_BEGINNING "belongs-to master {prefix m;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100958 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejci70853c52018-10-15 14:46:16 +0200959 logbuf_assert("Invalid keyword \"belongs-to\" as a child of \"module\". Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +0100960 mod = mod_renew(&ctx);
Radek Krejci70853c52018-10-15 14:46:16 +0200961
Radek Krejcia042ea12018-10-13 07:52:15 +0200962 /* anydata */
963 TEST_NODE(LYS_ANYDATA, "anydata test;}", "test");
964 /* anyxml */
965 TEST_NODE(LYS_ANYXML, "anyxml test;}", "test");
966 /* augment */
967 TEST_GENERIC("augment /somepath;}", mod->augments,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200968 assert_string_equal("/somepath", mod->augments[0].nodeid));
Radek Krejcia042ea12018-10-13 07:52:15 +0200969 /* choice */
970 TEST_NODE(LYS_CHOICE, "choice test;}", "test");
971 /* contact 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100972 TEST_GENERIC("contact \"firstname\" + \n\t\" surname\";}", mod->mod->contact,
973 assert_string_equal("firstname surname", mod->mod->contact));
Radek Krejcia042ea12018-10-13 07:52:15 +0200974 /* container */
975 TEST_NODE(LYS_CONTAINER, "container test;}", "test");
976 /* description 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100977 TEST_GENERIC("description \'some description\';}", mod->mod->dsc,
978 assert_string_equal("some description", mod->mod->dsc));
Radek Krejcia042ea12018-10-13 07:52:15 +0200979 /* deviation */
980 TEST_GENERIC("deviation /somepath {deviate not-supported;}}", mod->deviations,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200981 assert_string_equal("/somepath", mod->deviations[0].nodeid));
Radek Krejcia042ea12018-10-13 07:52:15 +0200982 /* extension */
983 TEST_GENERIC("extension test;}", mod->extensions,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200984 assert_string_equal("test", mod->extensions[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200985 /* feature */
986 TEST_GENERIC("feature test;}", mod->features,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200987 assert_string_equal("test", mod->features[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200988 /* grouping */
989 TEST_GENERIC("grouping grp;}", mod->groupings,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200990 assert_string_equal("grp", mod->groupings[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200991 /* identity */
992 TEST_GENERIC("identity test;}", mod->identities,
Radek Krejci2c4e7172018-10-19 15:56:26 +0200993 assert_string_equal("test", mod->identities[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +0200994 /* import */
Radek Krejci086c7132018-10-26 15:29:04 +0200995 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "module zzz { namespace urn:zzz; prefix z;}");
996 TEST_GENERIC("import zzz {prefix z;}}", mod->imports,
997 assert_string_equal("zzz", mod->imports[0].name));
Radek Krejci70853c52018-10-15 14:46:16 +0200998
Radek Krejcia042ea12018-10-13 07:52:15 +0200999 /* import - prefix collision */
Radek Krejci086c7132018-10-26 15:29:04 +02001000 str = SCHEMA_BEGINNING "import zzz {prefix x;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001001 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejci70853c52018-10-15 14:46:16 +02001002 logbuf_assert("Prefix \"x\" already used as module prefix. Line number 2.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001003 mod = mod_renew(&ctx);
Radek Krejci086c7132018-10-26 15:29:04 +02001004 str = SCHEMA_BEGINNING "import zzz {prefix y;}import zzz {prefix y;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001005 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejci086c7132018-10-26 15:29:04 +02001006 logbuf_assert("Prefix \"y\" already used to import \"zzz\" module. Line number 2.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001007 mod = mod_renew(&ctx);
Radek Krejci086c7132018-10-26 15:29:04 +02001008 str = "module" SCHEMA_BEGINNING "import zzz {prefix y;}import zzz {prefix z;}}";
1009 assert_null(lys_parse_mem(ctx.ctx, str, LYS_IN_YANG));
1010 assert_int_equal(LY_EVALID, ly_errcode(ctx.ctx));
1011 logbuf_assert("Single revision of the module \"zzz\" referred twice.");
Radek Krejci70853c52018-10-15 14:46:16 +02001012
Radek Krejcia042ea12018-10-13 07:52:15 +02001013 /* include */
Radek Krejci9ed7a192018-10-31 16:23:51 +01001014 store = 1;
Radek Krejcid33273d2018-10-25 14:55:52 +02001015 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "module xxx { namespace urn:xxx; prefix x;}");
Radek Krejci086c7132018-10-26 15:29:04 +02001016 str = "module" SCHEMA_BEGINNING "include xxx;}";
1017 assert_null(lys_parse_mem(ctx.ctx, str, LYS_IN_YANG));
1018 assert_int_equal(LY_EVALID, ly_errcode(ctx.ctx));
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001019 logbuf_assert("Input data contains module in situation when a submodule is expected.");
Radek Krejci9ed7a192018-10-31 16:23:51 +01001020 store = -1;
Radek Krejcid33273d2018-10-25 14:55:52 +02001021
Radek Krejci9ed7a192018-10-31 16:23:51 +01001022 store = 1;
Radek Krejci313d9902018-11-08 09:42:58 +01001023 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "submodule xxx {belongs-to wrong-name {prefix w;}}");
Radek Krejci086c7132018-10-26 15:29:04 +02001024 str = "module" SCHEMA_BEGINNING "include xxx;}";
1025 assert_null(lys_parse_mem(ctx.ctx, str, LYS_IN_YANG));
1026 assert_int_equal(LY_EVALID, ly_errcode(ctx.ctx));
1027 logbuf_assert("Included \"xxx\" submodule from \"name\" belongs-to a different module \"wrong-name\".");
Radek Krejci9ed7a192018-10-31 16:23:51 +01001028 store = -1;
Radek Krejcid33273d2018-10-25 14:55:52 +02001029
Radek Krejci313d9902018-11-08 09:42:58 +01001030 ly_ctx_set_module_imp_clb(ctx.ctx, test_imp_clb, "submodule xxx {belongs-to name {prefix x;}}");
Radek Krejcid33273d2018-10-25 14:55:52 +02001031 TEST_GENERIC("include xxx;}", mod->includes,
Radek Krejci086c7132018-10-26 15:29:04 +02001032 assert_string_equal("xxx", mod->includes[0].name));
Radek Krejcid33273d2018-10-25 14:55:52 +02001033
Radek Krejcia042ea12018-10-13 07:52:15 +02001034 /* leaf */
1035 TEST_NODE(LYS_LEAF, "leaf test {type string;}}", "test");
1036 /* leaf-list */
1037 TEST_NODE(LYS_LEAFLIST, "leaf-list test {type string;}}", "test");
1038 /* list */
1039 TEST_NODE(LYS_LIST, "list test {key a;leaf a {type string;}}}", "test");
1040 /* notification */
1041 TEST_GENERIC("notification test;}", mod->notifs,
Radek Krejci2c4e7172018-10-19 15:56:26 +02001042 assert_string_equal("test", mod->notifs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +02001043 /* organization 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001044 TEST_GENERIC("organization \"CESNET a.l.e.\";}", mod->mod->org,
1045 assert_string_equal("CESNET a.l.e.", mod->mod->org));
Radek Krejcia042ea12018-10-13 07:52:15 +02001046 /* reference 0..1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001047 TEST_GENERIC("reference RFC7950;}", mod->mod->ref,
1048 assert_string_equal("RFC7950", mod->mod->ref));
Radek Krejcia042ea12018-10-13 07:52:15 +02001049 /* revision */
1050 TEST_GENERIC("revision 2018-10-12;}", mod->revs,
Radek Krejcib7db73a2018-10-24 14:18:40 +02001051 assert_string_equal("2018-10-12", mod->revs[0].date));
Radek Krejcia042ea12018-10-13 07:52:15 +02001052 /* rpc */
1053 TEST_GENERIC("rpc test;}", mod->rpcs,
Radek Krejci2c4e7172018-10-19 15:56:26 +02001054 assert_string_equal("test", mod->rpcs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +02001055 /* typedef */
1056 TEST_GENERIC("typedef test{type string;}}", mod->typedefs,
Radek Krejci2c4e7172018-10-19 15:56:26 +02001057 assert_string_equal("test", mod->typedefs[0].name));
Radek Krejcia042ea12018-10-13 07:52:15 +02001058 /* uses */
1059 TEST_NODE(LYS_USES, "uses test;}", "test");
1060 /* yang-version */
Radek Krejci027d5802018-11-14 16:57:28 +01001061 str = SCHEMA_BEGINNING2 "\n\tyang-version 10;}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001062 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejcia042ea12018-10-13 07:52:15 +02001063 logbuf_assert("Invalid value \"10\" of \"yang-version\". Line number 3.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001064 mod = mod_renew(&ctx);
Radek Krejci027d5802018-11-14 16:57:28 +01001065 str = SCHEMA_BEGINNING2 "yang-version 1.0;yang-version 1.1;}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001066 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejcia042ea12018-10-13 07:52:15 +02001067 logbuf_assert("Duplicate keyword \"yang-version\". Line number 3.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001068 mod = mod_renew(&ctx);
Radek Krejci027d5802018-11-14 16:57:28 +01001069 str = SCHEMA_BEGINNING2 "yang-version 1.0;}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001070 assert_int_equal(LY_SUCCESS, parse_module(&ctx, &str, mod));
1071 assert_int_equal(1, mod->mod->version);
Radek Krejci40544fa2019-01-11 09:38:37 +01001072 mod = mod_renew(&ctx);
Radek Krejci027d5802018-11-14 16:57:28 +01001073 str = SCHEMA_BEGINNING2 "yang-version \"1.1\";}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001074 assert_int_equal(LY_SUCCESS, parse_module(&ctx, &str, mod));
1075 assert_int_equal(2, mod->mod->version);
Radek Krejci40544fa2019-01-11 09:38:37 +01001076 mod = mod_renew(&ctx);
1077
Michal Vaskob36053d2020-03-26 15:49:30 +01001078 struct lys_yang_parser_ctx *ctx_p = NULL;
Radek Krejci40544fa2019-01-11 09:38:37 +01001079 str = "module " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}";
1080 m = mod->mod;
1081 free(mod);
1082 m->parsed = NULL;
David Sedlák1b623122019-08-05 15:27:49 +02001083 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, str, m));
1084 logbuf_assert("Trailing garbage \"module q {names...\" after module, expected end-of-input. Line number 1.");
Michal Vaskob36053d2020-03-26 15:49:30 +01001085 yang_parser_ctx_free(ctx_p);
Radek Krejci40544fa2019-01-11 09:38:37 +01001086 mod = mod_renew(&ctx);
1087
1088 str = "prefix " SCHEMA_BEGINNING "}";
1089 m = mod->mod;
1090 free(mod);
1091 m->parsed = NULL;
David Sedlák1b623122019-08-05 15:27:49 +02001092 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, str, m));
Michal Vaskob36053d2020-03-26 15:49:30 +01001093 yang_parser_ctx_free(ctx_p);
David Sedlák1b623122019-08-05 15:27:49 +02001094 logbuf_assert("Invalid keyword \"prefix\", expected \"module\" or \"submodule\". Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001095 mod = mod_renew(&ctx);
Radek Krejci09306362018-10-15 15:26:01 +02001096
David Sedlák9fb515f2019-07-11 10:33:58 +02001097 str = "module " SCHEMA_BEGINNING "}";
1098 str = "module " SCHEMA_BEGINNING "leaf enum {type enumeration {enum seven { position 7;}}}}";
1099 m = mod->mod;
1100 free(mod);
1101 m->parsed = NULL;
David Sedlák1b623122019-08-05 15:27:49 +02001102 assert_int_equal(LY_EVALID, yang_parse_module(&ctx_p, str, m));
Michal Vaskob36053d2020-03-26 15:49:30 +01001103 yang_parser_ctx_free(ctx_p);
David Sedlák1b623122019-08-05 15:27:49 +02001104 logbuf_assert("Invalid keyword \"position\" as a child of \"enum\". Line number 1.");
David Sedlák9fb515f2019-07-11 10:33:58 +02001105 mod = mod_renew(&ctx);
1106
Radek Krejci156ccaf2018-10-15 15:49:17 +02001107 /* extensions */
1108 TEST_GENERIC("prefix:test;}", mod->exts,
Radek Krejci2c4e7172018-10-19 15:56:26 +02001109 assert_string_equal("prefix:test", mod->exts[0].name);
1110 assert_int_equal(LYEXT_SUBSTMT_SELF, mod->exts[0].insubstmt));
Radek Krejci40544fa2019-01-11 09:38:37 +01001111 mod = mod_renew(&ctx);
Radek Krejci156ccaf2018-10-15 15:49:17 +02001112
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001113 /* invalid substatement */
1114 str = SCHEMA_BEGINNING "must false;}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001115 assert_int_equal(LY_EVALID, parse_module(&ctx, &str, mod));
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001116 logbuf_assert("Invalid keyword \"must\" as a child of \"module\". Line number 3.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001117 mod = mod_renew(&ctx);
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001118
Radek Krejci09306362018-10-15 15:26:01 +02001119 /* submodule */
Radek Krejci40544fa2019-01-11 09:38:37 +01001120 submod = submod_renew(&ctx, submod);
Radek Krejci09306362018-10-15 15:26:01 +02001121
1122 /* missing mandatory substatements */
1123 str = " subname {}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001124 lydict_remove(ctx.ctx, submod->name);
1125 assert_int_equal(LY_EVALID, parse_submodule(&ctx, &str, submod));
1126 assert_string_equal("subname", submod->name);
Radek Krejci09306362018-10-15 15:26:01 +02001127 logbuf_assert("Missing mandatory keyword \"belongs-to\" as a child of \"submodule\". Line number 3.");
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001128 submod = submod_renew(&ctx, submod);
Radek Krejci09306362018-10-15 15:26:01 +02001129
Radek Krejci313d9902018-11-08 09:42:58 +01001130 str = " subname {belongs-to name {prefix x;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001131 lydict_remove(ctx.ctx, submod->name);
1132 assert_int_equal(LY_SUCCESS, parse_submodule(&ctx, &str, submod));
1133 assert_string_equal("name", submod->belongsto);
1134 submod = submod_renew(&ctx, submod);
Radek Krejci09306362018-10-15 15:26:01 +02001135
1136#undef SCHEMA_BEGINNING
Radek Krejci313d9902018-11-08 09:42:58 +01001137#define SCHEMA_BEGINNING " subname {belongs-to name {prefix x;}"
Radek Krejci09306362018-10-15 15:26:01 +02001138
1139 /* duplicated namespace, prefix */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001140 str = " subname {belongs-to name {prefix x;}belongs-to module1;belongs-to module2;} ...";
1141 assert_int_equal(LY_EVALID, parse_submodule(&ctx, &str, submod)); \
1142 logbuf_assert("Duplicate keyword \"belongs-to\". Line number 3."); \
1143 submod = submod_renew(&ctx, submod);
Radek Krejci09306362018-10-15 15:26:01 +02001144
1145 /* not allowed in submodule (module-specific) */
1146 str = SCHEMA_BEGINNING "namespace \"urn:z\";}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001147 assert_int_equal(LY_EVALID, parse_submodule(&ctx, &str, submod));
Radek Krejci09306362018-10-15 15:26:01 +02001148 logbuf_assert("Invalid keyword \"namespace\" as a child of \"submodule\". Line number 3.");
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001149 submod = submod_renew(&ctx, submod);
Radek Krejci09306362018-10-15 15:26:01 +02001150 str = SCHEMA_BEGINNING "prefix m;}}";
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001151 assert_int_equal(LY_EVALID, parse_submodule(&ctx, &str, submod));
Radek Krejci09306362018-10-15 15:26:01 +02001152 logbuf_assert("Invalid keyword \"prefix\" as a child of \"submodule\". Line number 3.");
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001153 submod = submod_renew(&ctx, submod);
Radek Krejcia042ea12018-10-13 07:52:15 +02001154
Radek Krejci40544fa2019-01-11 09:38:37 +01001155 str = "submodule " SCHEMA_BEGINNING "} module q {namespace urn:q;prefixq;}";
1156 lysp_submodule_free(ctx.ctx, submod);
1157 submod = NULL;
Michal Vaskob36053d2020-03-26 15:49:30 +01001158 assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, ctx.ctx, (struct lys_parser_ctx *)&ctx, str, &submod));
1159 yang_parser_ctx_free(ctx_p);
David Sedlák1b623122019-08-05 15:27:49 +02001160 logbuf_assert("Trailing garbage \"module q {names...\" after submodule, expected end-of-input. Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001161
1162 str = "prefix " SCHEMA_BEGINNING "}";
Michal Vaskob36053d2020-03-26 15:49:30 +01001163 assert_int_equal(LY_EVALID, yang_parse_submodule(&ctx_p, ctx.ctx, (struct lys_parser_ctx *)&ctx, str, &submod));
1164 yang_parser_ctx_free(ctx_p);
David Sedlák1b623122019-08-05 15:27:49 +02001165 logbuf_assert("Invalid keyword \"prefix\", expected \"module\" or \"submodule\". Line number 1.");
Radek Krejci40544fa2019-01-11 09:38:37 +01001166 submod = submod_renew(&ctx, submod);
1167
Radek Krejcia042ea12018-10-13 07:52:15 +02001168#undef TEST_GENERIC
1169#undef TEST_NODE
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001170#undef TEST_DUP
Radek Krejcia042ea12018-10-13 07:52:15 +02001171#undef SCHEMA_BEGINNING
1172
Radek Krejci9fcacc12018-10-11 15:59:11 +02001173 lysp_module_free(mod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001174 lysp_submodule_free(ctx.ctx, submod);
Radek Krejci9fcacc12018-10-11 15:59:11 +02001175 ly_ctx_destroy(ctx.ctx, NULL);
Radek Krejci40544fa2019-01-11 09:38:37 +01001176
1177 *state = NULL;
Radek Krejciefd22f62018-09-27 11:47:58 +02001178}
1179
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001180
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001181
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001182
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001183
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001184
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001185
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001186
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001187
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001188
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001189
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001190
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001191
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001192
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001193
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001194
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001195
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001196
Radek Krejci3a4889a2020-05-19 17:01:58 +02001197
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001198
1199static void
1200test_deviation(void **state)
1201{
1202 (void) state; /* unused */
1203
Michal Vaskob36053d2020-03-26 15:49:30 +01001204 struct lys_yang_parser_ctx ctx;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001205 struct lysp_deviation *d = NULL;
1206 const char *str;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001207
Michal Vaskob36053d2020-03-26 15:49:30 +01001208 ctx.format = LYS_IN_YANG;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001209 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1210 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001211 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001212 ctx.line = 1;
1213 ctx.indent = 0;
1214
1215 /* invalid cardinality */
1216#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1217 TEST_DUP_GENERIC(" test {deviate not-supported;", MEMBER, VALUE1, VALUE2, parse_deviation, \
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001218 &d, "1", FREE_ARRAY(ctx.ctx, d, lysp_deviation_free); d = NULL)
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001219
1220 TEST_DUP("description", "a", "b");
1221 TEST_DUP("reference", "a", "b");
1222
1223 /* full content */
1224 str = " test {deviate not-supported;description text;reference \'another text\';prefix:ext;} ...";
1225 assert_int_equal(LY_SUCCESS, parse_deviation(&ctx, &str, &d));
1226 assert_non_null(d);
1227 assert_string_equal(" ...", str);
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001228 FREE_ARRAY(ctx.ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001229 d = NULL;
1230
1231 /* missing mandatory substatement */
1232 str = " test {description text;}";
1233 assert_int_equal(LY_EVALID, parse_deviation(&ctx, &str, &d));
1234 logbuf_assert("Missing mandatory keyword \"deviate\" as a child of \"deviation\". Line number 1.");
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001235 FREE_ARRAY(ctx.ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001236 d = NULL;
1237
1238 /* invalid substatement */
1239 str = " test {deviate not-supported; status obsolete;}";
1240 assert_int_equal(LY_EVALID, parse_deviation(&ctx, &str, &d));
1241 logbuf_assert("Invalid keyword \"status\" as a child of \"deviation\". Line number 1.");
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001242 FREE_ARRAY(ctx.ctx, d, lysp_deviation_free);
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001243 d = NULL;
1244
1245#undef TEST_DUP
1246
1247 ly_ctx_destroy(ctx.ctx, NULL);
1248}
1249
1250static void
1251test_deviate(void **state)
1252{
1253 (void) state; /* unused */
1254
Michal Vaskob36053d2020-03-26 15:49:30 +01001255 struct lys_yang_parser_ctx ctx;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001256 struct lysp_deviate *d = NULL;
1257 const char *str;
1258
Michal Vaskob36053d2020-03-26 15:49:30 +01001259 ctx.format = LYS_IN_YANG;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001260 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1261 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001262 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001263 ctx.line = 1;
1264 ctx.indent = 0;
1265
1266 /* invalid cardinality */
1267#define TEST_DUP(TYPE, MEMBER, VALUE1, VALUE2) \
1268 TEST_DUP_GENERIC(TYPE" {", MEMBER, VALUE1, VALUE2, parse_deviate, \
Radek Krejci4f28eda2018-11-12 11:46:16 +01001269 &d, "1", lysp_deviate_free(ctx.ctx, d); free(d); d = NULL)
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001270
1271 TEST_DUP("add", "config", "true", "false");
1272 TEST_DUP("replace", "default", "int8", "uint8");
1273 TEST_DUP("add", "mandatory", "true", "false");
1274 TEST_DUP("add", "max-elements", "1", "2");
1275 TEST_DUP("add", "min-elements", "1", "2");
1276 TEST_DUP("replace", "type", "int8", "uint8");
1277 TEST_DUP("add", "units", "kilometers", "miles");
1278
1279 /* full contents */
1280 str = " not-supported {prefix:ext;} ...";
1281 assert_int_equal(LY_SUCCESS, parse_deviate(&ctx, &str, &d));
1282 assert_non_null(d);
1283 assert_string_equal(" ...", str);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001284 lysp_deviate_free(ctx.ctx, d); free(d); d = NULL;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001285 str = " 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;} ...";
1286 assert_int_equal(LY_SUCCESS, parse_deviate(&ctx, &str, &d));
1287 assert_non_null(d);
1288 assert_string_equal(" ...", str);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001289 lysp_deviate_free(ctx.ctx, d); free(d); d = NULL;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001290 str = " delete {units meters; must 1; must 2; unique x; unique y; default a; default b; prefix:ext;} ...";
1291 assert_int_equal(LY_SUCCESS, parse_deviate(&ctx, &str, &d));
1292 assert_non_null(d);
1293 assert_string_equal(" ...", str);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001294 lysp_deviate_free(ctx.ctx, d); free(d); d = NULL;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001295 str = " replace {type string; units meters; default a; config true; mandatory true; min-elements 1; max-elements 2; prefix:ext;} ...";
1296 assert_int_equal(LY_SUCCESS, parse_deviate(&ctx, &str, &d));
1297 assert_non_null(d);
1298 assert_string_equal(" ...", str);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001299 lysp_deviate_free(ctx.ctx, d); free(d); d = NULL;
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001300
1301 /* invalid substatements */
1302#define TEST_NOT_SUP(DEV, STMT, VALUE) \
1303 str = " "DEV" {"STMT" "VALUE";}..."; \
1304 assert_int_equal(LY_EVALID, parse_deviate(&ctx, &str, &d)); \
1305 logbuf_assert("Deviate \""DEV"\" does not support keyword \""STMT"\". Line number 1."); \
Radek Krejci4f28eda2018-11-12 11:46:16 +01001306 lysp_deviate_free(ctx.ctx, d); free(d); d = NULL
Radek Krejci2c02f3e2018-10-16 10:54:38 +02001307
1308 TEST_NOT_SUP("not-supported", "units", "meters");
1309 TEST_NOT_SUP("not-supported", "must", "1");
1310 TEST_NOT_SUP("not-supported", "unique", "x");
1311 TEST_NOT_SUP("not-supported", "default", "a");
1312 TEST_NOT_SUP("not-supported", "config", "true");
1313 TEST_NOT_SUP("not-supported", "mandatory", "true");
1314 TEST_NOT_SUP("not-supported", "min-elements", "1");
1315 TEST_NOT_SUP("not-supported", "max-elements", "2");
1316 TEST_NOT_SUP("not-supported", "type", "string");
1317 TEST_NOT_SUP("add", "type", "string");
1318 TEST_NOT_SUP("delete", "config", "true");
1319 TEST_NOT_SUP("delete", "mandatory", "true");
1320 TEST_NOT_SUP("delete", "min-elements", "1");
1321 TEST_NOT_SUP("delete", "max-elements", "2");
1322 TEST_NOT_SUP("delete", "type", "string");
1323 TEST_NOT_SUP("replace", "must", "1");
1324 TEST_NOT_SUP("replace", "unique", "a");
1325
1326 str = " nonsence; ...";
1327 assert_int_equal(LY_EVALID, parse_deviate(&ctx, &str, &d));
1328 logbuf_assert("Invalid value \"nonsence\" of \"deviate\". Line number 1.");
1329 assert_null(d);
1330
1331#undef TEST_NOT_SUP
1332#undef TEST_DUP
Radek Krejci4c6d9bd2018-10-15 16:43:06 +02001333
1334 ly_ctx_destroy(ctx.ctx, NULL);
1335}
1336
Radek Krejci8c370832018-11-02 15:10:03 +01001337static void
1338test_container(void **state)
1339{
1340 (void) state; /* unused */
1341
Michal Vaskob36053d2020-03-26 15:49:30 +01001342 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci8c370832018-11-02 15:10:03 +01001343 struct lysp_node_container *c = NULL;
1344 const char *str;
1345
Michal Vaskob36053d2020-03-26 15:49:30 +01001346 ctx.format = LYS_IN_YANG;
Radek Krejci8c370832018-11-02 15:10:03 +01001347 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1348 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001349 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci8c370832018-11-02 15:10:03 +01001350 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001351 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci8c370832018-11-02 15:10:03 +01001352
1353 /* invalid cardinality */
1354#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1355 str = "cont {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1356 assert_int_equal(LY_EVALID, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c)); \
1357 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
Radek Krejci4f28eda2018-11-12 11:46:16 +01001358 lysp_node_free(ctx.ctx, (struct lysp_node*)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001359
1360 TEST_DUP("config", "true", "false");
1361 TEST_DUP("description", "text1", "text2");
1362 TEST_DUP("presence", "true", "false");
1363 TEST_DUP("reference", "1", "2");
1364 TEST_DUP("status", "current", "obsolete");
1365 TEST_DUP("when", "true", "false");
1366#undef TEST_DUP
1367
1368 /* full content */
Radek Krejci313d9902018-11-08 09:42:58 +01001369 str = "cont {action x;anydata any;anyxml anyxml; choice ch;config false;container c;description test;grouping g;if-feature f; leaf l {type string;}"
1370 "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 Krejci8c370832018-11-02 15:10:03 +01001371 assert_int_equal(LY_SUCCESS, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
1372 assert_non_null(c);
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001373 assert_int_equal(LYS_CONTAINER, c->nodetype);
1374 assert_string_equal("cont", c->name);
Radek Krejci8c370832018-11-02 15:10:03 +01001375 assert_non_null(c->actions);
1376 assert_non_null(c->child);
1377 assert_string_equal("test", c->dsc);
1378 assert_non_null(c->exts);
1379 assert_non_null(c->groupings);
1380 assert_non_null(c->iffeatures);
1381 assert_non_null(c->musts);
1382 assert_non_null(c->notifs);
1383 assert_string_equal("true", c->presence);
1384 assert_string_equal("test", c->ref);
1385 assert_non_null(c->typedefs);
1386 assert_non_null(c->when);
1387 assert_null(c->parent);
1388 assert_null(c->next);
1389 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR, c->flags);
Radek Krejci313d9902018-11-08 09:42:58 +01001390 ly_set_erase(&ctx.tpdfs_nodes, NULL);
Radek Krejci4f28eda2018-11-12 11:46:16 +01001391 lysp_node_free(ctx.ctx, (struct lysp_node*)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001392
1393 /* invalid */
1394 str = " cont {augment /root;} ...";
1395 assert_int_equal(LY_EVALID, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
1396 logbuf_assert("Invalid keyword \"augment\" as a child of \"container\". Line number 1.");
Radek Krejci4f28eda2018-11-12 11:46:16 +01001397 lysp_node_free(ctx.ctx, (struct lysp_node*)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001398 str = " cont {nonsence true;} ...";
1399 assert_int_equal(LY_EVALID, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
1400 logbuf_assert("Invalid character sequence \"nonsence\", expected a keyword. Line number 1.");
Radek Krejci4f28eda2018-11-12 11:46:16 +01001401 lysp_node_free(ctx.ctx, (struct lysp_node*)c); c = NULL;
Radek Krejci8c370832018-11-02 15:10:03 +01001402
Radek Krejcif538ce52019-03-05 10:46:14 +01001403 ctx.mod_version = 1; /* simulate YANG 1.0 */
1404 str = " cont {action x;} ...";
1405 assert_int_equal(LY_EVALID, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
1406 logbuf_assert("Invalid keyword \"action\" as a child of \"container\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
1407 lysp_node_free(ctx.ctx, (struct lysp_node*)c); c = NULL;
1408
Radek Krejci8c370832018-11-02 15:10:03 +01001409 ly_ctx_destroy(ctx.ctx, NULL);
1410}
1411
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001412static void
1413test_leaf(void **state)
1414{
1415 *state = test_leaf;
1416
Michal Vaskob36053d2020-03-26 15:49:30 +01001417 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001418 struct lysp_node_leaf *l = NULL;
1419 const char *str;
1420
Michal Vaskob36053d2020-03-26 15:49:30 +01001421 ctx.format = LYS_IN_YANG;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001422 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1423 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001424 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001425 ctx.line = 1;
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001426 //ctx.mod->version = 2; /* simulate YANG 1.1 */
1427
1428 /* invalid cardinality */
1429#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1430 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1431 assert_int_equal(LY_EVALID, parse_leaf(&ctx, &str, NULL, (struct lysp_node**)&l)); \
1432 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1433 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1434
1435 TEST_DUP("config", "true", "false");
1436 TEST_DUP("default", "x", "y");
1437 TEST_DUP("description", "text1", "text2");
1438 TEST_DUP("mandatory", "true", "false");
1439 TEST_DUP("reference", "1", "2");
1440 TEST_DUP("status", "current", "obsolete");
Radek Krejci0e5d8382018-11-28 16:37:53 +01001441 TEST_DUP("type", "int8", "uint8");
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001442 TEST_DUP("units", "text1", "text2");
1443 TEST_DUP("when", "true", "false");
1444#undef TEST_DUP
1445
1446 /* full content - without mandatory which is mutual exclusive with default */
1447 str = "l {config false;default \"xxx\";description test;if-feature f;"
1448 "must 'expr';reference test;status current;type string; units yyy;when true;m:ext;} ...";
1449 assert_int_equal(LY_SUCCESS, parse_leaf(&ctx, &str, NULL, (struct lysp_node**)&l));
1450 assert_non_null(l);
1451 assert_int_equal(LYS_LEAF, l->nodetype);
1452 assert_string_equal("l", l->name);
1453 assert_string_equal("test", l->dsc);
1454 assert_string_equal("xxx", l->dflt);
1455 assert_string_equal("yyy", l->units);
1456 assert_string_equal("string", l->type.name);
1457 assert_non_null(l->exts);
1458 assert_non_null(l->iffeatures);
1459 assert_non_null(l->musts);
1460 assert_string_equal("test", l->ref);
1461 assert_non_null(l->when);
1462 assert_null(l->parent);
1463 assert_null(l->next);
1464 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR, l->flags);
1465 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1466
1467 /* full content - now with mandatory */
1468 str = "l {mandatory true; type string;} ...";
1469 assert_int_equal(LY_SUCCESS, parse_leaf(&ctx, &str, NULL, (struct lysp_node**)&l));
1470 assert_non_null(l);
1471 assert_int_equal(LYS_LEAF, l->nodetype);
1472 assert_string_equal("l", l->name);
1473 assert_string_equal("string", l->type.name);
1474 assert_int_equal(LYS_MAND_TRUE, l->flags);
1475 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1476
1477 /* invalid */
1478 str = " l {mandatory true; default xx; type string;} ...";
1479 assert_int_equal(LY_EVALID, parse_leaf(&ctx, &str, NULL, (struct lysp_node**)&l));
Radek Krejcia9026eb2018-12-12 16:04:47 +01001480 logbuf_assert("Invalid combination of keywords \"mandatory\" and \"default\" as substatements of \"leaf\". Line number 1.");
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01001481 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1482
1483 str = " l {description \"missing type\";} ...";
1484 assert_int_equal(LY_EVALID, parse_leaf(&ctx, &str, NULL, (struct lysp_node**)&l));
1485 logbuf_assert("Missing mandatory keyword \"type\" as a child of \"leaf\". Line number 1.");
1486 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1487
1488 *state = NULL;
1489 ly_ctx_destroy(ctx.ctx, NULL);
1490}
1491
Radek Krejci0e5d8382018-11-28 16:37:53 +01001492static void
1493test_leaflist(void **state)
1494{
1495 *state = test_leaf;
1496
Michal Vaskob36053d2020-03-26 15:49:30 +01001497 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci0e5d8382018-11-28 16:37:53 +01001498 struct lysp_node_leaflist *ll = NULL;
1499 const char *str;
1500
Michal Vaskob36053d2020-03-26 15:49:30 +01001501 ctx.format = LYS_IN_YANG;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001502 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1503 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001504 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci0e5d8382018-11-28 16:37:53 +01001505 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001506 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci0e5d8382018-11-28 16:37:53 +01001507
1508 /* invalid cardinality */
1509#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1510 str = "ll {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1511 assert_int_equal(LY_EVALID, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll)); \
1512 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1513 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1514
1515 TEST_DUP("config", "true", "false");
1516 TEST_DUP("description", "text1", "text2");
1517 TEST_DUP("max-elements", "10", "20");
1518 TEST_DUP("min-elements", "10", "20");
1519 TEST_DUP("ordered-by", "user", "system");
1520 TEST_DUP("reference", "1", "2");
1521 TEST_DUP("status", "current", "obsolete");
1522 TEST_DUP("type", "int8", "uint8");
1523 TEST_DUP("units", "text1", "text2");
1524 TEST_DUP("when", "true", "false");
1525#undef TEST_DUP
1526
1527 /* full content - without min-elements which is mutual exclusive with default */
1528 str = "ll {config false;default \"xxx\"; default \"yyy\";description test;if-feature f;"
1529 "max-elements 10;must 'expr';ordered-by user;reference test;"
1530 "status current;type string; units zzz;when true;m:ext;} ...";
1531 assert_int_equal(LY_SUCCESS, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
1532 assert_non_null(ll);
1533 assert_int_equal(LYS_LEAFLIST, ll->nodetype);
1534 assert_string_equal("ll", ll->name);
1535 assert_string_equal("test", ll->dsc);
1536 assert_non_null(ll->dflts);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001537 assert_int_equal(2, LY_ARRAY_COUNT(ll->dflts));
Radek Krejci0e5d8382018-11-28 16:37:53 +01001538 assert_string_equal("xxx", ll->dflts[0]);
1539 assert_string_equal("yyy", ll->dflts[1]);
1540 assert_string_equal("zzz", ll->units);
1541 assert_int_equal(10, ll->max);
1542 assert_int_equal(0, ll->min);
1543 assert_string_equal("string", ll->type.name);
1544 assert_non_null(ll->exts);
1545 assert_non_null(ll->iffeatures);
1546 assert_non_null(ll->musts);
1547 assert_string_equal("test", ll->ref);
1548 assert_non_null(ll->when);
1549 assert_null(ll->parent);
1550 assert_null(ll->next);
1551 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_USER | LYS_SET_MAX, ll->flags);
1552 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1553
1554 /* full content - now with min-elements */
1555 str = "ll {min-elements 10; type string;} ...";
1556 assert_int_equal(LY_SUCCESS, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
1557 assert_non_null(ll);
1558 assert_int_equal(LYS_LEAFLIST, ll->nodetype);
1559 assert_string_equal("ll", ll->name);
1560 assert_string_equal("string", ll->type.name);
1561 assert_int_equal(0, ll->max);
1562 assert_int_equal(10, ll->min);
1563 assert_int_equal(LYS_SET_MIN, ll->flags);
1564 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1565
1566 /* invalid */
1567 str = " ll {min-elements 1; default xx; type string;} ...";
1568 assert_int_equal(LY_EVALID, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
Radek Krejcia9026eb2018-12-12 16:04:47 +01001569 logbuf_assert("Invalid combination of keywords \"min-elements\" and \"default\" as substatements of \"leaf-list\". Line number 1.");
Radek Krejci0e5d8382018-11-28 16:37:53 +01001570 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1571
1572 str = " ll {description \"missing type\";} ...";
1573 assert_int_equal(LY_EVALID, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
1574 logbuf_assert("Missing mandatory keyword \"type\" as a child of \"leaf-list\". Line number 1.");
1575 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1576
Radek Krejcidf6cad12018-11-28 17:10:55 +01001577 str = " ll {type string; min-elements 10; max-elements 1;} ..."; /* invalid combination of min/max */
1578 assert_int_equal(LY_EVALID, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
1579 logbuf_assert("Invalid combination of min-elements and max-elements: min value 10 is bigger than the max value 1. Line number 1.");
1580 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1581
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001582 ctx.mod_version = 1; /* simulate YANG 1.0 - default statement is not allowed */
Radek Krejci0e5d8382018-11-28 16:37:53 +01001583 str = " ll {default xx; type string;} ...";
1584 assert_int_equal(LY_EVALID, parse_leaflist(&ctx, &str, NULL, (struct lysp_node**)&ll));
1585 logbuf_assert("Invalid keyword \"default\" as a child of \"leaf-list\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
1586 lysp_node_free(ctx.ctx, (struct lysp_node*)ll); ll = NULL;
1587
1588 *state = NULL;
1589 ly_ctx_destroy(ctx.ctx, NULL);
1590}
1591
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001592static void
1593test_list(void **state)
1594{
1595 *state = test_list;
1596
Michal Vaskob36053d2020-03-26 15:49:30 +01001597 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001598 struct lysp_node_list *l = NULL;
1599 const char *str;
1600
Michal Vaskob36053d2020-03-26 15:49:30 +01001601 ctx.format = LYS_IN_YANG;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001602 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1603 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001604 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001605 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001606 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001607
1608 /* invalid cardinality */
1609#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1610 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1611 assert_int_equal(LY_EVALID, parse_list(&ctx, &str, NULL, (struct lysp_node**)&l)); \
1612 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1613 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1614
1615 TEST_DUP("config", "true", "false");
1616 TEST_DUP("description", "text1", "text2");
1617 TEST_DUP("key", "one", "two");
1618 TEST_DUP("max-elements", "10", "20");
1619 TEST_DUP("min-elements", "10", "20");
1620 TEST_DUP("ordered-by", "user", "system");
1621 TEST_DUP("reference", "1", "2");
1622 TEST_DUP("status", "current", "obsolete");
1623 TEST_DUP("when", "true", "false");
1624#undef TEST_DUP
1625
1626 /* full content */
1627 str = "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;}"
1628 "leaf-list ll {type string;} list li;max-elements 10; min-elements 1;must 'expr';notification not; ordered-by system; reference test;"
1629 "status current;typedef t {type int8;}unique xxx;unique yyy;uses g;when true;m:ext;} ...";
1630 assert_int_equal(LY_SUCCESS, parse_list(&ctx, &str, NULL, (struct lysp_node**)&l));
1631 assert_non_null(l);
1632 assert_int_equal(LYS_LIST, l->nodetype);
1633 assert_string_equal("l", l->name);
1634 assert_string_equal("test", l->dsc);
1635 assert_string_equal("l", l->key);
1636 assert_non_null(l->uniques);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001637 assert_int_equal(2, LY_ARRAY_COUNT(l->uniques));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001638 assert_string_equal("xxx", l->uniques[0]);
1639 assert_string_equal("yyy", l->uniques[1]);
1640 assert_int_equal(10, l->max);
1641 assert_int_equal(1, l->min);
1642 assert_non_null(l->exts);
1643 assert_non_null(l->iffeatures);
1644 assert_non_null(l->musts);
1645 assert_string_equal("test", l->ref);
1646 assert_non_null(l->when);
1647 assert_null(l->parent);
1648 assert_null(l->next);
1649 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_ORDBY_SYSTEM | LYS_SET_MAX | LYS_SET_MIN, l->flags);
1650 ly_set_erase(&ctx.tpdfs_nodes, NULL);
1651 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1652
Radek Krejcif538ce52019-03-05 10:46:14 +01001653 /* invalid content */
1654 ctx.mod_version = 1; /* simulate YANG 1.0 */
1655 str = "l {action x;} ...";
1656 assert_int_equal(LY_EVALID, parse_list(&ctx, &str, NULL, (struct lysp_node**)&l));
1657 logbuf_assert("Invalid keyword \"action\" as a child of \"list\" - the statement is allowed only in YANG 1.1 modules. Line number 1.");
1658 lysp_node_free(ctx.ctx, (struct lysp_node*)l); l = NULL;
1659
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001660 *state = NULL;
1661 ly_ctx_destroy(ctx.ctx, NULL);
1662}
1663
Radek Krejci056d0a82018-12-06 16:57:25 +01001664static void
1665test_choice(void **state)
1666{
1667 *state = test_choice;
1668
Michal Vaskob36053d2020-03-26 15:49:30 +01001669 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci056d0a82018-12-06 16:57:25 +01001670 struct lysp_node_choice *ch = NULL;
1671 const char *str;
1672
Michal Vaskob36053d2020-03-26 15:49:30 +01001673 ctx.format = LYS_IN_YANG;
Radek Krejci056d0a82018-12-06 16:57:25 +01001674 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1675 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001676 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci056d0a82018-12-06 16:57:25 +01001677 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001678 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci056d0a82018-12-06 16:57:25 +01001679
1680 /* invalid cardinality */
1681#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1682 str = "ch {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1683 assert_int_equal(LY_EVALID, parse_choice(&ctx, &str, NULL, (struct lysp_node**)&ch)); \
1684 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1685 lysp_node_free(ctx.ctx, (struct lysp_node*)ch); ch = NULL;
1686
1687 TEST_DUP("config", "true", "false");
1688 TEST_DUP("default", "a", "b");
1689 TEST_DUP("description", "text1", "text2");
1690 TEST_DUP("mandatory", "true", "false");
1691 TEST_DUP("reference", "1", "2");
1692 TEST_DUP("status", "current", "obsolete");
1693 TEST_DUP("when", "true", "false");
1694#undef TEST_DUP
1695
Radek Krejcia9026eb2018-12-12 16:04:47 +01001696 /* full content - without default due to a collision with mandatory */
1697 str = "ch {anydata any;anyxml anyxml; case c;choice ch;config false;container c;description test;if-feature f;leaf l {type string;}"
Radek Krejci056d0a82018-12-06 16:57:25 +01001698 "leaf-list ll {type string;} list li;mandatory true;reference test;status current;when true;m:ext;} ...";
1699 assert_int_equal(LY_SUCCESS, parse_choice(&ctx, &str, NULL, (struct lysp_node**)&ch));
1700 assert_non_null(ch);
1701 assert_int_equal(LYS_CHOICE, ch->nodetype);
1702 assert_string_equal("ch", ch->name);
1703 assert_string_equal("test", ch->dsc);
1704 assert_non_null(ch->exts);
1705 assert_non_null(ch->iffeatures);
1706 assert_string_equal("test", ch->ref);
1707 assert_non_null(ch->when);
1708 assert_null(ch->parent);
1709 assert_null(ch->next);
1710 assert_int_equal(LYS_CONFIG_R | LYS_STATUS_CURR | LYS_MAND_TRUE, ch->flags);
1711 lysp_node_free(ctx.ctx, (struct lysp_node*)ch); ch = NULL;
1712
Radek Krejcia9026eb2018-12-12 16:04:47 +01001713 /* full content - the default missing from the previous node */
1714 str = "ch {default c;case c;} ...";
1715 assert_int_equal(LY_SUCCESS, parse_choice(&ctx, &str, NULL, (struct lysp_node**)&ch));
1716 assert_non_null(ch);
1717 assert_int_equal(LYS_CHOICE, ch->nodetype);
1718 assert_string_equal("ch", ch->name);
1719 assert_string_equal("c", ch->dflt);
1720 assert_int_equal(0, ch->flags);
1721 lysp_node_free(ctx.ctx, (struct lysp_node*)ch); ch = NULL;
1722
1723 /* invalid content */
1724 str = "ch {mandatory true; default c1; case c1 {leaf x{type string;}}} ...";
1725 assert_int_equal(LY_EVALID, parse_choice(&ctx, &str, NULL, (struct lysp_node**)&ch));
1726 logbuf_assert("Invalid combination of keywords \"mandatory\" and \"default\" as substatements of \"choice\". Line number 1.");
1727 lysp_node_free(ctx.ctx, (struct lysp_node*)ch); ch = NULL;
1728
1729 *state = NULL;
1730 ly_ctx_destroy(ctx.ctx, NULL);
1731}
1732
1733static void
1734test_case(void **state)
1735{
1736 *state = test_case;
1737
Michal Vaskob36053d2020-03-26 15:49:30 +01001738 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcia9026eb2018-12-12 16:04:47 +01001739 struct lysp_node_case *cs = NULL;
1740 const char *str;
1741
Michal Vaskob36053d2020-03-26 15:49:30 +01001742 ctx.format = LYS_IN_YANG;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001743 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1744 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001745 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcia9026eb2018-12-12 16:04:47 +01001746 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001747 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejcia9026eb2018-12-12 16:04:47 +01001748
1749 /* invalid cardinality */
1750#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1751 str = "cs {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1752 assert_int_equal(LY_EVALID, parse_case(&ctx, &str, NULL, (struct lysp_node**)&cs)); \
1753 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1754 lysp_node_free(ctx.ctx, (struct lysp_node*)cs); cs = NULL;
1755
1756 TEST_DUP("description", "text1", "text2");
1757 TEST_DUP("reference", "1", "2");
1758 TEST_DUP("status", "current", "obsolete");
1759 TEST_DUP("when", "true", "false");
1760#undef TEST_DUP
1761
1762 /* full content */
1763 str = "cs {anydata any;anyxml anyxml; choice ch;container c;description test;if-feature f;leaf l {type string;}"
1764 "leaf-list ll {type string;} list li;reference test;status current;uses grp;when true;m:ext;} ...";
1765 assert_int_equal(LY_SUCCESS, parse_case(&ctx, &str, NULL, (struct lysp_node**)&cs));
1766 assert_non_null(cs);
1767 assert_int_equal(LYS_CASE, cs->nodetype);
1768 assert_string_equal("cs", cs->name);
1769 assert_string_equal("test", cs->dsc);
1770 assert_non_null(cs->exts);
1771 assert_non_null(cs->iffeatures);
1772 assert_string_equal("test", cs->ref);
1773 assert_non_null(cs->when);
1774 assert_null(cs->parent);
1775 assert_null(cs->next);
1776 assert_int_equal(LYS_STATUS_CURR, cs->flags);
1777 lysp_node_free(ctx.ctx, (struct lysp_node*)cs); cs = NULL;
1778
1779 /* invalid content */
1780 str = "cs {config true} ...";
1781 assert_int_equal(LY_EVALID, parse_case(&ctx, &str, NULL, (struct lysp_node**)&cs));
1782 logbuf_assert("Invalid keyword \"config\" as a child of \"case\". Line number 1.");
1783 lysp_node_free(ctx.ctx, (struct lysp_node*)cs); cs = NULL;
1784
Radek Krejci056d0a82018-12-06 16:57:25 +01001785 *state = NULL;
1786 ly_ctx_destroy(ctx.ctx, NULL);
1787}
1788
Radek Krejci9800fb82018-12-13 14:26:23 +01001789static void
Radek Krejcid6b76452019-09-03 17:03:03 +02001790test_any(void **state, enum ly_stmt kw)
Radek Krejci9800fb82018-12-13 14:26:23 +01001791{
1792 *state = test_any;
1793
Michal Vaskob36053d2020-03-26 15:49:30 +01001794 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci9800fb82018-12-13 14:26:23 +01001795 struct lysp_node_anydata *any = NULL;
1796 const char *str;
1797
Michal Vaskob36053d2020-03-26 15:49:30 +01001798 ctx.format = LYS_IN_YANG;
Radek Krejci9800fb82018-12-13 14:26:23 +01001799 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1800 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001801 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci9800fb82018-12-13 14:26:23 +01001802 ctx.line = 1;
Radek Krejcid6b76452019-09-03 17:03:03 +02001803 if (kw == LY_STMT_ANYDATA) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001804 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci9800fb82018-12-13 14:26:23 +01001805 } else {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001806 ctx.mod_version = 1; /* simulate YANG 1.0 */
Radek Krejci9800fb82018-12-13 14:26:23 +01001807 }
1808
1809 /* invalid cardinality */
1810#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1811 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1812 assert_int_equal(LY_EVALID, parse_any(&ctx, &str, kw, NULL, (struct lysp_node**)&any)); \
1813 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1814 lysp_node_free(ctx.ctx, (struct lysp_node*)any); any = NULL;
1815
1816 TEST_DUP("config", "true", "false");
1817 TEST_DUP("description", "text1", "text2");
1818 TEST_DUP("mandatory", "true", "false");
1819 TEST_DUP("reference", "1", "2");
1820 TEST_DUP("status", "current", "obsolete");
1821 TEST_DUP("when", "true", "false");
1822#undef TEST_DUP
1823
1824 /* full content */
1825 str = "any {config true;description test;if-feature f;mandatory true;must 'expr';reference test;status current;when true;m:ext;} ...";
1826 assert_int_equal(LY_SUCCESS, parse_any(&ctx, &str, kw, NULL, (struct lysp_node**)&any));
1827 assert_non_null(any);
Radek Krejcid6b76452019-09-03 17:03:03 +02001828 assert_int_equal(kw == LY_STMT_ANYDATA ? LYS_ANYDATA : LYS_ANYXML, any->nodetype);
Radek Krejci9800fb82018-12-13 14:26:23 +01001829 assert_string_equal("any", any->name);
1830 assert_string_equal("test", any->dsc);
1831 assert_non_null(any->exts);
1832 assert_non_null(any->iffeatures);
1833 assert_non_null(any->musts);
1834 assert_string_equal("test", any->ref);
1835 assert_non_null(any->when);
1836 assert_null(any->parent);
1837 assert_null(any->next);
1838 assert_int_equal(LYS_CONFIG_W | LYS_STATUS_CURR | LYS_MAND_TRUE, any->flags);
1839 lysp_node_free(ctx.ctx, (struct lysp_node*)any); any = NULL;
1840
1841 *state = NULL;
1842 ly_ctx_destroy(ctx.ctx, NULL);
1843}
1844
1845static void
1846test_anydata(void **state)
1847{
Radek Krejcid6b76452019-09-03 17:03:03 +02001848 return test_any(state, LY_STMT_ANYDATA);
Radek Krejci9800fb82018-12-13 14:26:23 +01001849}
1850
1851static void
1852test_anyxml(void **state)
1853{
Radek Krejcid6b76452019-09-03 17:03:03 +02001854 return test_any(state, LY_STMT_ANYXML);
Radek Krejci9800fb82018-12-13 14:26:23 +01001855}
1856
Radek Krejcie86bf772018-12-14 11:39:53 +01001857static void
1858test_grouping(void **state)
1859{
1860 *state = test_grouping;
1861
Michal Vaskob36053d2020-03-26 15:49:30 +01001862 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcie86bf772018-12-14 11:39:53 +01001863 struct lysp_grp *grp = NULL;
1864 const char *str;
1865
Michal Vaskob36053d2020-03-26 15:49:30 +01001866 ctx.format = LYS_IN_YANG;
Radek Krejcie86bf772018-12-14 11:39:53 +01001867 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1868 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001869 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcie86bf772018-12-14 11:39:53 +01001870 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001871 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejcie86bf772018-12-14 11:39:53 +01001872
1873 /* invalid cardinality */
1874#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1875 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1876 assert_int_equal(LY_EVALID, parse_grouping(&ctx, &str, NULL, &grp)); \
1877 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1878 FREE_ARRAY(ctx.ctx, grp, lysp_grp_free); grp = NULL;
1879
1880 TEST_DUP("description", "text1", "text2");
1881 TEST_DUP("reference", "1", "2");
1882 TEST_DUP("status", "current", "obsolete");
1883#undef TEST_DUP
1884
1885 /* full content */
1886 str = "grp {action x;anydata any;anyxml anyxml; choice ch;container c;description test;grouping g;leaf l {type string;}"
1887 "leaf-list ll {type string;} list li;notification not;reference test;status current;typedef t {type int8;}uses g;m:ext;} ...";
1888 assert_int_equal(LY_SUCCESS, parse_grouping(&ctx, &str, NULL, &grp));
1889 assert_non_null(grp);
1890 assert_int_equal(LYS_GROUPING, grp->nodetype);
1891 assert_string_equal("grp", grp->name);
1892 assert_string_equal("test", grp->dsc);
1893 assert_non_null(grp->exts);
1894 assert_string_equal("test", grp->ref);
1895 assert_null(grp->parent);
1896 assert_int_equal( LYS_STATUS_CURR, grp->flags);
1897 ly_set_erase(&ctx.tpdfs_nodes, NULL);
1898 FREE_ARRAY(ctx.ctx, grp, lysp_grp_free); grp = NULL;
1899
1900 /* invalid content */
1901 str = "grp {config true} ...";
1902 assert_int_equal(LY_EVALID, parse_grouping(&ctx, &str, NULL, &grp));
1903 logbuf_assert("Invalid keyword \"config\" as a child of \"grouping\". Line number 1.");
1904 FREE_ARRAY(ctx.ctx, grp, lysp_grp_free); grp = NULL;
1905
1906 str = "grp {must 'expr'} ...";
1907 assert_int_equal(LY_EVALID, parse_grouping(&ctx, &str, NULL, &grp));
1908 logbuf_assert("Invalid keyword \"must\" as a child of \"grouping\". Line number 1.");
1909 FREE_ARRAY(ctx.ctx, grp, lysp_grp_free); grp = NULL;
1910
1911 *state = NULL;
1912 ly_ctx_destroy(ctx.ctx, NULL);
1913}
1914
1915static void
Radek Krejcif538ce52019-03-05 10:46:14 +01001916test_action(void **state)
1917{
1918 *state = test_action;
1919
Michal Vaskob36053d2020-03-26 15:49:30 +01001920 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcif538ce52019-03-05 10:46:14 +01001921 struct lysp_action *rpcs = NULL;
1922 struct lysp_node_container *c = NULL;
1923 const char *str;
1924
Michal Vaskob36053d2020-03-26 15:49:30 +01001925 ctx.format = LYS_IN_YANG;
Radek Krejcif538ce52019-03-05 10:46:14 +01001926 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
1927 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02001928 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcif538ce52019-03-05 10:46:14 +01001929 ctx.line = 1;
1930 ctx.mod_version = 2; /* simulate YANG 1.1 */
1931
1932 /* invalid cardinality */
1933#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
1934 str = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
1935 assert_int_equal(LY_EVALID, parse_action(&ctx, &str, NULL, &rpcs)); \
1936 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
1937 FREE_ARRAY(ctx.ctx, rpcs, lysp_action_free); rpcs = NULL;
1938
1939 TEST_DUP("description", "text1", "text2");
Michal Vaskob83af8a2020-01-06 09:49:22 +01001940 TEST_DUP("input", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a");
1941 TEST_DUP("output", "{leaf l1 {type empty;}} description a", "{leaf l2 {type empty;}} description a");
Radek Krejcif538ce52019-03-05 10:46:14 +01001942 TEST_DUP("reference", "1", "2");
1943 TEST_DUP("status", "current", "obsolete");
1944#undef TEST_DUP
1945
1946 /* full content */
1947 str = "top;";
1948 assert_int_equal(LY_SUCCESS, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
1949 str = "func {description test;grouping grp;if-feature f;reference test;status current;typedef mytype {type int8;} m:ext;"
1950 "input {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}"
1951 " list li; must 1; typedef mytypei {type int8;} uses grp; m:ext;}"
1952 "output {anydata a1; anyxml a2; choice ch; container c; grouping grp; leaf l {type int8;} leaf-list ll {type int8;}"
1953 " list li; must 1; typedef mytypeo {type int8;} uses grp; m:ext;}} ...";
1954 assert_int_equal(LY_SUCCESS, parse_action(&ctx, &str, (struct lysp_node*)c, &rpcs));
1955 assert_non_null(rpcs);
1956 assert_int_equal(LYS_ACTION, rpcs->nodetype);
1957 assert_string_equal("func", rpcs->name);
1958 assert_string_equal("test", rpcs->dsc);
1959 assert_non_null(rpcs->exts);
1960 assert_non_null(rpcs->iffeatures);
1961 assert_string_equal("test", rpcs->ref);
1962 assert_non_null(rpcs->groupings);
1963 assert_non_null(rpcs->typedefs);
1964 assert_int_equal(LYS_STATUS_CURR, rpcs->flags);
1965 /* input */
Radek Krejcid3ca0632019-04-16 16:54:54 +02001966 assert_int_equal(rpcs->input.nodetype, LYS_INPUT);
Radek Krejcif538ce52019-03-05 10:46:14 +01001967 assert_non_null(rpcs->input.groupings);
1968 assert_non_null(rpcs->input.exts);
1969 assert_non_null(rpcs->input.musts);
1970 assert_non_null(rpcs->input.typedefs);
1971 assert_non_null(rpcs->input.data);
1972 /* output */
Radek Krejcid3ca0632019-04-16 16:54:54 +02001973 assert_int_equal(rpcs->output.nodetype, LYS_OUTPUT);
Radek Krejcif538ce52019-03-05 10:46:14 +01001974 assert_non_null(rpcs->output.groupings);
1975 assert_non_null(rpcs->output.exts);
1976 assert_non_null(rpcs->output.musts);
1977 assert_non_null(rpcs->output.typedefs);
1978 assert_non_null(rpcs->output.data);
1979
1980 ly_set_erase(&ctx.tpdfs_nodes, NULL);
1981 FREE_ARRAY(ctx.ctx, rpcs, lysp_action_free); rpcs = NULL;
1982
1983 /* invalid content */
1984 str = "func {config true} ...";
1985 assert_int_equal(LY_EVALID, parse_action(&ctx, &str, NULL, &rpcs));
1986 logbuf_assert("Invalid keyword \"config\" as a child of \"rpc\". Line number 1.");
1987 FREE_ARRAY(ctx.ctx, rpcs, lysp_action_free); rpcs = NULL;
1988
1989 *state = NULL;
1990 lysp_node_free(ctx.ctx, (struct lysp_node*)c);
1991 ly_ctx_destroy(ctx.ctx, NULL);
1992}
1993
1994static void
Radek Krejcifc11bd72019-04-11 16:00:05 +02001995test_notification(void **state)
1996{
1997 *state = test_notification;
1998
Michal Vaskob36053d2020-03-26 15:49:30 +01001999 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcifc11bd72019-04-11 16:00:05 +02002000 struct lysp_notif *notifs = NULL;
2001 struct lysp_node_container *c = NULL;
2002 const char *str;
2003
Michal Vaskob36053d2020-03-26 15:49:30 +01002004 ctx.format = LYS_IN_YANG;
Radek Krejcifc11bd72019-04-11 16:00:05 +02002005 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
2006 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02002007 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcifc11bd72019-04-11 16:00:05 +02002008 ctx.line = 1;
2009 ctx.mod_version = 2; /* simulate YANG 1.1 */
2010
2011 /* invalid cardinality */
2012#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
2013 str = "func {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
2014 assert_int_equal(LY_EVALID, parse_notif(&ctx, &str, NULL, &notifs)); \
2015 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
2016 FREE_ARRAY(ctx.ctx, notifs, lysp_notif_free); notifs = NULL;
2017
2018 TEST_DUP("description", "text1", "text2");
2019 TEST_DUP("reference", "1", "2");
2020 TEST_DUP("status", "current", "obsolete");
2021#undef TEST_DUP
2022
2023 /* full content */
2024 str = "top;";
2025 assert_int_equal(LY_SUCCESS, parse_container(&ctx, &str, NULL, (struct lysp_node**)&c));
2026 str = "ntf {anydata a1; anyxml a2; choice ch; container c; description test; grouping grp; if-feature f; leaf l {type int8;}"
2027 "leaf-list ll {type int8;} list li; must 1; reference test; status current; typedef mytype {type int8;} uses grp; m:ext;}";
2028 assert_int_equal(LY_SUCCESS, parse_notif(&ctx, &str, (struct lysp_node*)c, &notifs));
2029 assert_non_null(notifs);
2030 assert_int_equal(LYS_NOTIF, notifs->nodetype);
2031 assert_string_equal("ntf", notifs->name);
2032 assert_string_equal("test", notifs->dsc);
2033 assert_non_null(notifs->exts);
2034 assert_non_null(notifs->iffeatures);
2035 assert_string_equal("test", notifs->ref);
2036 assert_non_null(notifs->groupings);
2037 assert_non_null(notifs->typedefs);
2038 assert_non_null(notifs->musts);
2039 assert_non_null(notifs->data);
2040 assert_int_equal(LYS_STATUS_CURR, notifs->flags);
2041
2042 ly_set_erase(&ctx.tpdfs_nodes, NULL);
2043 FREE_ARRAY(ctx.ctx, notifs, lysp_notif_free); notifs = NULL;
2044
2045 /* invalid content */
2046 str = "ntf {config true} ...";
2047 assert_int_equal(LY_EVALID, parse_notif(&ctx, &str, NULL, &notifs));
2048 logbuf_assert("Invalid keyword \"config\" as a child of \"notification\". Line number 1.");
2049 FREE_ARRAY(ctx.ctx, notifs, lysp_notif_free); notifs = NULL;
2050
2051 *state = NULL;
2052 lysp_node_free(ctx.ctx, (struct lysp_node*)c);
2053 ly_ctx_destroy(ctx.ctx, NULL);
2054}
2055
2056static void
Radek Krejcie86bf772018-12-14 11:39:53 +01002057test_uses(void **state)
2058{
2059 *state = test_uses;
2060
Michal Vaskob36053d2020-03-26 15:49:30 +01002061 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcie86bf772018-12-14 11:39:53 +01002062 struct lysp_node_uses *u = NULL;
2063 const char *str;
2064
Michal Vaskob36053d2020-03-26 15:49:30 +01002065 ctx.format = LYS_IN_YANG;
Radek Krejcie86bf772018-12-14 11:39:53 +01002066 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
2067 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02002068 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcie86bf772018-12-14 11:39:53 +01002069 ctx.line = 1;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002070 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejcie86bf772018-12-14 11:39:53 +01002071
2072 /* invalid cardinality */
2073#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
2074 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
2075 assert_int_equal(LY_EVALID, parse_uses(&ctx, &str, NULL, (struct lysp_node**)&u)); \
2076 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
2077 lysp_node_free(ctx.ctx, (struct lysp_node*)u); u = NULL;
2078
2079 TEST_DUP("description", "text1", "text2");
2080 TEST_DUP("reference", "1", "2");
2081 TEST_DUP("status", "current", "obsolete");
2082 TEST_DUP("when", "true", "false");
2083#undef TEST_DUP
2084
2085 /* full content */
2086 str = "grpref {augment some/node;description test;if-feature f;reference test;refine some/other/node;status current;when true;m:ext;} ...";
2087 assert_int_equal(LY_SUCCESS, parse_uses(&ctx, &str, NULL, (struct lysp_node**)&u));
2088 assert_non_null(u);
2089 assert_int_equal(LYS_USES, u->nodetype);
2090 assert_string_equal("grpref", u->name);
2091 assert_string_equal("test", u->dsc);
2092 assert_non_null(u->exts);
2093 assert_non_null(u->iffeatures);
2094 assert_string_equal("test", u->ref);
2095 assert_non_null(u->augments);
2096 assert_non_null(u->refines);
2097 assert_non_null(u->when);
2098 assert_null(u->parent);
2099 assert_null(u->next);
2100 assert_int_equal(LYS_STATUS_CURR, u->flags);
2101 lysp_node_free(ctx.ctx, (struct lysp_node*)u); u = NULL;
2102
2103 *state = NULL;
2104 ly_ctx_destroy(ctx.ctx, NULL);
2105}
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002106
2107
2108static void
2109test_augment(void **state)
2110{
2111 *state = test_augment;
2112
Michal Vaskob36053d2020-03-26 15:49:30 +01002113 struct lys_yang_parser_ctx ctx = {0};
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002114 struct lysp_augment *a = NULL;
2115 const char *str;
2116
Michal Vaskob36053d2020-03-26 15:49:30 +01002117 ctx.format = LYS_IN_YANG;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002118 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
2119 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02002120 ctx.pos_type = LY_VLOG_LINE;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002121 ctx.line = 1;
Radek Krejcib4adbf12019-02-25 13:35:22 +01002122 ctx.mod_version = 2; /* simulate YANG 1.1 */
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002123
2124 /* invalid cardinality */
2125#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
2126 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
2127 assert_int_equal(LY_EVALID, parse_augment(&ctx, &str, NULL, &a)); \
2128 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
Radek Krejcib4adbf12019-02-25 13:35:22 +01002129 FREE_ARRAY(ctx.ctx, a, lysp_augment_free); a = NULL;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002130
2131 TEST_DUP("description", "text1", "text2");
2132 TEST_DUP("reference", "1", "2");
2133 TEST_DUP("status", "current", "obsolete");
2134 TEST_DUP("when", "true", "false");
2135#undef TEST_DUP
2136
2137 /* full content */
2138 str = "/target/nodeid {action x; anydata any;anyxml anyxml; case cs; choice ch;container c;description test;if-feature f;leaf l {type string;}"
2139 "leaf-list ll {type string;} list li;notification not;reference test;status current;uses g;when true;m:ext;} ...";
2140 assert_int_equal(LY_SUCCESS, parse_augment(&ctx, &str, NULL, &a));
2141 assert_non_null(a);
2142 assert_int_equal(LYS_AUGMENT, a->nodetype);
2143 assert_string_equal("/target/nodeid", a->nodeid);
2144 assert_string_equal("test", a->dsc);
2145 assert_non_null(a->exts);
2146 assert_non_null(a->iffeatures);
2147 assert_string_equal("test", a->ref);
2148 assert_non_null(a->when);
2149 assert_null(a->parent);
2150 assert_int_equal(LYS_STATUS_CURR, a->flags);
Radek Krejcib4adbf12019-02-25 13:35:22 +01002151 FREE_ARRAY(ctx.ctx, a, lysp_augment_free); a = NULL;
Radek Krejci5a7c4a52019-02-12 15:45:11 +01002152
2153 *state = NULL;
2154 ly_ctx_destroy(ctx.ctx, NULL);
2155}
2156
Radek Krejcif09e4e82019-06-14 15:08:11 +02002157static void
2158test_when(void **state)
2159{
2160 *state = test_when;
2161
Michal Vaskob36053d2020-03-26 15:49:30 +01002162 struct lys_yang_parser_ctx ctx = {0};
Radek Krejcif09e4e82019-06-14 15:08:11 +02002163 struct lysp_when *w = NULL;
2164 const char *str;
2165
Michal Vaskob36053d2020-03-26 15:49:30 +01002166 ctx.format = LYS_IN_YANG;
Radek Krejcif09e4e82019-06-14 15:08:11 +02002167 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
2168 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02002169 ctx.pos_type = LY_VLOG_LINE;
Radek Krejcif09e4e82019-06-14 15:08:11 +02002170 ctx.line = 1;
2171 ctx.mod_version = 2; /* simulate YANG 1.1 */
2172
2173 /* invalid cardinality */
2174#define TEST_DUP(MEMBER, VALUE1, VALUE2) \
2175 str = "l {" MEMBER" "VALUE1";"MEMBER" "VALUE2";} ..."; \
2176 assert_int_equal(LY_EVALID, parse_when(&ctx, &str, &w)); \
2177 logbuf_assert("Duplicate keyword \""MEMBER"\". Line number 1."); \
2178 FREE_MEMBER(ctx.ctx, w, lysp_when_free); w = NULL;
2179
2180 TEST_DUP("description", "text1", "text2");
2181 TEST_DUP("reference", "1", "2");
2182#undef TEST_DUP
2183
2184 /* full content */
2185 str = "expression {description test;reference test;m:ext;} ...";
2186 assert_int_equal(LY_SUCCESS, parse_when(&ctx, &str, &w));
2187 assert_non_null(w);
2188 assert_string_equal("expression", w->cond);
2189 assert_string_equal("test", w->dsc);
2190 assert_string_equal("test", w->ref);
2191 assert_non_null(w->exts);
2192 FREE_MEMBER(ctx.ctx, w, lysp_when_free); w = NULL;
2193
2194 /* empty condition */
2195 str = "\"\";";
2196 assert_int_equal(LY_SUCCESS, parse_when(&ctx, &str, &w));
2197 logbuf_assert("Empty argument of when statement does not make sense.");
2198 assert_non_null(w);
2199 assert_string_equal("", w->cond);
2200 FREE_MEMBER(ctx.ctx, w, lysp_when_free); w = NULL;
2201
2202 *state = NULL;
2203 ly_ctx_destroy(ctx.ctx, NULL);
2204}
2205
David Sedlákd6ce6d72019-07-16 17:30:18 +02002206static void
2207test_value(void **state)
2208{
2209 *state = test_value;
Michal Vaskob36053d2020-03-26 15:49:30 +01002210 struct lys_yang_parser_ctx ctx;
David Sedlákd6ce6d72019-07-16 17:30:18 +02002211
Michal Vaskob36053d2020-03-26 15:49:30 +01002212 ctx.format = LYS_IN_YANG;
David Sedlákd6ce6d72019-07-16 17:30:18 +02002213 assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, 0, &ctx.ctx));
2214 assert_non_null(ctx.ctx);
Radek Krejci99435242019-09-05 16:19:15 +02002215 ctx.pos_type = LY_VLOG_LINE;
David Sedlákd6ce6d72019-07-16 17:30:18 +02002216 ctx.line = 1;
2217 ctx.indent = 0;
2218 int64_t val = 0;
2219 uint16_t flags = 0;
2220
2221 const char *data = "-0;";
Radek Krejcid6b76452019-09-03 17:03:03 +02002222 assert_int_equal(parse_type_enum_value_pos(&ctx, &data, LY_STMT_VALUE, &val, &flags, NULL), LY_SUCCESS);
David Sedlákd6ce6d72019-07-16 17:30:18 +02002223 assert_int_equal(val, 0);
2224
2225 data = "-0;";
2226 flags = 0;
Radek Krejcid6b76452019-09-03 17:03:03 +02002227 assert_int_equal(parse_type_enum_value_pos(&ctx, &data, LY_STMT_POSITION, &val, &flags, NULL), LY_EVALID);
David Sedlákd6ce6d72019-07-16 17:30:18 +02002228 logbuf_assert("Invalid value \"-0\" of \"position\". Line number 1.");
2229
David Sedlák1af868e2019-07-17 17:03:14 +02002230 *state = NULL;
David Sedlákd6ce6d72019-07-16 17:30:18 +02002231 ly_ctx_destroy(ctx.ctx, NULL);
2232}
2233
Radek Krejci80dd33e2018-09-26 15:57:18 +02002234int main(void)
2235{
2236 const struct CMUnitTest tests[] = {
Radek Krejci44ceedc2018-10-02 15:54:31 +02002237 cmocka_unit_test_setup(test_helpers, logger_setup),
Radek Krejci80dd33e2018-09-26 15:57:18 +02002238 cmocka_unit_test_setup(test_comments, logger_setup),
Radek Krejciefd22f62018-09-27 11:47:58 +02002239 cmocka_unit_test_setup(test_arg, logger_setup),
Radek Krejcidcc7b322018-10-11 14:24:02 +02002240 cmocka_unit_test_setup(test_stmts, logger_setup),
Radek Krejci05b13982018-11-28 16:22:07 +01002241 cmocka_unit_test_setup_teardown(test_minmax, logger_setup, logger_teardown),
Radek Krejci40544fa2019-01-11 09:38:37 +01002242 cmocka_unit_test_setup_teardown(test_module, logger_setup, logger_teardown),
Radek Krejci2c02f3e2018-10-16 10:54:38 +02002243 cmocka_unit_test_setup(test_deviation, logger_setup),
2244 cmocka_unit_test_setup(test_deviate, logger_setup),
Radek Krejci8c370832018-11-02 15:10:03 +01002245 cmocka_unit_test_setup(test_container, logger_setup),
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01002246 cmocka_unit_test_setup_teardown(test_leaf, logger_setup, logger_teardown),
Radek Krejci0e5d8382018-11-28 16:37:53 +01002247 cmocka_unit_test_setup_teardown(test_leaflist, logger_setup, logger_teardown),
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002248 cmocka_unit_test_setup_teardown(test_list, logger_setup, logger_teardown),
Radek Krejci056d0a82018-12-06 16:57:25 +01002249 cmocka_unit_test_setup_teardown(test_choice, logger_setup, logger_teardown),
Radek Krejcia9026eb2018-12-12 16:04:47 +01002250 cmocka_unit_test_setup_teardown(test_case, logger_setup, logger_teardown),
Radek Krejci9800fb82018-12-13 14:26:23 +01002251 cmocka_unit_test_setup_teardown(test_anydata, logger_setup, logger_teardown),
2252 cmocka_unit_test_setup_teardown(test_anyxml, logger_setup, logger_teardown),
Radek Krejcif538ce52019-03-05 10:46:14 +01002253 cmocka_unit_test_setup_teardown(test_action, logger_setup, logger_teardown),
Radek Krejcifc11bd72019-04-11 16:00:05 +02002254 cmocka_unit_test_setup_teardown(test_notification, logger_setup, logger_teardown),
Radek Krejcie86bf772018-12-14 11:39:53 +01002255 cmocka_unit_test_setup_teardown(test_grouping, logger_setup, logger_teardown),
2256 cmocka_unit_test_setup_teardown(test_uses, logger_setup, logger_teardown),
Radek Krejcib4adbf12019-02-25 13:35:22 +01002257 cmocka_unit_test_setup_teardown(test_augment, logger_setup, logger_teardown),
Radek Krejcif09e4e82019-06-14 15:08:11 +02002258 cmocka_unit_test_setup_teardown(test_when, logger_setup, logger_teardown),
David Sedlákd6ce6d72019-07-16 17:30:18 +02002259 cmocka_unit_test_setup_teardown(test_value, logger_setup, logger_teardown),
Radek Krejci80dd33e2018-09-26 15:57:18 +02002260 };
2261
2262 return cmocka_run_group_tests(tests, NULL, NULL);
2263}