Allow a reduced set of installable tests (none yet) to be built without GLib
[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 AM_CPPFLAGS = \
8         -I$(top_srcdir) \
9         $(GLIB_CFLAGS) \
10         $(DBUS_GLIB_CFLAGS) \
11         $(NULL)
12
13 # improve backtraces from test stuff
14 AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
15
16 static_cppflags = \
17         $(AM_CPPFLAGS) \
18         -DDBUS_STATIC_BUILD \
19         $(NULL)
20
21 libdbus_testutils_la_CPPFLAGS = \
22         $(static_cppflags)
23 libdbus_testutils_la_SOURCES = \
24         test-utils.c \
25         test-utils.h \
26         $(NULL)
27 libdbus_testutils_la_LIBADD = \
28         $(top_builddir)/dbus/libdbus-internal.la \
29         $(NULL)
30
31 noinst_LTLIBRARIES = libdbus-testutils.la
32
33 if DBUS_BUILD_TESTS
34 ## break-loader removed for now
35 ## most of these binaries are used in tests but are not themselves tests
36 TEST_BINARIES = \
37         shell-test \
38         spawn-test \
39         test-exit \
40         test-names \
41         test-segfault \
42         test-service \
43         test-shell-service \
44         test-sleep-forever \
45         $(NULL)
46
47 ## these are the things to run in make check (i.e. they are actual tests)
48 ## (binaries in here must also be in TEST_BINARIES)
49 TESTS = \
50         shell-test \
51         $(NULL)
52
53 ## These are conceptually part of directories that come earlier in SUBDIRS
54 ## order, but we don't want to run them til we arrive in this directory,
55 ## since they depend on stuff from this directory
56 TESTS += \
57         ../bus/bus-test$(EXEEXT) \
58         ../bus/bus-test-system$(EXEEXT) \
59         ../dbus/dbus-test$(EXEEXT) \
60         $(NULL)
61
62 if DBUS_UNIX
63 TESTS += ../bus/bus-test-launch-helper$(EXEEXT)
64 endif
65
66 else !DBUS_BUILD_TESTS
67
68 TEST_BINARIES=
69 TESTS=
70
71 endif !DBUS_BUILD_TESTS
72
73 noinst_PROGRAMS= $(TEST_BINARIES)
74
75 test_service_CPPFLAGS = $(static_cppflags)
76 test_service_LDADD = libdbus-testutils.la
77 test_names_CPPFLAGS = $(static_cppflags)
78 test_names_LDADD = libdbus-testutils.la
79 ## break_loader_CPPFLAGS = $(static_cppflags)
80 ## break_loader_LDADD = $(top_builddir)/dbus/libdbus-internal.la
81 test_shell_service_CPPFLAGS = $(static_cppflags)
82 test_shell_service_LDADD = libdbus-testutils.la
83 shell_test_CPPFLAGS = $(static_cppflags)
84 shell_test_LDADD = libdbus-testutils.la
85 spawn_test_CPPFLAGS = $(static_cppflags)
86 spawn_test_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         $(NULL)
104
105 if DBUS_WITH_GLIB
106 installable_tests += \
107         test-corrupt \
108         test-dbus-daemon \
109         test-dbus-daemon-eavesdrop \
110         test-loopback \
111         test-marshal \
112         test-refs \
113         test-relay \
114         test-syslog \
115         $(NULL)
116 endif DBUS_WITH_GLIB
117
118 installcheck_tests =
119 installcheck_environment = \
120         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
121         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
122         DBUS_TEST_SYSCONFDIR=$(DESTDIR)$(sysconfdir)
123
124 TESTS_ENVIRONMENT = \
125         DBUS_BLOCK_ON_ABORT=1 \
126         DBUS_FATAL_WARNINGS=1 \
127         DBUS_TEST_DAEMON=@abs_top_builddir@/bus/dbus-daemon$(EXEEXT) \
128         DBUS_TEST_DATA=@abs_top_builddir@/test/data \
129         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
130         $(NULL)
131
132 test_corrupt_SOURCES = corrupt.c
133 test_corrupt_LDADD = $(top_builddir)/dbus/libdbus-1.la \
134     $(GLIB_LIBS) \
135     $(DBUS_GLIB_LIBS)
136
137 test_loopback_SOURCES = loopback.c
138 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
139     $(GLIB_LIBS) \
140     $(DBUS_GLIB_LIBS)
141
142 test_relay_SOURCES = relay.c
143 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
144     $(GLIB_LIBS) \
145     $(DBUS_GLIB_LIBS)
146
147 test_dbus_daemon_SOURCES = dbus-daemon.c
148 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
149     $(GLIB_LIBS) \
150     $(DBUS_GLIB_LIBS)
151
152 test_dbus_daemon_eavesdrop_SOURCES = dbus-daemon-eavesdrop.c
153 test_dbus_daemon_eavesdrop_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
154 test_dbus_daemon_eavesdrop_LDFLAGS = @R_DYNAMIC_LDFLAG@
155 test_dbus_daemon_eavesdrop_LDADD = $(top_builddir)/dbus/libdbus-1.la \
156     $(GLIB_LIBS) \
157     $(DBUS_GLIB_LIBS)
158
159 test_marshal_SOURCES = marshal.c
160 test_marshal_LDADD = $(top_builddir)/dbus/libdbus-1.la \
161     $(GLIB_LIBS) \
162     $(DBUS_GLIB_LIBS)
163
164 if DBUS_ENABLE_MODULAR_TESTS
165 TESTS += $(installable_tests)
166 installcheck_tests += $(installable_tests)
167
168 if DBUS_ENABLE_INSTALLED_TESTS
169   testexec_PROGRAMS += $(installable_tests)
170 else !DBUS_ENABLE_INSTALLED_TESTS
171   noinst_PROGRAMS += $(installable_tests)
172 endif !DBUS_ENABLE_INSTALLED_TESTS
173
174 endif DBUS_ENABLE_MODULAR_TESTS
175
176 # If we're installing the tests into a DESTDIR we can't run them
177 # again using the installed copy, because we don't know how to
178 # do a portable equivalent of setting LD_LIBRARY_PATH.
179 installcheck-local:
180         $(MAKE) check-TESTS TESTS='$$(installcheck_tests)' \
181                 TESTS_ENVIRONMENT='$$(installcheck_environment)'
182 if DBUS_ENABLE_INSTALLED_TESTS
183         test -n "$(DESTDIR)" || \
184         $(installcheck_environment) \
185                 $(srcdir)/dbus-test-runner \
186                 $(testexecdir) \
187                 $(testexec_PROGRAMS)
188 endif DBUS_ENABLE_INSTALLED_TESTS
189
190 ## keep these in creation order, i.e. uppermost dirs first 
191 TESTDIRS=                                       \
192         data                                    \
193         data/valid-messages                     \
194         data/invalid-messages                   \
195         data/incomplete-messages                \
196         data/auth                               \
197         data/sha-1                              \
198         data/valid-config-files                 \
199         data/valid-config-files-system          \
200         data/valid-config-files/basic.d         \
201         data/valid-config-files/session.d       \
202         data/valid-config-files/system.d        \
203         data/valid-service-files                \
204         data/valid-service-files-system         \
205         data/invalid-service-files-system       \
206         data/invalid-config-files               \
207         data/invalid-config-files-system        \
208         data/equiv-config-files                 \
209         data/equiv-config-files/basic           \
210         data/equiv-config-files/basic/basic.d   \
211         data/equiv-config-files/entities        \
212         data/equiv-config-files/entities/basic.d
213
214
215 FIND_TESTS=find . -type f -a \( -name "*.message" -o -name "*.message-raw" -o -name "*.auth-script" -o -name "*.sha1" -o -name "*.txt" -o -name "*.conf" -o -name "*.service" \)
216
217 dist-hook:
218         for D in $(TESTDIRS); do                                                \
219                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
220         done ;                                                                  \
221         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
222         for F in $$FILES; do                                                    \
223                 B=`basename $$F`; \
224                 if test -e $$F.in; then \
225                         echo "-- Skipping file $$F (.in version exists)"; \
226                 elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
227                         echo "-- Skipping file $$F (generated)"; \
228                 elif test -e "$(top_srcdir)/bus/$$B"; then \
229                         echo "-- Skipping file $$F (from /bus/)"; \
230                 else \
231                         echo '-- Disting file '$$F ; \
232                         cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
233                 fi; \
234         done
235
236 ## copy tests to builddir so that generated tests and static tests 
237 ## are all in one place.
238 all-local:
239         $(AM_V_at)for D in $(TESTDIRS); do                                                              \
240                 test -d $(top_builddir)/test/$$D || mkdir $(top_builddir)/test/$$D || exit 1 ;  \
241         done ;                                                                                  \
242         if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then                                                                \
243                 FILES=`(cd $(srcdir) && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;                                      \
244                 for F in $$FILES; do                                                            \
245                         SRC=$(srcdir)/$$F ;                                                     \
246                         DEST=$(top_builddir)/test/$$F ;                                         \
247                         echo '-- Copying test file '$$F ;                                       \
248                         cp $$SRC $$DEST || exit 1 ;                                             \
249                         chmod u+w $$DEST || exit 1 ;                                            \
250                 done ;                                                                          \
251         else                                                                                    \
252                 echo '-- No need to copy test data as srcdir = builddir' ;                      \
253         fi ;                                                                                    \
254         echo '-- Copying' $(top_builddir)/bus/*.conf 'to test directory' ;                      \
255         cp $(top_builddir)/bus/*.conf $(top_builddir)/test/data/valid-config-files || exit 1 ;  \
256         chmod u+w $(top_builddir)/test/data/valid-config-files/*.conf || exit 1
257
258 ## this doesn't clean generated test data files when srcdir=builddir
259 clean-local:
260         if test $(srcdir) != . ; then                                   \
261                 FILES=`(cd $(top_builddir)/test && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;   \
262                 for F in $$FILES; do                                    \
263                         DEST=$(top_builddir)/test/$$F ;                 \
264                         echo '-- Deleting test file '$$F ;              \
265                         rm $$DEST || exit 1 ;                           \
266                 done ;                                                  \
267                 REVERSEDIRS= ;                                          \
268                 for D in $(TESTDIRS); do                                \
269                         REVERSEDIRS="$$D $$REVERSEDIRS" ;               \
270                 done ;                                                  \
271                 for D in $$REVERSEDIRS; do                              \
272                         rmdir $(top_builddir)/test/$$D ||               \
273                                 test ! -d $(top_builddir)/test/$$D ||   \
274                                 exit 1 ;        \
275                 done ;                                                  \
276         fi