1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus/bus/test-main.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,233 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* test-main.c main() for make check
1.6 + *
1.7 + * Copyright (C) 2003 Red Hat, Inc.
1.8 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
1.9 + * Licensed under the Academic Free License version 2.1
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + *
1.21 + * You should have received a copy of the GNU General Public License
1.22 + * along with this program; if not, write to the Free Software
1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.24 + *
1.25 + */
1.26 +
1.27 +#include "test.h"
1.28 +#include <stdio.h>
1.29 +#include <stdlib.h>
1.30 +#ifndef __SYMBIAN32__
1.31 +#include <dbus/dbus-string.h>
1.32 +#include <dbus/dbus-sysdeps.h>
1.33 +#include <dbus/dbus-internals.h>
1.34 +#else
1.35 +#include "dbus-string.h"
1.36 +#include "dbus-sysdeps.h"
1.37 +#include "dbus-internals.h"
1.38 +#endif //__SYMBIAN32__
1.39 +#include "selinux.h"
1.40 +
1.41 +#ifdef __SYMBIAN32__
1.42 +#include <libxml2_xmlreader.h>
1.43 +#include <libxml2_parser.h>
1.44 +#include <libxml2_globals.h>
1.45 +#include <libxml2_xmlexports.h>
1.46 +#include <libxml2_xmlmemory.h>
1.47 +
1.48 +#else
1.49 +#include <libxml/xmlreader.h>
1.50 +#include <libxml/parser.h>
1.51 +#include <libxml/globals.h>
1.52 +#include <libxml/xmlmemory.h>
1.53 +#endif
1.54 +
1.55 +
1.56 +#ifdef __SYMBIAN32__
1.57 +#define LOG_FILE "c:\\logs\\dbus_daemon_test_main_log1.txt"
1.58 +#include "std_log_result.h"
1.59 +#define LOG_FILENAME_LINE __FILE__, __LINE__
1.60 +
1.61 +void create_xml(int result)
1.62 + {
1.63 + if(result)
1.64 + assert_failed = 1;
1.65 +
1.66 + testResultXml("dbus_daemon_test_main");
1.67 + close_log_file();
1.68 + }
1.69 +#endif
1.70 +
1.71 +#ifdef DBUS_BUILD_TESTS
1.72 +static void
1.73 +die (const char *failure)
1.74 +{
1.75 + fprintf (stderr, "Unit test failed: %s\n", failure);
1.76 + #ifdef __SYMBIAN32__
1.77 + std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure);
1.78 +
1.79 + create_xml(1);
1.80 + #endif
1.81 + exit (1);
1.82 +}
1.83 +
1.84 +static void
1.85 +check_memleaks (const char *name)
1.86 +{
1.87 + dbus_shutdown ();
1.88 +
1.89 + printf ("%s: checking for memleaks\n", name);
1.90 + #ifdef __SYMBIAN32__
1.91 + std_log(LOG_FILENAME_LINE, "%s: checking for memleaks\n", name);
1.92 + #endif
1.93 + if (_dbus_get_malloc_blocks_outstanding () != 0)
1.94 + {
1.95 + _dbus_warn ("%d dbus_malloc blocks were not freed\n",
1.96 + _dbus_get_malloc_blocks_outstanding ());
1.97 + #ifdef __SYMBIAN32__
1.98 + std_log(LOG_FILENAME_LINE, "%d dbus_malloc blocks were not freed\n",
1.99 + _dbus_get_malloc_blocks_outstanding ());
1.100 + #endif
1.101 + die ("memleaks");
1.102 + }
1.103 +}
1.104 +#endif /* DBUS_BUILD_TESTS */
1.105 +
1.106 +static void
1.107 +test_pre_hook (void)
1.108 +{
1.109 +
1.110 + if (_dbus_getenv ("DBUS_TEST_SELINUX")
1.111 + && (!bus_selinux_pre_init ()
1.112 + || !bus_selinux_full_init ()))
1.113 + die ("could not init selinux support");
1.114 +}
1.115 +
1.116 +static char *progname = "";
1.117 +static void
1.118 +test_post_hook (void)
1.119 +{
1.120 + if (_dbus_getenv ("DBUS_TEST_SELINUX"))
1.121 + bus_selinux_shutdown ();
1.122 + check_memleaks (progname);
1.123 +}
1.124 +
1.125 +int
1.126 +main (int argc, char **argv)
1.127 +{
1.128 +#ifdef DBUS_BUILD_TESTS
1.129 + const char *dir;
1.130 + DBusString test_data_dir;
1.131 +
1.132 + progname = argv[0];
1.133 +
1.134 + if (argc > 1)
1.135 + dir = argv[1];
1.136 + else
1.137 + dir = _dbus_getenv ("DBUS_TEST_DATA");
1.138 +
1.139 + dir = "c:\\data\\dbus";
1.140 +
1.141 + if (dir == NULL)
1.142 + {
1.143 + fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
1.144 + #ifdef __SYMBIAN32__
1.145 + std_log(LOG_FILENAME_LINE, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
1.146 + #endif
1.147 + return 1;
1.148 + }
1.149 +
1.150 + _dbus_string_init_const (&test_data_dir, dir);
1.151 +
1.152 + if (!_dbus_threads_init_debug ())
1.153 + die ("initializing debug threads");
1.154 +
1.155 + test_pre_hook ();
1.156 + printf ("%s: Running expire list test\n", argv[0]);
1.157 + #ifdef __SYMBIAN32__
1.158 + std_log(LOG_FILENAME_LINE, "%s: Running expire list test\n", argv[0]);
1.159 + #endif
1.160 + if (!bus_expire_list_test (&test_data_dir))
1.161 + die ("expire list");
1.162 + test_post_hook ();
1.163 +
1.164 + test_pre_hook ();
1.165 + printf ("%s: Running config file parser test\n", argv[0]);
1.166 + #ifdef __SYMBIAN32__
1.167 + std_log(LOG_FILENAME_LINE, "%s: Running config file parser test\n", argv[0]);
1.168 + #endif
1.169 + if (!bus_config_parser_test (&test_data_dir))
1.170 + die ("parser");
1.171 + test_post_hook ();
1.172 +
1.173 + test_pre_hook ();
1.174 + printf ("%s: Running policy test\n", argv[0]);
1.175 + #ifdef __SYMBIAN32__
1.176 + std_log(LOG_FILENAME_LINE, "%s: Running policy test\n", argv[0]);
1.177 + #endif
1.178 + if (!bus_policy_test (&test_data_dir))
1.179 + die ("policy");
1.180 + test_post_hook ();
1.181 +
1.182 + test_pre_hook ();
1.183 + printf ("%s: Running signals test\n", argv[0]);
1.184 + #ifdef __SYMBIAN32__
1.185 + std_log(LOG_FILENAME_LINE, "%s: Running signals test\n", argv[0]);
1.186 + #endif
1.187 + if (!bus_signals_test (&test_data_dir))
1.188 + die ("signals");
1.189 + test_post_hook ();
1.190 +
1.191 + test_pre_hook ();
1.192 + printf ("%s: Running SHA1 connection test\n", argv[0]);
1.193 + #ifdef __SYMBIAN32__
1.194 + std_log(LOG_FILENAME_LINE, "%s: Running SHA1 connection test\n", argv[0]);
1.195 + #endif
1.196 + if (!bus_dispatch_sha1_test (&test_data_dir))
1.197 + die ("sha1");
1.198 + test_post_hook ();
1.199 +
1.200 +
1.201 + test_pre_hook ();
1.202 + printf ("%s: Running service files reloading test\n", argv[0]);
1.203 + #ifdef __SYMBIAN32__
1.204 + std_log(LOG_FILENAME_LINE, "%s: Running service files reloading test\n", argv[0]);
1.205 + #endif
1.206 + if (!bus_activation_service_reload_test (&test_data_dir))
1.207 + die ("service reload");
1.208 + test_post_hook ();
1.209 +
1.210 + #ifdef __SYMBIAN32__
1.211 + std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]);
1.212 + #endif
1.213 +
1.214 + test_pre_hook ();
1.215 + printf ("%s: Running message dispatch test\n", argv[0]);
1.216 + #ifdef __SYMBIAN32__
1.217 + std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]);
1.218 + #endif
1.219 + if (!bus_dispatch_test (&test_data_dir))
1.220 + die ("dispatch");
1.221 + /*2 bytes of memory leak to be investigated*/
1.222 + //test_post_hook ();
1.223 + printf ("%s: Success\n", argv[0]);
1.224 + #ifdef __SYMBIAN32__
1.225 + std_log(LOG_FILENAME_LINE, "%s: Success\n", argv[0]);
1.226 +
1.227 + create_xml(0);
1.228 + #endif
1.229 + return 0;
1.230 +#else /* DBUS_BUILD_TESTS */
1.231 +
1.232 + printf ("Not compiled with test support\n");
1.233 +
1.234 + return 0;
1.235 +#endif
1.236 +}