Manual rebase fix.
[platform/upstream/dbus.git] / test / Makefile.am
1 ## the "name-test" subdir in fact contains a bunch of tests now that need a temporary bus 
2 ## to be running to do stuff with. The directory should be renamed.
3 ## We want to build the current directory first to pick up the testutils lib
4 SUBDIRS= . name-test 
5 DIST_SUBDIRS=name-test
6
7 # CPPFLAGS for binaries that are normally dynamic
8 AM_CPPFLAGS = \
9         -I$(top_srcdir) \
10         $(DBUS_STATIC_BUILD_CPPFLAGS) \
11         $(GLIB_CFLAGS) \
12         $(DBUS_GLIB_CFLAGS) \
13         $(NULL)
14
15 # improve backtraces from test stuff
16 AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
17
18 # CPPFLAGS for binaries that are always static
19 static_cppflags = \
20         $(AM_CPPFLAGS) \
21         -DDBUS_STATIC_BUILD \
22         $(NULL)
23
24 libdbus_testutils_la_CPPFLAGS = \
25         $(static_cppflags)
26 libdbus_testutils_la_SOURCES = \
27         test-utils.c \
28         test-utils.h \
29         $(NULL)
30 libdbus_testutils_la_LIBADD = \
31         $(top_builddir)/dbus/libdbus-internal.la \
32         $(NULL)
33
34 noinst_LTLIBRARIES = libdbus-testutils.la
35
36 if DBUS_ENABLE_EMBEDDED_TESTS
37 ## break-loader removed for now
38 ## these binaries are used in tests but are not themselves tests
39 TEST_BINARIES = \
40         spawn-test \
41         test-exit \
42         test-names \
43         test-segfault \
44         test-service \
45         test-shell-service \
46         test-sleep-forever \
47         $(NULL)
48
49 ## These are conceptually part of directories that come earlier in SUBDIRS
50 ## order, but we don't want to run them til we arrive in this directory,
51 ## since they depend on stuff from this directory
52 TESTS = \
53         ../bus/bus-test$(EXEEXT) \
54         ../bus/bus-test-system$(EXEEXT) \
55         ../dbus/dbus-test$(EXEEXT) \
56         $(NULL)
57
58 if DBUS_UNIX
59 TESTS += ../bus/bus-test-launch-helper$(EXEEXT)
60 endif
61
62 else !DBUS_ENABLE_EMBEDDED_TESTS
63
64 TEST_BINARIES=
65 TESTS=
66
67 endif !DBUS_ENABLE_EMBEDDED_TESTS
68
69 noinst_PROGRAMS= $(TEST_BINARIES)
70
71 test_service_CPPFLAGS = $(static_cppflags)
72 test_service_LDADD = libdbus-testutils.la
73 test_names_CPPFLAGS = $(static_cppflags)
74 test_names_LDADD = libdbus-testutils.la
75 ## break_loader_CPPFLAGS = $(static_cppflags)
76 ## break_loader_LDADD = $(top_builddir)/dbus/libdbus-internal.la
77 test_shell_service_CPPFLAGS = $(static_cppflags)
78 test_shell_service_LDADD = libdbus-testutils.la
79 shell_test_CPPFLAGS = $(static_cppflags)
80 shell_test_LDADD = libdbus-testutils.la
81 spawn_test_CPPFLAGS = $(static_cppflags)
82 spawn_test_LDADD = $(top_builddir)/dbus/libdbus-internal.la
83
84 test_printf_SOURCES = internals/printf.c
85 test_printf_CPPFLAGS = $(static_cppflags)
86 test_printf_LDADD = $(top_builddir)/dbus/libdbus-internal.la
87
88 test_refs_SOURCES = internals/refs.c
89 test_refs_CPPFLAGS = $(static_cppflags)
90 test_refs_LDADD = libdbus-testutils.la $(GLIB_LIBS)
91
92 test_syslog_SOURCES = internals/syslog.c
93 test_syslog_CPPFLAGS = $(static_cppflags)
94 test_syslog_LDADD = libdbus-testutils.la $(GLIB_LIBS)
95
96 EXTRA_DIST = dbus-test-runner
97
98 testexecdir = $(libdir)/dbus-1.0/test
99
100 testexec_PROGRAMS =
101
102 installable_tests = \
103         shell-test \
104         test-printf \
105         $(NULL)
106 installable_manual_tests = \
107         $(NULL)
108
109 if DBUS_WITH_GLIB
110 installable_tests += \
111         test-corrupt \
112         test-dbus-daemon \
113         test-dbus-daemon-eavesdrop \
114         test-loopback \
115         test-marshal \
116         test-refs \
117         test-relay \
118         test-syntax \
119         test-syslog \
120         $(NULL)
121 installable_manual_tests += \
122         manual-authz \
123         $(NULL)
124 endif DBUS_WITH_GLIB
125
126 installcheck_tests =
127 installcheck_environment = \
128         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
129         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
130         DBUS_TEST_SYSCONFDIR=$(DESTDIR)$(sysconfdir)
131
132 TESTS_ENVIRONMENT = \
133         DBUS_BLOCK_ON_ABORT=1 \
134         DBUS_FATAL_WARNINGS=1 \
135         DBUS_TEST_DAEMON=@abs_top_builddir@/bus/dbus-daemon$(EXEEXT) \
136         DBUS_TEST_DATA=@abs_top_builddir@/test/data \
137         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
138         $(NULL)
139
140 manual_authz_SOURCES = manual-authz.c
141 manual_authz_LDADD = $(top_builddir)/dbus/libdbus-1.la \
142     $(GLIB_LIBS) \
143     $(DBUS_GLIB_LIBS)
144
145 test_corrupt_SOURCES = corrupt.c
146 test_corrupt_LDADD = $(top_builddir)/dbus/libdbus-1.la \
147     $(GLIB_LIBS) \
148     $(DBUS_GLIB_LIBS)
149
150 test_loopback_SOURCES = loopback.c
151 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
152     $(GLIB_LIBS) \
153     $(DBUS_GLIB_LIBS)
154
155 test_relay_SOURCES = relay.c
156 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
157     $(GLIB_LIBS) \
158     $(DBUS_GLIB_LIBS)
159
160 test_dbus_daemon_SOURCES = dbus-daemon.c
161 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
162     $(GLIB_LIBS) \
163     $(DBUS_GLIB_LIBS)
164
165 test_dbus_daemon_eavesdrop_SOURCES = dbus-daemon-eavesdrop.c
166 test_dbus_daemon_eavesdrop_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
167 test_dbus_daemon_eavesdrop_LDFLAGS = @R_DYNAMIC_LDFLAG@
168 test_dbus_daemon_eavesdrop_LDADD = $(top_builddir)/dbus/libdbus-1.la \
169     $(GLIB_LIBS) \
170     $(DBUS_GLIB_LIBS)
171
172 test_marshal_SOURCES = marshal.c
173 test_marshal_LDADD = $(top_builddir)/dbus/libdbus-1.la \
174     $(GLIB_LIBS) \
175     $(DBUS_GLIB_LIBS)
176
177 test_syntax_SOURCES = syntax.c
178 test_syntax_LDADD = $(top_builddir)/dbus/libdbus-1.la \
179     $(GLIB_LIBS)
180
181 if DBUS_ENABLE_MODULAR_TESTS
182 TESTS += $(installable_tests)
183 installcheck_tests += $(installable_tests)
184
185 if DBUS_ENABLE_INSTALLED_TESTS
186   testexec_PROGRAMS += $(installable_tests) $(installable_manual_tests)
187 else !DBUS_ENABLE_INSTALLED_TESTS
188   noinst_PROGRAMS += $(installable_tests) $(installable_manual_tests)
189 endif !DBUS_ENABLE_INSTALLED_TESTS
190
191 endif DBUS_ENABLE_MODULAR_TESTS
192
193 # If we're installing the tests into a DESTDIR we can't run them
194 # again using the installed copy, because we don't know how to
195 # do a portable equivalent of setting LD_LIBRARY_PATH.
196 installcheck-local:
197         $(MAKE) check-TESTS TESTS='$$(installcheck_tests)' \
198                 TESTS_ENVIRONMENT='$$(installcheck_environment)'
199 if DBUS_ENABLE_INSTALLED_TESTS
200         test -n "$(DESTDIR)" || \
201         $(installcheck_environment) \
202                 $(srcdir)/dbus-test-runner \
203                 $(testexecdir) \
204                 $(testexec_PROGRAMS)
205 endif DBUS_ENABLE_INSTALLED_TESTS
206
207 in_data = \
208         data/valid-config-files-system/debug-allow-all-fail.conf.in \
209         data/valid-config-files-system/debug-allow-all-pass.conf.in \
210         data/valid-config-files/debug-allow-all-sha1.conf.in \
211         data/valid-config-files/debug-allow-all.conf.in \
212         data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoExec.service.in \
213         data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoService.service.in \
214         data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoUser.service.in \
215         data/valid-service-files-system/org.freedesktop.DBus.TestSuiteEchoService.service.in \
216         data/valid-service-files-system/org.freedesktop.DBus.TestSuiteSegfaultService.service.in \
217         data/valid-service-files-system/org.freedesktop.DBus.TestSuiteShellEchoServiceFail.service.in \
218         data/valid-service-files-system/org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess.service.in \
219         data/valid-service-files/org.freedesktop.DBus.TestSuite.PrivServer.service.in \
220         data/valid-service-files/org.freedesktop.DBus.TestSuiteEchoService.service.in \
221         data/valid-service-files/org.freedesktop.DBus.TestSuiteForkingEchoService.service.in \
222         data/valid-service-files/org.freedesktop.DBus.TestSuiteSegfaultService.service.in \
223         data/valid-service-files/org.freedesktop.DBus.TestSuiteShellEchoServiceFail.service.in \
224         data/valid-service-files/org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess.service.in \
225         $(NULL)
226
227 EXTRA_DIST += $(in_data)
228
229 static_data = \
230         name-test/tmp-session-like-system.conf \
231         data/auth/anonymous-client-successful.auth-script \
232         data/auth/anonymous-server-successful.auth-script \
233         data/auth/cancel.auth-script \
234         data/auth/client-out-of-mechanisms.auth-script \
235         data/auth/external-failed.auth-script \
236         data/auth/external-root.auth-script \
237         data/auth/external-silly.auth-script \
238         data/auth/external-successful.auth-script \
239         data/auth/extra-bytes.auth-script \
240         data/auth/fail-after-n-attempts.auth-script \
241         data/auth/fallback.auth-script \
242         data/auth/invalid-command-client.auth-script \
243         data/auth/invalid-command.auth-script \
244         data/auth/invalid-hex-encoding.auth-script \
245         data/auth/mechanisms.auth-script \
246         data/equiv-config-files/basic/basic-1.conf \
247         data/equiv-config-files/basic/basic-2.conf \
248         data/equiv-config-files/basic/basic.d/basic.conf \
249         data/equiv-config-files/entities/basic.d/basic.conf \
250         data/equiv-config-files/entities/entities-1.conf \
251         data/equiv-config-files/entities/entities-2.conf \
252         data/incomplete-messages/missing-body.message \
253         data/invalid-config-files/badselinux-1.conf \
254         data/invalid-config-files/badselinux-2.conf \
255         data/invalid-config-files/circular-1.conf \
256         data/invalid-config-files/circular-2.conf \
257         data/invalid-config-files/circular-3.conf \
258         data/invalid-config-files/not-well-formed.conf \
259         data/invalid-config-files/truncated-file.conf \
260         data/invalid-messages/array-of-nil.message \
261         data/invalid-messages/array-with-mixed-types.message \
262         data/invalid-messages/bad-boolean-array.message \
263         data/invalid-messages/bad-boolean.message \
264         data/invalid-messages/bad-endian.message \
265         data/invalid-messages/bad-header-field-alignment.message \
266         data/invalid-messages/boolean-has-no-value.message-raw \
267         data/invalid-messages/local-namespace.message \
268         data/invalid-messages/no-dot-in-name.message \
269         data/invalid-messages/not-nul-header-padding.message \
270         data/invalid-messages/overlong-name.message \
271         data/invalid-messages/too-little-header-padding.message \
272         data/invalid-messages/too-much-header-padding-by-far.message \
273         data/invalid-messages/too-much-header-padding.message \
274         data/invalid-messages/too-short-dict.message \
275         data/sha-1/Readme.txt \
276         data/sha-1/bit-hashes.sha1 \
277         data/sha-1/bit-messages.sha1 \
278         data/sha-1/byte-hashes.sha1 \
279         data/sha-1/byte-messages.sha1 \
280         data/valid-config-files/basic.conf \
281         data/valid-config-files/basic.d/basic.conf \
282         data/valid-config-files/entities.conf \
283         data/valid-config-files/incoming-limit.conf \
284         data/valid-config-files/many-rules.conf \
285         data/valid-config-files/system.d/test.conf \
286         data/valid-messages/array-of-array-of-uint32.message \
287         data/valid-messages/dict-simple.message \
288         data/valid-messages/dict.message \
289         data/valid-messages/emptiness.message \
290         data/valid-messages/lots-of-arguments.message \
291         data/valid-messages/no-padding.message \
292         data/valid-messages/opposite-endian.message \
293         data/valid-messages/recursive-types.message \
294         data/valid-messages/simplest-manual.message \
295         data/valid-messages/simplest.message \
296         data/valid-messages/standard-acquire-service.message \
297         data/valid-messages/standard-hello.message \
298         data/valid-messages/standard-list-services.message \
299         data/valid-messages/standard-service-exists.message \
300         data/valid-messages/unknown-header-field.message \
301         $(NULL)
302
303 EXTRA_DIST += $(static_data)
304
305 ## copy tests to builddir so that generated tests and static tests
306 ## are all in one place.
307 all-local:
308         $(AM_V_at)$(MKDIR_P) data/valid-config-files/session.d
309         $(AM_V_at)set -e && \
310         if test $(srcdir) = . || test $(srcdir) -ef .; then \
311                 echo '-- No need to copy test data as srcdir = builddir'; \
312         else \
313                 for F in $(static_data); do \
314                         $(MKDIR_P) $${F%/*}; \
315                         rm -f $$F; \
316                         cp $(srcdir)/$$F $$F; \
317                 done; \
318         fi
319
320 ## this doesn't clean most copied test data files when srcdir=builddir
321 clean-local:
322         $(AM_V_at)if test $(srcdir) = . || test $(srcdir) -ef .; then \
323                 echo '-- No need to clean test data as srcdir = builddir'; \
324         else \
325                 rm -f $(static_data); \
326         fi
327
328 imported_data = \
329         data/valid-config-files/session.conf \
330         data/valid-config-files/system.conf \
331         $(NULL)
332
333 noinst_DATA = $(imported_data)
334 CLEANFILES = $(noinst_DATA)
335
336 data/valid-config-files/session.conf: $(top_builddir)/bus/session.conf
337         $(AM_V_at)$(MKDIR_P) data/valid-config-files
338         $(AM_V_GEN)cp $< $@
339
340 data/valid-config-files/system.conf: $(top_builddir)/bus/system.conf
341         $(AM_V_at)$(MKDIR_P) data/valid-config-files
342         $(AM_V_GEN)cp $< $@