Merge branch 'dbus-1.4' rejecting commit 4ebb275ab7b6f71d5
[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         test-corrupt \
104         test-dbus-daemon \
105         test-dbus-daemon-eavesdrop \
106         test-loopback \
107         test-marshal \
108         test-refs \
109         test-relay \
110         test-syslog \
111         $(NULL)
112
113 installcheck_tests =
114 installcheck_environment = \
115         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
116         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
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_LDADD = $(top_builddir)/dbus/libdbus-1.la \
129     $(GLIB_LIBS) \
130     $(DBUS_GLIB_LIBS)
131
132 test_loopback_SOURCES = loopback.c
133 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
134     $(GLIB_LIBS) \
135     $(DBUS_GLIB_LIBS)
136
137 test_relay_SOURCES = relay.c
138 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
139     $(GLIB_LIBS) \
140     $(DBUS_GLIB_LIBS)
141
142 test_dbus_daemon_SOURCES = dbus-daemon.c
143 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
144     $(GLIB_LIBS) \
145     $(DBUS_GLIB_LIBS)
146
147 test_dbus_daemon_eavesdrop_SOURCES = dbus-daemon-eavesdrop.c
148 test_dbus_daemon_eavesdrop_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
149 test_dbus_daemon_eavesdrop_LDFLAGS = @R_DYNAMIC_LDFLAG@
150 test_dbus_daemon_eavesdrop_LDADD = $(top_builddir)/dbus/libdbus-1.la \
151     $(GLIB_LIBS) \
152     $(DBUS_GLIB_LIBS)
153
154 test_marshal_SOURCES = marshal.c
155 test_marshal_LDADD = $(top_builddir)/dbus/libdbus-1.la \
156     $(GLIB_LIBS) \
157     $(DBUS_GLIB_LIBS)
158
159 if DBUS_ENABLE_MODULAR_TESTS
160 TESTS += $(installable_tests)
161 installcheck_tests += $(installable_tests)
162
163 if DBUS_ENABLE_INSTALLED_TESTS
164   testexec_PROGRAMS += $(installable_tests)
165 else !DBUS_ENABLE_INSTALLED_TESTS
166   noinst_PROGRAMS += $(installable_tests)
167 endif !DBUS_ENABLE_INSTALLED_TESTS
168
169 endif DBUS_ENABLE_MODULAR_TESTS
170
171 # If we're installing the tests into a DESTDIR we can't run them
172 # again using the installed copy, because we don't know how to
173 # do a portable equivalent of setting LD_LIBRARY_PATH.
174 installcheck-local:
175         $(MAKE) check-TESTS TESTS='$$(installcheck_tests)' \
176                 TESTS_ENVIRONMENT='$$(installcheck_environment)'
177 if DBUS_ENABLE_INSTALLED_TESTS
178         test -n "$(DESTDIR)" || \
179         $(installcheck_environment) \
180                 $(srcdir)/dbus-test-runner \
181                 $(testexecdir) \
182                 $(testexec_PROGRAMS)
183 endif DBUS_ENABLE_INSTALLED_TESTS
184
185 ## keep these in creation order, i.e. uppermost dirs first 
186 TESTDIRS=                                       \
187         data                                    \
188         data/valid-messages                     \
189         data/invalid-messages                   \
190         data/incomplete-messages                \
191         data/auth                               \
192         data/sha-1                              \
193         data/valid-config-files                 \
194         data/valid-config-files-system          \
195         data/valid-config-files/basic.d         \
196         data/valid-config-files/session.d       \
197         data/valid-config-files/system.d        \
198         data/valid-service-files                \
199         data/valid-service-files-system         \
200         data/invalid-service-files-system       \
201         data/invalid-config-files               \
202         data/invalid-config-files-system        \
203         data/equiv-config-files                 \
204         data/equiv-config-files/basic           \
205         data/equiv-config-files/basic/basic.d   \
206         data/equiv-config-files/entities        \
207         data/equiv-config-files/entities/basic.d
208
209
210 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" \)
211
212 dist-hook:
213         for D in $(TESTDIRS); do                                                \
214                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
215         done ;                                                                  \
216         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
217         for F in $$FILES; do                                                    \
218                 B=`basename $$F`; \
219                 if test -e $$F.in; then \
220                         echo "-- Skipping file $$F (.in version exists)"; \
221                 elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
222                         echo "-- Skipping file $$F (generated)"; \
223                 elif test -e "$(top_srcdir)/bus/$$B"; then \
224                         echo "-- Skipping file $$F (from /bus/)"; \
225                 else \
226                         echo '-- Disting file '$$F ; \
227                         cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
228                 fi; \
229         done
230
231 ## copy tests to builddir so that generated tests and static tests 
232 ## are all in one place.
233 all-local:
234         $(AM_V_at)for D in $(TESTDIRS); do                                                              \
235                 test -d $(top_builddir)/test/$$D || mkdir $(top_builddir)/test/$$D || exit 1 ;  \
236         done ;                                                                                  \
237         if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then                                                                \
238                 FILES=`(cd $(srcdir) && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;                                      \
239                 for F in $$FILES; do                                                            \
240                         SRC=$(srcdir)/$$F ;                                                     \
241                         DEST=$(top_builddir)/test/$$F ;                                         \
242                         echo '-- Copying test file '$$F ;                                       \
243                         cp $$SRC $$DEST || exit 1 ;                                             \
244                         chmod u+w $$DEST || exit 1 ;                                            \
245                 done ;                                                                          \
246         else                                                                                    \
247                 echo '-- No need to copy test data as srcdir = builddir' ;                      \
248         fi ;                                                                                    \
249         echo '-- Copying' $(top_builddir)/bus/*.conf 'to test directory' ;                      \
250         cp $(top_builddir)/bus/*.conf $(top_builddir)/test/data/valid-config-files || exit 1 ;  \
251         chmod u+w $(top_builddir)/test/data/valid-config-files/*.conf || exit 1
252
253 ## this doesn't clean generated test data files when srcdir=builddir
254 clean-local:
255         if test $(srcdir) != . ; then                                   \
256                 FILES=`(cd $(top_builddir)/test && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;   \
257                 for F in $$FILES; do                                    \
258                         DEST=$(top_builddir)/test/$$F ;                 \
259                         echo '-- Deleting test file '$$F ;              \
260                         rm $$DEST || exit 1 ;                           \
261                 done ;                                                  \
262                 REVERSEDIRS= ;                                          \
263                 for D in $(TESTDIRS); do                                \
264                         REVERSEDIRS="$$D $$REVERSEDIRS" ;               \
265                 done ;                                                  \
266                 for D in $$REVERSEDIRS; do                              \
267                         rmdir $(top_builddir)/test/$$D ||               \
268                                 test ! -d $(top_builddir)/test/$$D ||   \
269                                 exit 1 ;        \
270                 done ;                                                  \
271         fi