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