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; |
| 29 | *format = LYS_IN_YANG; |
| 30 | *free_module_data = NULL; |
| 31 | return LY_SUCCESS; |
| 32 | } |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 33 | |
| 34 | /** |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 35 | * DECLARE OTHER SCHEMA TESTS |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 36 | */ |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 37 | /* test_schema_common.c */ |
| 38 | void test_getnext(void **state); |
| 39 | void test_date(void **state); |
| 40 | void test_revisions(void **state); |
| 41 | void test_typedef(void **state); |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 42 | void test_accessible_tree(void **state); |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 43 | void test_includes(void **state); |
Radek Krejci | 18abde4 | 2020-06-13 20:04:39 +0200 | [diff] [blame] | 44 | |
| 45 | /* test_schema_stmts.c */ |
| 46 | void test_identity(void **state); |
| 47 | void test_feature(void **state); |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 48 | |
Radek Krejci | b4ac5a9 | 2020-11-23 17:54:33 +0100 | [diff] [blame] | 49 | int |
| 50 | main(void) |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 51 | { |
| 52 | const struct CMUnitTest tests[] = { |
| 53 | /** test_schema_common.c */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 54 | UTEST(test_getnext), |
| 55 | UTEST(test_date), |
| 56 | UTEST(test_revisions), |
| 57 | UTEST(test_typedef), |
| 58 | UTEST(test_accessible_tree), |
Radek Krejci | 589c547 | 2021-01-20 10:29:06 +0100 | [diff] [blame] | 59 | UTEST(test_includes), |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 60 | |
| 61 | /** test_schema_stmts.c */ |
Radek Iša | 56ca9e4 | 2020-09-08 18:42:00 +0200 | [diff] [blame] | 62 | UTEST(test_identity), |
| 63 | UTEST(test_feature), |
Radek Krejci | 3a4889a | 2020-05-19 17:01:58 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | return cmocka_run_group_tests(tests, NULL, NULL); |
| 67 | } |