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