Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * @file test_schema.c |
| 3 | * @author: Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief unit tests for schema related functions |
| 5 | * |
| 6 | * Copyright (c) 2018-2019 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 14 | #define _UTEST_MAIN_ |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 15 | #include "test_schema.h" |
| 16 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 17 | #include <string.h> |
| 18 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 19 | #include "log.h" |
| 20 | #include "parser_schema.h" |
| 21 | #include "tree_schema.h" |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 22 | |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 23 | LY_ERR |
| 24 | test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name), |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 25 | const char *UNUSED(sub_rev), void *user_data, LYS_INFORMAT *format, |
| 26 | const char **module_data, void (**free_module_data)(void *model_data, void *user_data)) |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 27 | { |
| 28 | *module_data = user_data; |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 29 | if ((*module_data)[0] == '<') { |
| 30 | *format = LYS_IN_YIN; |
| 31 | } else { |
| 32 | *format = LYS_IN_YANG; |
| 33 | } |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 34 | *free_module_data = NULL; |
| 35 | return LY_SUCCESS; |
| 36 | } |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 37 | |
| 38 | /** |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 39 | * DECLARE OTHER SCHEMA TESTS |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 40 | */ |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 41 | /* test_schema_common.c */ |
| 42 | void test_getnext(void **state); |
| 43 | void test_date(void **state); |
| 44 | void test_revisions(void **state); |
| 45 | void test_typedef(void **state); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 46 | void test_accessible_tree(void **state); |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 47 | void test_includes(void **state); |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 48 | |
| 49 | /* test_schema_stmts.c */ |
| 50 | void test_identity(void **state); |
| 51 | void test_feature(void **state); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 52 | |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 53 | /* test_schema_extensions.c */ |
| 54 | void test_extension_argument(void **state); |
| 55 | void test_extension_argument_element(void **state); |
| 56 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 57 | int |
| 58 | main(void) |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 59 | { |
| 60 | const struct CMUnitTest tests[] = { |
| 61 | /** test_schema_common.c */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 62 | UTEST(test_getnext), |
| 63 | UTEST(test_date), |
| 64 | UTEST(test_revisions), |
| 65 | UTEST(test_typedef), |
| 66 | UTEST(test_accessible_tree), |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 67 | UTEST(test_includes), |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 68 | |
| 69 | /** test_schema_stmts.c */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 70 | UTEST(test_identity), |
| 71 | UTEST(test_feature), |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 72 | |
| 73 | /** test_schema_extensions.c */ |
| 74 | UTEST(test_extension_argument), |
| 75 | UTEST(test_extension_argument_element), |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 79 | } |