Code

Migrate parser from frontend/ to parser/ and to use the AST.
[sysdb.git] / t / Makefile.am
1 EXTRA_DIST = \
2                 coverage.sh \
3                 testwrapper.sh \
4                 integration/config.sh \
5                 integration/ssl.sh \
6                 integration/query.sh \
7                 integration/matching.sh \
8                 integration/filter.sh \
9                 integration/test_lib.sh \
10                 valgrind.suppress
12 # coverage related flags are only set when gcov is enabled
13 AM_CFLAGS = @STRICT_CFLAGS@ @COVERAGE_CFLAGS@
14 AM_LDFLAGS = @COVERAGE_LDFLAGS@
15 AM_CPPFLAGS = -I$(top_builddir)/src/include \
16                 -I$(top_srcdir)/src/include -I$(top_srcdir)/src
18 TESTS =
19 check_PROGRAMS =
20 check_LTLIBRARIES =
22 #
23 # unit tests
24 #
26 LOG_COMPILER = env VPATH=$(VPATH) $(abs_srcdir)/testwrapper.sh
28 if UNIT_TESTING
29 UNIT_TESTS = \
30                 unit/core/data_test \
31                 unit/core/object_test \
32                 unit/core/store_expr_test \
33                 unit/core/store_json_test \
34                 unit/core/store_lookup_test \
35                 unit/core/store_test \
36                 unit/core/time_test \
37                 unit/frontend/connection_test \
38                 unit/frontend/parser_test \
39                 unit/frontend/query_test \
40                 unit/frontend/sock_test \
41                 unit/parser/parser_test \
42                 unit/utils/avltree_test \
43                 unit/utils/channel_test \
44                 unit/utils/dbi_test \
45                 unit/utils/llist_test \
46                 unit/utils/os_test \
47                 unit/utils/proto_test \
48                 unit/utils/strbuf_test
50 UNIT_TEST_SOURCES = unit/testutils.c unit/testutils.h
51 UNIT_TEST_CFLAGS = $(AM_CFLAGS) @CHECK_CFLAGS@ -I$(top_srcdir)/t/unit
52 UNIT_TEST_LDADD = $(top_builddir)/src/libsysdb.la @CHECK_LIBS@
54 if BUILD_WITH_FOPENCOOKIE
55 UNIT_TESTS += unit/utils/unixsock_test
56 unit_utils_unixsock_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/unixsock_test.c
57 unit_utils_unixsock_test_CFLAGS = $(UNIT_TEST_CFLAGS)
58 unit_utils_unixsock_test_LDADD = $(UNIT_TEST_LDADD)
59 endif
61 unit_core_data_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/data_test.c
62 unit_core_data_test_CFLAGS = $(UNIT_TEST_CFLAGS)
63 unit_core_data_test_LDADD = $(UNIT_TEST_LDADD)
65 unit_core_object_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/object_test.c
66 unit_core_object_test_CFLAGS = $(UNIT_TEST_CFLAGS)
67 unit_core_object_test_LDADD = $(UNIT_TEST_LDADD)
69 unit_core_store_expr_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/store_expr_test.c
70 unit_core_store_expr_test_CFLAGS = $(UNIT_TEST_CFLAGS)
71 unit_core_store_expr_test_LDADD = $(UNIT_TEST_LDADD)
73 unit_core_store_json_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/store_json_test.c
74 unit_core_store_json_test_CFLAGS = $(UNIT_TEST_CFLAGS)
75 unit_core_store_json_test_LDADD = $(UNIT_TEST_LDADD)
77 unit_core_store_lookup_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/store_lookup_test.c
78 unit_core_store_lookup_test_CFLAGS = $(UNIT_TEST_CFLAGS)
79 unit_core_store_lookup_test_LDADD = $(UNIT_TEST_LDADD)
81 unit_core_store_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/store_test.c
82 unit_core_store_test_CFLAGS = $(UNIT_TEST_CFLAGS)
83 unit_core_store_test_LDADD = $(UNIT_TEST_LDADD)
85 unit_core_time_test_SOURCES = $(UNIT_TEST_SOURCES) unit/core/time_test.c
86 unit_core_time_test_CFLAGS = $(UNIT_TEST_CFLAGS)
87 unit_core_time_test_LDADD = $(UNIT_TEST_LDADD)
89 unit_frontend_connection_test_SOURCES = $(UNIT_TEST_SOURCES) unit/frontend/connection_test.c
90 unit_frontend_connection_test_CFLAGS = $(UNIT_TEST_CFLAGS)
91 unit_frontend_connection_test_LDADD = $(UNIT_TEST_LDADD)
93 unit_frontend_parser_test_SOURCES = $(UNIT_TEST_SOURCES) unit/frontend/parser_test.c
94 unit_frontend_parser_test_CFLAGS = $(UNIT_TEST_CFLAGS)
95 unit_frontend_parser_test_LDADD = $(UNIT_TEST_LDADD)
97 unit_frontend_query_test_SOURCES = $(UNIT_TEST_SOURCES) unit/frontend/query_test.c
98 unit_frontend_query_test_CFLAGS = $(UNIT_TEST_CFLAGS)
99 unit_frontend_query_test_LDADD = $(UNIT_TEST_LDADD)
101 unit_frontend_sock_test_SOURCES = $(UNIT_TEST_SOURCES) unit/frontend/sock_test.c
102 unit_frontend_sock_test_CFLAGS = $(UNIT_TEST_CFLAGS)
103 unit_frontend_sock_test_LDADD = $(UNIT_TEST_LDADD)
105 unit_parser_parser_test_SOURCES = $(UNIT_TEST_SOURCES) unit/parser/parser_test.c
106 unit_parser_parser_test_CFLAGS = $(UNIT_TEST_CFLAGS)
107 unit_parser_parser_test_LDADD = $(UNIT_TEST_LDADD)
109 unit_utils_avltree_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/avltree_test.c
110 unit_utils_avltree_test_CFLAGS = $(UNIT_TEST_CFLAGS)
111 unit_utils_avltree_test_LDADD = $(UNIT_TEST_LDADD)
113 unit_utils_channel_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/channel_test.c
114 unit_utils_channel_test_CFLAGS = $(UNIT_TEST_CFLAGS)
115 unit_utils_channel_test_LDADD = $(UNIT_TEST_LDADD)
117 unit_utils_dbi_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/dbi_test.c
118 unit_utils_dbi_test_CFLAGS = $(UNIT_TEST_CFLAGS)
119 unit_utils_dbi_test_LDADD = $(UNIT_TEST_LDADD)
121 unit_utils_llist_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/llist_test.c
122 unit_utils_llist_test_CFLAGS = $(UNIT_TEST_CFLAGS)
123 unit_utils_llist_test_LDADD = $(UNIT_TEST_LDADD)
125 unit_utils_os_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/os_test.c
126 unit_utils_os_test_CFLAGS = $(UNIT_TEST_CFLAGS)
127 unit_utils_os_test_LDADD = $(UNIT_TEST_LDADD)
129 unit_utils_proto_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/proto_test.c
130 unit_utils_proto_test_CFLAGS = $(UNIT_TEST_CFLAGS)
131 unit_utils_proto_test_LDADD = $(UNIT_TEST_LDADD)
133 unit_utils_strbuf_test_SOURCES = $(UNIT_TEST_SOURCES) unit/utils/strbuf_test.c
134 unit_utils_strbuf_test_CFLAGS = $(UNIT_TEST_CFLAGS)
135 unit_utils_strbuf_test_LDADD = $(UNIT_TEST_LDADD)
137 TESTS += $(UNIT_TESTS)
138 check_PROGRAMS += $(UNIT_TESTS)
139 endif
142 # integration tests
145 if INTEGRATION_TESTING
146 INTEGRATION_TESTS = \
147                 integration/client.sh \
148                 integration/config.sh \
149                 integration/ssl.sh \
150                 integration/query_fetch.sh \
151                 integration/query_list.sh \
152                 integration/query_timeseries.sh \
153                 integration/matching.sh \
154                 integration/filter.sh
156 TESTS += $(INTEGRATION_TESTS)
158 check_LTLIBRARIES += integration/mock_plugin.la
159 integration_mock_plugin_la_SOURCES = integration/mock_plugin.c
160 # -rpath is a work-around to enforce a shared library
161 integration_mock_plugin_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \
162                 -rpath /nonexistent
164 check_LTLIBRARIES += integration/mock_timeseries.la
165 integration_mock_timeseries_la_SOURCES = integration/mock_timeseries.c
166 # -rpath is a work-around to enforce a shared library
167 integration_mock_timeseries_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \
168                 -rpath /nonexistent
169 endif
171 test: check