1 /*
2 * SysDB - t/unit/parser/ast_test.c
3 * Copyright (C) 2015 Sebastian 'tokkee' Harl <sh@tokkee.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
28 #if HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include "parser/ast.h"
33 #include "parser/parser.h"
34 #include "testutils.h"
36 #include <check.h>
38 /*
39 * tests
40 */
42 START_TEST(test_init)
43 {
44 /* simple test to check that the initializers match;
45 * not all of them are used at all times */
46 sdb_ast_op_t op = SDB_AST_OP_INIT;
47 sdb_ast_iter_t iter = SDB_AST_ITER_INIT;
48 sdb_ast_typed_t typed = SDB_AST_TYPED_INIT;
49 sdb_ast_const_t constant = SDB_AST_CONST_INIT;
50 sdb_ast_value_t value = SDB_AST_VALUE_INIT;
51 sdb_ast_fetch_t fetch = SDB_AST_FETCH_INIT;
52 sdb_ast_list_t list = SDB_AST_LIST_INIT;
53 sdb_ast_lookup_t lookup = SDB_AST_LOOKUP_INIT;
54 sdb_ast_store_t store = SDB_AST_STORE_INIT;
55 sdb_ast_timeseries_t ts = SDB_AST_TIMESERIES_INIT;
57 /* do some (mostly) dummy operation */
58 sdb_parser_analyze(SDB_AST_NODE(&op), NULL);
59 sdb_parser_analyze(SDB_AST_NODE(&iter), NULL);
60 sdb_parser_analyze(SDB_AST_NODE(&typed), NULL);
61 sdb_parser_analyze(SDB_AST_NODE(&constant), NULL);
62 sdb_parser_analyze(SDB_AST_NODE(&value), NULL);
63 sdb_parser_analyze(SDB_AST_NODE(&fetch), NULL);
64 sdb_parser_analyze(SDB_AST_NODE(&list), NULL);
65 sdb_parser_analyze(SDB_AST_NODE(&lookup), NULL);
66 sdb_parser_analyze(SDB_AST_NODE(&store), NULL);
67 sdb_parser_analyze(SDB_AST_NODE(&ts), NULL);
68 }
69 END_TEST
71 TEST_MAIN("parser::ast")
72 {
73 TCase *tc = tcase_create("core");
74 tcase_add_test(tc, test_init);
75 ADD_TCASE(tc);
76 }
77 TEST_MAIN_END
79 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */