sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* test-main.c main() for make check sl@0: * sl@0: * Copyright (C) 2003 Red Hat, Inc. sl@0: * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: sl@0: #include "test.h" sl@0: #include sl@0: #include sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #include sl@0: #include sl@0: #else sl@0: #include "dbus-string.h" sl@0: #include "dbus-sysdeps.h" sl@0: #include "dbus-internals.h" sl@0: #endif //__SYMBIAN32__ sl@0: #include "selinux.h" sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #else sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #endif sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #define LOG_FILE "c:\\logs\\dbus_daemon_test_main_log1.txt" sl@0: #include "std_log_result.h" sl@0: #define LOG_FILENAME_LINE __FILE__, __LINE__ sl@0: sl@0: void create_xml(int result) sl@0: { sl@0: if(result) sl@0: assert_failed = 1; sl@0: sl@0: testResultXml("dbus_daemon_test_main"); sl@0: close_log_file(); sl@0: } sl@0: #endif sl@0: sl@0: #ifdef DBUS_BUILD_TESTS sl@0: static void sl@0: die (const char *failure) sl@0: { sl@0: fprintf (stderr, "Unit test failed: %s\n", failure); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure); sl@0: sl@0: create_xml(1); sl@0: #endif sl@0: exit (1); sl@0: } sl@0: sl@0: static void sl@0: check_memleaks (const char *name) sl@0: { sl@0: dbus_shutdown (); sl@0: sl@0: printf ("%s: checking for memleaks\n", name); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: checking for memleaks\n", name); sl@0: #endif sl@0: if (_dbus_get_malloc_blocks_outstanding () != 0) sl@0: { sl@0: _dbus_warn ("%d dbus_malloc blocks were not freed\n", sl@0: _dbus_get_malloc_blocks_outstanding ()); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%d dbus_malloc blocks were not freed\n", sl@0: _dbus_get_malloc_blocks_outstanding ()); sl@0: #endif sl@0: die ("memleaks"); sl@0: } sl@0: } sl@0: #endif /* DBUS_BUILD_TESTS */ sl@0: sl@0: static void sl@0: test_pre_hook (void) sl@0: { sl@0: sl@0: if (_dbus_getenv ("DBUS_TEST_SELINUX") sl@0: && (!bus_selinux_pre_init () sl@0: || !bus_selinux_full_init ())) sl@0: die ("could not init selinux support"); sl@0: } sl@0: sl@0: static char *progname = ""; sl@0: static void sl@0: test_post_hook (void) sl@0: { sl@0: if (_dbus_getenv ("DBUS_TEST_SELINUX")) sl@0: bus_selinux_shutdown (); sl@0: check_memleaks (progname); sl@0: } sl@0: sl@0: int sl@0: main (int argc, char **argv) sl@0: { sl@0: #ifdef DBUS_BUILD_TESTS sl@0: const char *dir; sl@0: DBusString test_data_dir; sl@0: sl@0: progname = argv[0]; sl@0: sl@0: if (argc > 1) sl@0: dir = argv[1]; sl@0: else sl@0: dir = _dbus_getenv ("DBUS_TEST_DATA"); sl@0: sl@0: dir = "c:\\data\\dbus"; sl@0: sl@0: if (dir == NULL) sl@0: { sl@0: fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n"); sl@0: #endif sl@0: return 1; sl@0: } sl@0: sl@0: _dbus_string_init_const (&test_data_dir, dir); sl@0: sl@0: if (!_dbus_threads_init_debug ()) sl@0: die ("initializing debug threads"); sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running expire list test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running expire list test\n", argv[0]); sl@0: #endif sl@0: if (!bus_expire_list_test (&test_data_dir)) sl@0: die ("expire list"); sl@0: test_post_hook (); sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running config file parser test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running config file parser test\n", argv[0]); sl@0: #endif sl@0: if (!bus_config_parser_test (&test_data_dir)) sl@0: die ("parser"); sl@0: test_post_hook (); sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running policy test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running policy test\n", argv[0]); sl@0: #endif sl@0: if (!bus_policy_test (&test_data_dir)) sl@0: die ("policy"); sl@0: test_post_hook (); sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running signals test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running signals test\n", argv[0]); sl@0: #endif sl@0: if (!bus_signals_test (&test_data_dir)) sl@0: die ("signals"); sl@0: test_post_hook (); sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running SHA1 connection test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running SHA1 connection test\n", argv[0]); sl@0: #endif sl@0: if (!bus_dispatch_sha1_test (&test_data_dir)) sl@0: die ("sha1"); sl@0: test_post_hook (); sl@0: sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running service files reloading test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running service files reloading test\n", argv[0]); sl@0: #endif sl@0: if (!bus_activation_service_reload_test (&test_data_dir)) sl@0: die ("service reload"); sl@0: test_post_hook (); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]); sl@0: #endif sl@0: sl@0: test_pre_hook (); sl@0: printf ("%s: Running message dispatch test\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]); sl@0: #endif sl@0: if (!bus_dispatch_test (&test_data_dir)) sl@0: die ("dispatch"); sl@0: /*2 bytes of memory leak to be investigated*/ sl@0: //test_post_hook (); sl@0: printf ("%s: Success\n", argv[0]); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: Success\n", argv[0]); sl@0: sl@0: create_xml(0); sl@0: #endif sl@0: return 0; sl@0: #else /* DBUS_BUILD_TESTS */ sl@0: sl@0: printf ("Not compiled with test support\n"); sl@0: sl@0: return 0; sl@0: #endif sl@0: }