blob: 7e7a35172b6678e5b0836d29f600843f9f8c00ea [file] [log] [blame]
Radek Krejci3a4889a2020-05-19 17:01:58 +02001/*
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ša56ca9e42020-09-08 18:42:00 +020014#define _UTEST_MAIN_
Radek Krejci18abde42020-06-13 20:04:39 +020015#include "test_schema.h"
16
Radek Krejcica376bd2020-06-11 16:04:06 +020017#include <string.h>
18
Radek Krejci18abde42020-06-13 20:04:39 +020019#include "log.h"
20#include "parser_schema.h"
21#include "tree_schema.h"
Radek Krejci3a4889a2020-05-19 17:01:58 +020022
Radek Krejci18abde42020-06-13 20:04:39 +020023LY_ERR
24test_imp_clb(const char *UNUSED(mod_name), const char *UNUSED(mod_rev), const char *UNUSED(submod_name),
Radek Krejcib4ac5a92020-11-23 17:54:33 +010025 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 Krejci18abde42020-06-13 20:04:39 +020027{
28 *module_data = user_data;
29 *format = LYS_IN_YANG;
30 *free_module_data = NULL;
31 return LY_SUCCESS;
32}
Radek Krejci3a4889a2020-05-19 17:01:58 +020033
34/**
Radek Krejci18abde42020-06-13 20:04:39 +020035 * DECLARE OTHER SCHEMA TESTS
Radek Krejci3a4889a2020-05-19 17:01:58 +020036 */
Radek Krejci18abde42020-06-13 20:04:39 +020037/* test_schema_common.c */
38void test_getnext(void **state);
39void test_date(void **state);
40void test_revisions(void **state);
41void test_typedef(void **state);
Michal Vasko6b26e742020-07-17 15:02:10 +020042void test_accessible_tree(void **state);
Radek Krejci18abde42020-06-13 20:04:39 +020043
44/* test_schema_stmts.c */
45void test_identity(void **state);
46void test_feature(void **state);
Radek Krejci3a4889a2020-05-19 17:01:58 +020047
Radek Krejcib4ac5a92020-11-23 17:54:33 +010048int
49main(void)
Radek Krejci3a4889a2020-05-19 17:01:58 +020050{
51 const struct CMUnitTest tests[] = {
52 /** test_schema_common.c */
Radek Iša56ca9e42020-09-08 18:42:00 +020053 UTEST(test_getnext),
54 UTEST(test_date),
55 UTEST(test_revisions),
56 UTEST(test_typedef),
57 UTEST(test_accessible_tree),
Radek Krejci3a4889a2020-05-19 17:01:58 +020058
59 /** test_schema_stmts.c */
Radek Iša56ca9e42020-09-08 18:42:00 +020060 UTEST(test_identity),
61 UTEST(test_feature),
Radek Krejci3a4889a2020-05-19 17:01:58 +020062 };
63
64 return cmocka_run_group_tests(tests, NULL, NULL);
65}