Add support for installing most of the modular tests
[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-loopback \
82         test-relay \
83         $(NULL)
84
85 modular_tests = \
86         test-dbus-daemon
87
88 installcheck_tests =
89 installcheck_environment = \
90         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
91         DBUS_TEST_DATA=@abs_top_builddir@/test/data \
92         DBUS_TEST_USE_INSTALLED=1 \
93         DBUS_TEST_SYSCONFDIR=$(sysconfdir) \
94         DESTDIR=$(DESTDIR)
95
96 TESTS_ENVIRONMENT = \
97         DBUS_TEST_DAEMON=@abs_top_builddir@/bus/dbus-daemon$(EXEEXT) \
98         DBUS_TEST_DATA=@abs_top_builddir@/test/data
99
100 test_corrupt_SOURCES = corrupt.c
101 test_corrupt_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
102 test_corrupt_LDFLAGS = @R_DYNAMIC_LDFLAG@
103 test_corrupt_LDADD = $(top_builddir)/dbus/libdbus-1.la \
104     $(GLIB_LIBS) \
105     $(DBUS_GLIB_LIBS)
106
107 test_loopback_SOURCES = loopback.c
108 test_loopback_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
109 test_loopback_LDFLAGS = @R_DYNAMIC_LDFLAG@
110 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
111     $(GLIB_LIBS) \
112     $(DBUS_GLIB_LIBS)
113
114 test_relay_SOURCES = relay.c
115 test_relay_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
116 test_relay_LDFLAGS = @R_DYNAMIC_LDFLAG@
117 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
118     $(GLIB_LIBS) \
119     $(DBUS_GLIB_LIBS)
120
121 test_dbus_daemon_SOURCES = dbus-daemon.c
122 test_dbus_daemon_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
123 test_dbus_daemon_LDFLAGS = @R_DYNAMIC_LDFLAG@
124 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
125     $(GLIB_LIBS) \
126     $(DBUS_GLIB_LIBS)
127
128 if DBUS_ENABLE_MODULAR_TESTS
129 noinst_PROGRAMS += $(modular_tests)
130 TESTS += $(modular_tests)
131 TESTS += $(installable_tests)
132 installcheck_tests += $(installable_tests)
133 installcheck_tests += $(modular_tests)
134
135 if DBUS_ENABLE_INSTALLED_TESTS
136   testexec_PROGRAMS += $(installable_tests)
137 else !DBUS_ENABLE_INSTALLED_TESTS
138   testexec_PROGRAMS += $(installable_tests)
139 endif !DBUS_ENABLE_INSTALLED_TESTS
140
141 endif DBUS_ENABLE_MODULAR_TESTS
142
143 installcheck-local:
144         $(MAKE) check-TESTS TESTS='$$(installcheck_tests)' \
145                 TESTS_ENVIRONMENT='$$(installcheck_environment)'
146 if DBUS_ENABLE_INSTALLED_TESTS
147         $(installcheck_environment) \
148                 $(srcdir)/dbus-test-runner \
149                 $(testexecdir) \
150                 $(testexec_PROGRAMS)
151 endif DBUS_ENABLE_INSTALLED_TESTS
152
153 ## keep these in creation order, i.e. uppermost dirs first 
154 TESTDIRS=                                       \
155         data                                    \
156         data/valid-messages                     \
157         data/invalid-messages                   \
158         data/incomplete-messages                \
159         data/auth                               \
160         data/sha-1                              \
161         data/valid-config-files                 \
162         data/valid-config-files-system          \
163         data/valid-config-files/basic.d         \
164         data/valid-config-files/session.d       \
165         data/valid-config-files/system.d        \
166         data/valid-service-files                \
167         data/valid-service-files-system         \
168         data/invalid-service-files-system       \
169         data/invalid-config-files               \
170         data/invalid-config-files-system        \
171         data/equiv-config-files                 \
172         data/equiv-config-files/basic           \
173         data/equiv-config-files/basic/basic.d   \
174         data/equiv-config-files/entities        \
175         data/equiv-config-files/entities/basic.d
176
177
178 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" \)
179
180 dist-hook:
181         for D in $(TESTDIRS); do                                                \
182                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
183         done ;                                                                  \
184         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
185         for F in $$FILES; do                                                    \
186                 B=`basename $$F`; \
187                 if test -e $$F.in; then \
188                         echo "-- Skipping file $$F (.in version exists)"; \
189                 elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
190                         echo "-- Skipping file $$F (generated)"; \
191                 elif test -e "$(top_srcdir)/bus/$$B"; then \
192                         echo "-- Skipping file $$F (from /bus/)"; \
193                 else \
194                         echo '-- Disting file '$$F ; \
195                         cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
196                 fi; \
197         done
198
199 ## copy tests to builddir so that generated tests and static tests 
200 ## are all in one place.
201 all-local:
202         $(AM_V_at)for D in $(TESTDIRS); do                                                              \
203                 test -d $(top_builddir)/test/$$D || mkdir $(top_builddir)/test/$$D || exit 1 ;  \
204         done ;                                                                                  \
205         if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then                                                                \
206                 FILES=`(cd $(srcdir) && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;                                      \
207                 for F in $$FILES; do                                                            \
208                         SRC=$(srcdir)/$$F ;                                                     \
209                         DEST=$(top_builddir)/test/$$F ;                                         \
210                         echo '-- Copying test file '$$F ;                                       \
211                         cp $$SRC $$DEST || exit 1 ;                                             \
212                         chmod u+w $$DEST || exit 1 ;                                            \
213                 done ;                                                                          \
214         else                                                                                    \
215                 echo '-- No need to copy test data as srcdir = builddir' ;                      \
216         fi ;                                                                                    \
217         echo '-- Copying' $(top_builddir)/bus/*.conf 'to test directory' ;                      \
218         cp $(top_builddir)/bus/*.conf $(top_builddir)/test/data/valid-config-files || exit 1 ;  \
219         chmod u+w $(top_builddir)/test/data/valid-config-files/*.conf || exit 1
220
221 ## this doesn't clean generated test data files when srcdir=builddir
222 clean-local:
223         if test $(srcdir) != . ; then                                   \
224                 FILES=`(cd $(top_builddir)/test && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;   \
225                 for F in $$FILES; do                                    \
226                         DEST=$(top_builddir)/test/$$F ;                 \
227                         echo '-- Deleting test file '$$F ;              \
228                         rm $$DEST || exit 1 ;                           \
229                 done ;                                                  \
230                 REVERSEDIRS= ;                                          \
231                 for D in $(TESTDIRS); do                                \
232                         REVERSEDIRS="$$D $$REVERSEDIRS" ;               \
233                 done ;                                                  \
234                 for D in $$REVERSEDIRS; do                              \
235                         rmdir $(top_builddir)/test/$$D || exit 1 ;      \
236                 done ;                                                  \
237         fi