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