Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1 | /* |
| 2 | * @file set.c |
| 3 | * @author: Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief unit tests for functions from common.c |
| 5 | * |
| 6 | * Copyright (c) 2018 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 15 | #include "../../src/common.c" |
| 16 | #include "../../src/log.c" |
| 17 | #include "../../src/set.c" |
| 18 | #include "../../src/parser_yang.c" |
| 19 | #include "../../src/tree_schema.c" |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame^] | 20 | #include "../../src/tree_schema_free.c" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 21 | #include "../../src/tree_schema_helpers.c" |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 22 | #include "../../src/hash_table.c" |
| 23 | #include "../../src/xpath.c" |
| 24 | #include "../../src/context.c" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 25 | |
| 26 | #include <stdarg.h> |
| 27 | #include <stddef.h> |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 28 | #include <stdio.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 29 | #include <setjmp.h> |
| 30 | #include <cmocka.h> |
| 31 | |
| 32 | #include "libyang.h" |
| 33 | |
| 34 | #define BUFSIZE 1024 |
| 35 | char logbuf[BUFSIZE] = {0}; |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 36 | int store = -1; /* negative for infinite logging, positive for limited logging */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 37 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 38 | /* set to 0 to printing error messages to stderr instead of checking them in code */ |
| 39 | #define ENABLE_LOGGER_CHECKING 1 |
| 40 | |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 41 | #if ENABLE_LOGGER_CHECKING |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 42 | static void |
| 43 | logger(LY_LOG_LEVEL level, const char *msg, const char *path) |
| 44 | { |
| 45 | (void) level; /* unused */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 46 | if (store) { |
| 47 | if (path && path[0]) { |
| 48 | snprintf(logbuf, BUFSIZE - 1, "%s %s", msg, path); |
| 49 | } else { |
| 50 | strncpy(logbuf, msg, BUFSIZE - 1); |
| 51 | } |
| 52 | if (store > 0) { |
| 53 | --store; |
| 54 | } |
| 55 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 56 | } |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 57 | #endif |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 58 | |
| 59 | static int |
| 60 | logger_setup(void **state) |
| 61 | { |
| 62 | (void) state; /* unused */ |
| 63 | |
| 64 | ly_set_log_clb(logger, 0); |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 69 | void |
| 70 | logbuf_clean(void) |
| 71 | { |
| 72 | logbuf[0] = '\0'; |
| 73 | } |
| 74 | |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 75 | #if ENABLE_LOGGER_CHECKING |
| 76 | # define logbuf_assert(str) assert_string_equal(logbuf, str) |
| 77 | #else |
| 78 | # define logbuf_assert(str) |
| 79 | #endif |
| 80 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 81 | static void |
| 82 | test_date(void **state) |
| 83 | { |
| 84 | (void) state; /* unused */ |
| 85 | |
| 86 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, NULL, 0, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 87 | logbuf_assert("Invalid argument date (lysp_check_date())."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 88 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "x", 1, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 89 | logbuf_assert("Invalid argument date_len (lysp_check_date())."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 90 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "nonsencexx", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 91 | logbuf_assert("Invalid value \"nonsencexx\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 92 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "123x-11-11", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 93 | logbuf_assert("Invalid value \"123x-11-11\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 94 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-13-11", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 95 | logbuf_assert("Invalid value \"2018-13-11\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 96 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-11-41", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 97 | logbuf_assert("Invalid value \"2018-11-41\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 98 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02-29", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 99 | logbuf_assert("Invalid value \"2018-02-29\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 100 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018.02-28", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 101 | logbuf_assert("Invalid value \"2018.02-28\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 102 | assert_int_equal(LY_EINVAL, lysp_check_date(NULL, "2018-02.28", 10, "date")); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 103 | logbuf_assert("Invalid value \"2018-02.28\" of \"date\"."); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 104 | |
| 105 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-11-11", 10, "date")); |
| 106 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2018-02-28", 10, "date")); |
| 107 | assert_int_equal(LY_SUCCESS, lysp_check_date(NULL, "2016-02-29", 10, "date")); |
| 108 | } |
| 109 | |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 110 | static void |
| 111 | test_revisions(void **state) |
| 112 | { |
| 113 | (void) state; /* unused */ |
| 114 | |
| 115 | struct lysp_revision *revs = NULL, *rev; |
| 116 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 117 | logbuf_clean(); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 118 | /* no error, it just does nothing */ |
| 119 | lysp_sort_revisions(NULL); |
| 120 | logbuf_assert(""); |
| 121 | |
| 122 | /* revisions are stored in wrong order - the newest is the last */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 123 | LY_ARRAY_NEW_RET(NULL, revs, rev,); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 124 | strcpy(rev->date, "2018-01-01"); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 125 | LY_ARRAY_NEW_RET(NULL, revs, rev,); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 126 | strcpy(rev->date, "2018-12-31"); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 127 | |
| 128 | assert_int_equal(2, LY_ARRAY_SIZE(revs)); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 129 | assert_string_equal("2018-01-01", &revs[0]); |
| 130 | assert_string_equal("2018-12-31", &revs[1]); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 131 | /* the order should be fixed, so the newest revision will be the first in the array */ |
| 132 | lysp_sort_revisions(revs); |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 133 | assert_string_equal("2018-12-31", &revs[0]); |
| 134 | assert_string_equal("2018-01-01", &revs[1]); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 135 | |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 136 | LY_ARRAY_FREE(revs); |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 139 | static LY_ERR test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name), |
| 140 | const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format, |
| 141 | const char **module_data, void (**free_module_data)(void *model_data, void *user_data)) |
| 142 | { |
| 143 | *module_data = user_data; |
| 144 | *format = LYS_IN_YANG; |
| 145 | *free_module_data = NULL; |
| 146 | return LY_SUCCESS; |
| 147 | } |
| 148 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 149 | static void |
| 150 | test_typedef(void **state) |
| 151 | { |
| 152 | (void) state; /* unused */ |
| 153 | |
| 154 | struct ly_ctx *ctx = NULL; |
| 155 | const char *str; |
| 156 | |
| 157 | assert_int_equal(LY_SUCCESS, ly_ctx_new(NULL, LY_CTX_DISABLE_SEARCHDIRS, &ctx)); |
| 158 | |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 159 | str = "module a {namespace urn:a; prefix a; typedef binary {type string;}}"; |
| 160 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 161 | logbuf_assert("Invalid name \"binary\" of typedef - name collision with a built-in type."); |
| 162 | str = "module a {namespace urn:a; prefix a; typedef bits {type string;}}"; |
| 163 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 164 | logbuf_assert("Invalid name \"bits\" of typedef - name collision with a built-in type."); |
| 165 | str = "module a {namespace urn:a; prefix a; typedef boolean {type string;}}"; |
| 166 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 167 | logbuf_assert("Invalid name \"boolean\" of typedef - name collision with a built-in type."); |
| 168 | str = "module a {namespace urn:a; prefix a; typedef decimal64 {type string;}}"; |
| 169 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 170 | logbuf_assert("Invalid name \"decimal64\" of typedef - name collision with a built-in type."); |
| 171 | str = "module a {namespace urn:a; prefix a; typedef empty {type string;}}"; |
| 172 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 173 | logbuf_assert("Invalid name \"empty\" of typedef - name collision with a built-in type."); |
| 174 | str = "module a {namespace urn:a; prefix a; typedef enumeration {type string;}}"; |
| 175 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 176 | logbuf_assert("Invalid name \"enumeration\" of typedef - name collision with a built-in type."); |
| 177 | str = "module a {namespace urn:a; prefix a; typedef int8 {type string;}}"; |
| 178 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 179 | logbuf_assert("Invalid name \"int8\" of typedef - name collision with a built-in type."); |
| 180 | str = "module a {namespace urn:a; prefix a; typedef int16 {type string;}}"; |
| 181 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 182 | logbuf_assert("Invalid name \"int16\" of typedef - name collision with a built-in type."); |
| 183 | str = "module a {namespace urn:a; prefix a; typedef int32 {type string;}}"; |
| 184 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 185 | logbuf_assert("Invalid name \"int32\" of typedef - name collision with a built-in type."); |
| 186 | str = "module a {namespace urn:a; prefix a; typedef int64 {type string;}}"; |
| 187 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 188 | logbuf_assert("Invalid name \"int64\" of typedef - name collision with a built-in type."); |
| 189 | str = "module a {namespace urn:a; prefix a; typedef instance-identifier {type string;}}"; |
| 190 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 191 | logbuf_assert("Invalid name \"instance-identifier\" of typedef - name collision with a built-in type."); |
| 192 | str = "module a {namespace urn:a; prefix a; typedef identityref {type string;}}"; |
| 193 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 194 | logbuf_assert("Invalid name \"identityref\" of typedef - name collision with a built-in type."); |
| 195 | str = "module a {namespace urn:a; prefix a; typedef leafref {type string;}}"; |
| 196 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 197 | logbuf_assert("Invalid name \"leafref\" of typedef - name collision with a built-in type."); |
| 198 | str = "module a {namespace urn:a; prefix a; typedef string {type int8;}}"; |
| 199 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 200 | logbuf_assert("Invalid name \"string\" of typedef - name collision with a built-in type."); |
| 201 | str = "module a {namespace urn:a; prefix a; typedef union {type string;}}"; |
| 202 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 203 | logbuf_assert("Invalid name \"union\" of typedef - name collision with a built-in type."); |
| 204 | str = "module a {namespace urn:a; prefix a; typedef uint8 {type string;}}"; |
| 205 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 206 | logbuf_assert("Invalid name \"uint8\" of typedef - name collision with a built-in type."); |
| 207 | str = "module a {namespace urn:a; prefix a; typedef uint16 {type string;}}"; |
| 208 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 209 | logbuf_assert("Invalid name \"uint16\" of typedef - name collision with a built-in type."); |
| 210 | str = "module a {namespace urn:a; prefix a; typedef uint32 {type string;}}"; |
| 211 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 212 | logbuf_assert("Invalid name \"uint32\" of typedef - name collision with a built-in type."); |
| 213 | str = "module a {namespace urn:a; prefix a; typedef uint64 {type string;}}"; |
| 214 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 215 | logbuf_assert("Invalid name \"uint64\" of typedef - name collision with a built-in type."); |
| 216 | |
| 217 | str = "module mytypes {namespace urn:types; prefix t; typedef binary_ {type string;} typedef bits_ {type string;} typedef boolean_ {type string;} " |
| 218 | "typedef decimal64_ {type string;} typedef empty_ {type string;} typedef enumeration_ {type string;} typedef int8_ {type string;} typedef int16_ {type string;}" |
| 219 | "typedef int32_ {type string;} typedef int64_ {type string;} typedef instance-identifier_ {type string;} typedef identityref_ {type string;}" |
| 220 | "typedef leafref_ {type string;} typedef string_ {type int8;} typedef union_ {type string;} typedef uint8_ {type string;} typedef uint16_ {type string;}" |
| 221 | "typedef uint32_ {type string;} typedef uint64_ {type string;}}"; |
| 222 | assert_non_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 223 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 224 | str = "module a {namespace urn:a; prefix a; typedef test {type string;} typedef test {type int8;}}"; |
| 225 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 226 | logbuf_assert("Invalid name \"test\" of typedef - name collision with another top-level type."); |
| 227 | |
| 228 | str = "module a {namespace urn:a; prefix a; typedef x {type string;} container c {typedef x {type int8;}}}"; |
| 229 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 230 | logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type."); |
| 231 | |
| 232 | str = "module a {namespace urn:a; prefix a; container c {container d {typedef y {type int8;}} typedef y {type string;}}}"; |
| 233 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 234 | logbuf_assert("Invalid name \"y\" of typedef - name collision with another scoped type."); |
| 235 | |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 236 | str = "module a {namespace urn:a; prefix a; container c {typedef y {type int8;} typedef y {type string;}}}"; |
| 237 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 238 | logbuf_assert("Invalid name \"y\" of typedef - name collision with sibling type."); |
| 239 | |
| 240 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type string;}}"); |
| 241 | str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}"; |
| 242 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 243 | logbuf_assert("Invalid name \"x\" of typedef - name collision with another top-level type."); |
| 244 | |
| 245 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} container c {typedef x {type string;}}}"); |
| 246 | str = "module a {namespace urn:a; prefix a; include b; typedef x {type int8;}}"; |
| 247 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 248 | logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type."); |
| 249 | |
| 250 | ly_ctx_set_module_imp_clb(ctx, test_imp_clb, "submodule b {belongs-to a {prefix a;} typedef x {type int8;}}"); |
| 251 | str = "module a {namespace urn:a; prefix a; include b; container c {typedef x {type string;}}}"; |
| 252 | assert_null(lys_parse_mem(ctx, str, LYS_IN_YANG)); |
| 253 | logbuf_assert("Invalid name \"x\" of typedef - scoped type collide with a top-level type."); |
| 254 | |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 255 | ly_ctx_destroy(ctx, NULL); |
| 256 | } |
| 257 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 258 | int main(void) |
| 259 | { |
| 260 | const struct CMUnitTest tests[] = { |
| 261 | cmocka_unit_test_setup(test_date, logger_setup), |
Radek Krejci | a93621b | 2018-10-18 11:13:38 +0200 | [diff] [blame] | 262 | cmocka_unit_test_setup(test_revisions, logger_setup), |
Radek Krejci | 313d990 | 2018-11-08 09:42:58 +0100 | [diff] [blame] | 263 | cmocka_unit_test_setup(test_typedef, logger_setup), |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 264 | }; |
| 265 | |
| 266 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 267 | } |