}
#endif
+#ifdef ENABLE_TRADITIONAL_ACTIVATION
dbus_bool_t
-bus_dispatch_test (const char *test_data_dir_cstr)
+bus_test_normal_activation (const char *test_data_dir_cstr)
{
DBusString test_data_dir;
_dbus_string_init_const (&test_data_dir, test_data_dir_cstr);
-#ifdef ENABLE_TRADITIONAL_ACTIVATION
- /* run normal activation tests */
- _dbus_verbose ("Normal activation tests\n");
if (!bus_dispatch_test_conf (&test_data_dir,
- "valid-config-files/debug-allow-all.conf", FALSE))
+ "valid-config-files/debug-allow-all.conf", FALSE))
return FALSE;
+ return TRUE;
+}
+
#ifndef DBUS_WIN
- /* run launch-helper activation tests */
- _dbus_verbose ("Launch helper activation tests\n");
+dbus_bool_t
+bus_test_helper_activation (const char *test_data_dir_cstr)
+{
+ DBusString test_data_dir;
+
+ _dbus_string_init_const (&test_data_dir, test_data_dir_cstr);
+
if (!bus_dispatch_test_conf (&test_data_dir,
- "valid-config-files-system/debug-allow-all-pass.conf", TRUE))
+ "valid-config-files-system/debug-allow-all-pass.conf", TRUE))
return FALSE;
+ return TRUE;
+}
+
+dbus_bool_t
+bus_test_failed_helper_activation (const char *test_data_dir_cstr)
+{
+ DBusString test_data_dir;
+
+ _dbus_string_init_const (&test_data_dir, test_data_dir_cstr);
+
/* run select launch-helper activation tests on broken service files */
if (!bus_dispatch_test_conf_fail (&test_data_dir,
- "valid-config-files-system/debug-allow-all-fail.conf"))
+ "valid-config-files-system/debug-allow-all-fail.conf"))
return FALSE;
-#endif
-#endif
return TRUE;
}
+#endif /* !DBUS_WIN */
+#endif /* ENABLE_TRADITIONAL_ACTIVATION */
dbus_bool_t
bus_dispatch_sha1_test (const char *test_data_dir_cstr)
typedef dbus_bool_t (* BusConnectionForeachFunction) (DBusConnection *connection,
void *data);
-dbus_bool_t bus_dispatch_test (const char *test_data_dir_cstr);
+dbus_bool_t bus_test_normal_activation (const char *test_data_dir_cstr);
+dbus_bool_t bus_test_helper_activation (const char *test_data_dir_cstr);
+dbus_bool_t bus_test_failed_helper_activation (const char *test_data_dir_cstr);
dbus_bool_t bus_dispatch_sha1_test (const char *test_data_dir_cstr);
dbus_bool_t bus_config_parser_test (const char *test_data_dir_cstr);
dbus_bool_t bus_config_parser_trivial_test (const char *test_data_dir_cstr);
add_test_executable(test-bus "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
set_target_properties(test-bus PROPERTIES COMPILE_FLAGS ${DBUS_INTERNAL_CLIENT_DEFINITIONS})
- set(SOURCES bus/dispatch.c bus/common.c bus/common.h)
- add_test_executable(test-bus-dispatch "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
- set_target_properties(test-bus-dispatch PROPERTIES COMPILE_FLAGS ${DBUS_INTERNAL_CLIENT_DEFINITIONS})
+ if(ENABLE_TRADITIONAL_ACTIVATION)
+ set(SOURCES bus/normal-activation.c bus/common.c bus/common.h)
+ add_test_executable(test-bus-normal-activation "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
+ set_target_properties(test-bus-normal-activation PROPERTIES COMPILE_FLAGS ${DBUS_INTERNAL_CLIENT_DEFINITIONS})
+ endif()
+
set(SOURCES bus/dispatch-sha1.c bus/common.c bus/common.h)
add_test_executable(test-bus-dispatch-sha1 "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
if(ENABLE_TRADITIONAL_ACTIVATION)
add_test_executable(test-bus-launch-helper-oom bus/launch-helper-oom.c launch-helper-internal dbus-testutils)
add_helper_executable(dbus-daemon-launch-helper-for-tests bus/launch-helper-for-tests.c launch-helper-internal)
+
+ set(SOURCES bus/failed-helper-activation.c bus/common.c bus/common.h)
+ add_test_executable(test-bus-failed-helper-activation "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
+ set_target_properties(test-bus-failed-helper-activation PROPERTIES COMPILE_FLAGS ${DBUS_INTERNAL_CLIENT_DEFINITIONS})
+
+ set(SOURCES bus/helper-activation.c bus/common.c bus/common.h)
+ add_test_executable(test-bus-helper-activation "${SOURCES}" dbus-daemon-internal dbus-testutils ${EXPAT_LIBRARIES})
+ set_target_properties(test-bus-helper-activation PROPERTIES COMPILE_FLAGS ${DBUS_INTERNAL_CLIENT_DEFINITIONS})
endif()
endif()
endif()
uninstallable_test_programs += \
test-platform-mutex \
test-bus \
- test-bus-dispatch \
test-bus-dispatch-sha1 \
test-marshal-recursive \
test-message-internals \
$(NULL)
+if ENABLE_TRADITIONAL_ACTIVATION
+uninstallable_test_programs += test-normal-activation
+endif
+
if DBUS_UNIX
if ENABLE_TRADITIONAL_ACTIVATION
uninstallable_test_programs += test-bus-launch-helper-oom
uninstallable_test_programs += test-bus-system
+uninstallable_test_programs += test-failed-helper-activation
+uninstallable_test_programs += test-helper-activation
# this is used by the tests but is not, itself, a test
TEST_BINARIES += dbus-daemon-launch-helper-for-tests
endif ENABLE_TRADITIONAL_ACTIVATION
libdbus-testutils.la \
$(NULL)
-test_bus_dispatch_SOURCES = bus/dispatch.c bus/common.c bus/common.h
-test_bus_dispatch_LDADD = \
- $(top_builddir)/bus/libdbus-daemon-internal.la \
- libdbus-testutils.la \
- $(NULL)
-
test_bus_dispatch_sha1_SOURCES = bus/dispatch-sha1.c bus/common.c bus/common.h
test_bus_dispatch_sha1_LDADD = \
$(top_builddir)/bus/libdbus-daemon-internal.la \
test_hash_SOURCES = internals/hash.c
test_hash_LDADD = libdbus-testutils.la
+test_failed_helper_activation_SOURCES = \
+ bus/failed-helper-activation.c \
+ bus/common.c \
+ bus/common.h \
+ $(NULL)
+test_failed_helper_activation_LDADD = \
+ $(top_builddir)/bus/libdbus-daemon-internal.la \
+ libdbus-testutils.la \
+ $(NULL)
+
+test_helper_activation_SOURCES = \
+ bus/helper-activation.c \
+ bus/common.c \
+ bus/common.h \
+ $(NULL)
+test_helper_activation_LDADD = \
+ $(top_builddir)/bus/libdbus-daemon-internal.la \
+ libdbus-testutils.la \
+ $(NULL)
+
test_marshal_recursive_SOURCES = \
internals/dbus-marshal-recursive-util.c \
internals/dbus-marshal-recursive-util.h \
$(NULL)
test_misc_internals_LDADD = libdbus-testutils.la
+test_normal_activation_SOURCES = \
+ bus/normal-activation.c \
+ bus/common.c \
+ bus/common.h \
+ $(NULL)
+test_normal_activation_LDADD = \
+ $(top_builddir)/bus/libdbus-daemon-internal.la \
+ libdbus-testutils.la \
+ $(NULL)
+
test_platform_mutex_SOURCES = test-platform-mutex.c
test_platform_mutex_LDADD = \
$(top_builddir)/dbus/libdbus-internal.la \
--- /dev/null
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/*
+ * Copyright 2003-2009 Red Hat, Inc.
+ * Copyright 2011-2018 Collabora Ltd.
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include <config.h>
+#include "test/bus/common.h"
+
+static DBusTestCase test =
+{
+ "failed-helper-activation",
+ bus_test_failed_helper_activation
+};
+
+int
+main (int argc, char **argv)
+{
+ return bus_test_main (argc, argv, 1, &test);
+}
#include <config.h>
#include "test/bus/common.h"
-static DBusTestCase test = { "dispatch", bus_dispatch_test };
+static DBusTestCase test = { "helper-activation", bus_test_helper_activation };
int
main (int argc, char **argv)
--- /dev/null
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/*
+ * Copyright 2003-2009 Red Hat, Inc.
+ * Copyright 2011-2018 Collabora Ltd.
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include <config.h>
+#include "test/bus/common.h"
+
+static DBusTestCase test = { "normal-activation", bus_test_normal_activation };
+
+int
+main (int argc, char **argv)
+{
+ return bus_test_main (argc, argv, 1, &test);
+}
'install': false,
'suite': ['slow'],
},
- {
- 'name': 'bus-dispatch',
- 'srcs': [ 'bus/dispatch.c', 'bus/common.c' ],
- 'link': [ libdbus_testutils, libdbus_daemon_internal, ],
- 'install': false,
- 'suite': ['slow'],
- 'timeout': 3000,
- },
{
'name': 'marshal-recursive',
'srcs': [
},
]
+ if use_traditional_activation
+ tests += [
+ {
+ 'name': 'bus-normal-activation',
+ 'srcs': [ 'bus/normal-activation.c', 'bus/common.c' ],
+ 'link': [ libdbus_testutils, libdbus_daemon_internal, ],
+ 'install': false,
+ 'suite': ['slow'],
+ 'timeout': 1000,
+ },
+ ]
+ endif
+
if use_traditional_activation and platform_unix
tests += [
+ {
+ 'name': 'bus-failed-helper-activation',
+ 'srcs': [ 'bus/failed-helper-activation.c', 'bus/common.c' ],
+ 'link': [ libdbus_testutils, libdbus_daemon_internal, ],
+ 'install': false,
+ },
+ {
+ 'name': 'bus-helper-activation',
+ 'srcs': [ 'bus/helper-activation.c', 'bus/common.c' ],
+ 'link': [ libdbus_testutils, libdbus_daemon_internal, ],
+ 'install': false,
+ 'suite': ['slow'],
+ 'timeout': 1000,
+ },
{
'name': 'bus-launch-helper-oom',
'srcs': [ 'bus/launch-helper-oom.c' ],