1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* test-main.c main() for the OOM check of the launch helper
4 * Copyright (C) 2007 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "activation-helper.h"
29 #include <dbus/dbus-internals.h>
31 #ifdef DBUS_BUILD_TESTS
33 die (const char *failure)
35 fprintf (stderr, "Unit test failed: %s\n", failure);
40 check_memleaks (const char *name)
44 printf ("%s: checking for memleaks\n", name);
45 if (_dbus_get_malloc_blocks_outstanding () != 0)
47 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
48 _dbus_get_malloc_blocks_outstanding ());
54 test_post_hook (const char *name)
56 check_memleaks (name);
58 #endif /* DBUS_BUILD_TESTS */
61 #ifdef ACTIVATION_LAUNCHER_DO_OOM
63 /* returns true if good things happen, or if we get OOM */
65 bus_activation_helper_oom_test (void *data)
71 service = (const char *) data;
74 dbus_error_init (&error);
75 if (!run_launch_helper (service, &error))
77 _DBUS_ASSERT_ERROR_IS_SET (&error);
78 /* we failed, but a OOM is good */
79 if (!dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
81 _dbus_warn ("FAILED SELF TEST: Error: %s\n", error.message);
84 dbus_error_free (&error);
88 /* we succeeded, yay! */
89 _DBUS_ASSERT_ERROR_IS_CLEAR (&error);
97 main (int argc, char **argv)
99 #ifdef DBUS_BUILD_TESTS
101 DBusString config_file;
106 dir = _dbus_getenv ("DBUS_TEST_DATA");
110 fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
114 printf ("%s: Running launch helper OOM checks\n", argv[0]);
116 if (!_dbus_string_init (&config_file))
118 if (!_dbus_string_append (&config_file, dir))
120 if (!_dbus_string_append (&config_file, "/valid-config-files-system/debug-allow-all-pass.conf"))
123 /* use a config file that will actually work... */
124 _dbus_setenv ("TEST_LAUNCH_HELPER_CONFIG",
125 _dbus_string_get_const_data (&config_file));
127 _dbus_string_free (&config_file);
129 if (!_dbus_test_oom_handling ("dbus-daemon-launch-helper",
130 bus_activation_helper_oom_test,
131 "org.freedesktop.DBus.TestSuiteEchoService"))
134 test_post_hook (argv[0]);
136 printf ("%s: Success\n", argv[0]);
139 #else /* DBUS_BUILD_TESTS */
141 printf ("Not compiled with test support\n");