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