Run bus tests from test/
[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 \
38         ../bus/bus-test-system \
39         ../bus/bus-test-launch-helper \
40         ../dbus/dbus-test \
41         $(NULL)
42
43 else !DBUS_BUILD_TESTS
44
45 TEST_BINARIES=
46 TESTS=
47
48 endif !DBUS_BUILD_TESTS
49
50 noinst_PROGRAMS= $(TEST_BINARIES)
51
52 test_service_SOURCES=                           \
53         test-service.c
54
55 test_names_SOURCES=                             \
56         test-names.c
57
58 ##break_loader_SOURCES=                         \
59 ##      break-loader.c
60
61 test_shell_service_SOURCES =                    \
62         test-shell-service.c
63
64 shell_test_SOURCES=                             \
65         shell-test.c
66
67 spawn_test_SOURCES=                             \
68         spawn-test.c
69
70 test_exit_SOURCES =                             \
71         test-exit.c
72
73 test_segfault_SOURCES =                         \
74         test-segfault.c
75
76 test_sleep_forever_SOURCES =                    \
77         test-sleep-forever.c
78
79 # This assumes that most tests will be linked to libdbus-internal;
80 # tests linked to only the public libdbus have their own CPPFLAGS.
81 AM_CPPFLAGS=-DDBUS_STATIC_BUILD
82 TEST_LIBS=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS)
83
84 test_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
85 test_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
86 test_names_LDADD=libdbus-testutils.la $(TEST_LIBS)
87 test_names_LDFLAGS=@R_DYNAMIC_LDFLAG@
88 ## break_loader_LDADD= $(TEST_LIBS)
89 ## break_loader_LDFLAGS=@R_DYNAMIC_LDFLAG@
90 test_shell_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
91 test_shell_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
92 shell_test_LDADD=libdbus-testutils.la $(TEST_LIBS)
93 shell_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
94 spawn_test_LDADD=$(TEST_LIBS)
95 spawn_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
96
97 EXTRA_DIST = dbus-test-runner
98
99 testexecdir = $(libdir)/dbus-1.0/test
100
101 testexec_PROGRAMS =
102
103 installable_tests = \
104         test-corrupt \
105         test-dbus-daemon \
106         test-loopback \
107         test-marshal \
108         test-relay \
109         $(NULL)
110
111 installcheck_tests =
112 installcheck_environment = \
113         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
114         DBUS_TEST_SYSCONFDIR=$(DESTDIR)$(sysconfdir)
115
116 TESTS_ENVIRONMENT = \
117         DBUS_BLOCK_ON_ABORT=1 \
118         DBUS_FATAL_WARNINGS=1 \
119         DBUS_TEST_DAEMON=@abs_top_builddir@/bus/dbus-daemon$(EXEEXT) \
120         DBUS_TEST_DATA=@abs_top_builddir@/test/data \
121         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
122         $(NULL)
123
124 test_corrupt_SOURCES = corrupt.c
125 test_corrupt_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
126 test_corrupt_LDFLAGS = @R_DYNAMIC_LDFLAG@
127 test_corrupt_LDADD = $(top_builddir)/dbus/libdbus-1.la \
128     $(GLIB_LIBS) \
129     $(DBUS_GLIB_LIBS)
130
131 test_loopback_SOURCES = loopback.c
132 test_loopback_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
133 test_loopback_LDFLAGS = @R_DYNAMIC_LDFLAG@
134 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
135     $(GLIB_LIBS) \
136     $(DBUS_GLIB_LIBS)
137
138 test_relay_SOURCES = relay.c
139 test_relay_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
140 test_relay_LDFLAGS = @R_DYNAMIC_LDFLAG@
141 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
142     $(GLIB_LIBS) \
143     $(DBUS_GLIB_LIBS)
144
145 test_dbus_daemon_SOURCES = dbus-daemon.c
146 test_dbus_daemon_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
147 test_dbus_daemon_LDFLAGS = @R_DYNAMIC_LDFLAG@
148 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
149     $(GLIB_LIBS) \
150     $(DBUS_GLIB_LIBS)
151
152 test_marshal_SOURCES = marshal.c
153 test_marshal_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
154 test_marshal_LDFLAGS = @R_DYNAMIC_LDFLAG@
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 || exit 1 ;      \
268                 done ;                                                  \
269         fi