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