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