os/ossrv/ofdbus/dbus/bus/test-main.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* -*- mode: C; c-file-style: "gnu" -*- */
sl@0
     2
/* test-main.c  main() for make check
sl@0
     3
 *
sl@0
     4
 * Copyright (C) 2003 Red Hat, Inc.
sl@0
     5
 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     6
 * Licensed under the Academic Free License version 2.1
sl@0
     7
 * 
sl@0
     8
 * This program is free software; you can redistribute it and/or modify
sl@0
     9
 * it under the terms of the GNU General Public License as published by
sl@0
    10
 * the Free Software Foundation; either version 2 of the License, or
sl@0
    11
 * (at your option) any later version.
sl@0
    12
 *
sl@0
    13
 * This program is distributed in the hope that it will be useful,
sl@0
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
sl@0
    16
 * GNU General Public License for more details.
sl@0
    17
 * 
sl@0
    18
 * You should have received a copy of the GNU General Public License
sl@0
    19
 * along with this program; if not, write to the Free Software
sl@0
    20
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
sl@0
    21
 *
sl@0
    22
 */
sl@0
    23
sl@0
    24
#include "test.h"
sl@0
    25
#include <stdio.h>
sl@0
    26
#include <stdlib.h>
sl@0
    27
#ifndef __SYMBIAN32__
sl@0
    28
#include <dbus/dbus-string.h>
sl@0
    29
#include <dbus/dbus-sysdeps.h>
sl@0
    30
#include <dbus/dbus-internals.h>
sl@0
    31
#else
sl@0
    32
#include "dbus-string.h"
sl@0
    33
#include "dbus-sysdeps.h"
sl@0
    34
#include "dbus-internals.h"
sl@0
    35
#endif //__SYMBIAN32__
sl@0
    36
#include "selinux.h"
sl@0
    37
sl@0
    38
#ifdef __SYMBIAN32__
sl@0
    39
#include <libxml2_xmlreader.h>
sl@0
    40
#include <libxml2_parser.h>
sl@0
    41
#include <libxml2_globals.h>
sl@0
    42
#include <libxml2_xmlexports.h>
sl@0
    43
#include <libxml2_xmlmemory.h>
sl@0
    44
sl@0
    45
#else
sl@0
    46
#include <libxml/xmlreader.h>
sl@0
    47
#include <libxml/parser.h>
sl@0
    48
#include <libxml/globals.h>
sl@0
    49
#include <libxml/xmlmemory.h>
sl@0
    50
#endif
sl@0
    51
sl@0
    52
sl@0
    53
#ifdef __SYMBIAN32__
sl@0
    54
#define LOG_FILE "c:\\logs\\dbus_daemon_test_main_log1.txt"
sl@0
    55
#include "std_log_result.h"
sl@0
    56
#define LOG_FILENAME_LINE __FILE__, __LINE__
sl@0
    57
sl@0
    58
void create_xml(int result)
sl@0
    59
	{
sl@0
    60
	if(result)
sl@0
    61
		assert_failed = 1;
sl@0
    62
	
sl@0
    63
	testResultXml("dbus_daemon_test_main");
sl@0
    64
    close_log_file();
sl@0
    65
	}
sl@0
    66
#endif
sl@0
    67
sl@0
    68
#ifdef DBUS_BUILD_TESTS
sl@0
    69
static void
sl@0
    70
die (const char *failure)
sl@0
    71
{
sl@0
    72
  fprintf (stderr, "Unit test failed: %s\n", failure);
sl@0
    73
  #ifdef __SYMBIAN32__
sl@0
    74
  std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure);
sl@0
    75
  
sl@0
    76
  create_xml(1);
sl@0
    77
  #endif
sl@0
    78
  exit (1);
sl@0
    79
}
sl@0
    80
sl@0
    81
static void
sl@0
    82
check_memleaks (const char *name)
sl@0
    83
{
sl@0
    84
  dbus_shutdown ();
sl@0
    85
  
sl@0
    86
  printf ("%s: checking for memleaks\n", name);
sl@0
    87
  #ifdef __SYMBIAN32__
sl@0
    88
  std_log(LOG_FILENAME_LINE, "%s: checking for memleaks\n", name);
sl@0
    89
  #endif
sl@0
    90
  if (_dbus_get_malloc_blocks_outstanding () != 0)
sl@0
    91
    {
sl@0
    92
      _dbus_warn ("%d dbus_malloc blocks were not freed\n",
sl@0
    93
                  _dbus_get_malloc_blocks_outstanding ());
sl@0
    94
		#ifdef __SYMBIAN32__
sl@0
    95
		std_log(LOG_FILENAME_LINE, "%d dbus_malloc blocks were not freed\n",
sl@0
    96
                  _dbus_get_malloc_blocks_outstanding ());
sl@0
    97
		#endif
sl@0
    98
      die ("memleaks");
sl@0
    99
    }
sl@0
   100
}
sl@0
   101
#endif /* DBUS_BUILD_TESTS */
sl@0
   102
sl@0
   103
static void
sl@0
   104
test_pre_hook (void)
sl@0
   105
{
sl@0
   106
  
sl@0
   107
  if (_dbus_getenv ("DBUS_TEST_SELINUX")
sl@0
   108
      && (!bus_selinux_pre_init ()
sl@0
   109
	  || !bus_selinux_full_init ()))
sl@0
   110
    die ("could not init selinux support");
sl@0
   111
}
sl@0
   112
sl@0
   113
static char *progname = "";
sl@0
   114
static void
sl@0
   115
test_post_hook (void)
sl@0
   116
{
sl@0
   117
  if (_dbus_getenv ("DBUS_TEST_SELINUX"))
sl@0
   118
    bus_selinux_shutdown ();
sl@0
   119
  check_memleaks (progname);
sl@0
   120
}
sl@0
   121
sl@0
   122
int
sl@0
   123
main (int argc, char **argv)
sl@0
   124
{
sl@0
   125
#ifdef DBUS_BUILD_TESTS
sl@0
   126
  const char *dir;
sl@0
   127
  DBusString test_data_dir;
sl@0
   128
sl@0
   129
  progname = argv[0];
sl@0
   130
sl@0
   131
  if (argc > 1)
sl@0
   132
    dir = argv[1];
sl@0
   133
  else
sl@0
   134
    dir = _dbus_getenv ("DBUS_TEST_DATA");
sl@0
   135
sl@0
   136
  dir = "c:\\data\\dbus";
sl@0
   137
  
sl@0
   138
  if (dir == NULL)
sl@0
   139
    {
sl@0
   140
      fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
sl@0
   141
	  #ifdef __SYMBIAN32__
sl@0
   142
	  std_log(LOG_FILENAME_LINE, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
sl@0
   143
	  #endif
sl@0
   144
      return 1;
sl@0
   145
    }
sl@0
   146
sl@0
   147
  _dbus_string_init_const (&test_data_dir, dir);
sl@0
   148
sl@0
   149
  if (!_dbus_threads_init_debug ())
sl@0
   150
    die ("initializing debug threads");
sl@0
   151
 
sl@0
   152
  test_pre_hook ();
sl@0
   153
  printf ("%s: Running expire list test\n", argv[0]);
sl@0
   154
  #ifdef __SYMBIAN32__
sl@0
   155
  std_log(LOG_FILENAME_LINE, "%s: Running expire list test\n", argv[0]);
sl@0
   156
  #endif
sl@0
   157
  if (!bus_expire_list_test (&test_data_dir))
sl@0
   158
    die ("expire list");
sl@0
   159
  test_post_hook ();
sl@0
   160
 
sl@0
   161
  test_pre_hook ();
sl@0
   162
  printf ("%s: Running config file parser test\n", argv[0]);
sl@0
   163
  #ifdef __SYMBIAN32__
sl@0
   164
  std_log(LOG_FILENAME_LINE, "%s: Running config file parser test\n", argv[0]);
sl@0
   165
  #endif
sl@0
   166
  if (!bus_config_parser_test (&test_data_dir))
sl@0
   167
    die ("parser");
sl@0
   168
  test_post_hook ();
sl@0
   169
sl@0
   170
  test_pre_hook ();
sl@0
   171
  printf ("%s: Running policy test\n", argv[0]);
sl@0
   172
  #ifdef __SYMBIAN32__
sl@0
   173
  std_log(LOG_FILENAME_LINE, "%s: Running policy test\n", argv[0]);
sl@0
   174
  #endif
sl@0
   175
  if (!bus_policy_test (&test_data_dir))
sl@0
   176
    die ("policy");
sl@0
   177
  test_post_hook ();
sl@0
   178
sl@0
   179
  test_pre_hook ();
sl@0
   180
  printf ("%s: Running signals test\n", argv[0]);
sl@0
   181
  #ifdef __SYMBIAN32__
sl@0
   182
  std_log(LOG_FILENAME_LINE, "%s: Running signals test\n", argv[0]);
sl@0
   183
  #endif
sl@0
   184
  if (!bus_signals_test (&test_data_dir))
sl@0
   185
    die ("signals");
sl@0
   186
  test_post_hook ();
sl@0
   187
sl@0
   188
  test_pre_hook ();
sl@0
   189
  printf ("%s: Running SHA1 connection test\n", argv[0]);
sl@0
   190
  #ifdef __SYMBIAN32__
sl@0
   191
  std_log(LOG_FILENAME_LINE, "%s: Running SHA1 connection test\n", argv[0]);
sl@0
   192
  #endif
sl@0
   193
  if (!bus_dispatch_sha1_test (&test_data_dir))
sl@0
   194
    die ("sha1");
sl@0
   195
  test_post_hook ();
sl@0
   196
sl@0
   197
sl@0
   198
  test_pre_hook ();
sl@0
   199
  printf ("%s: Running service files reloading test\n", argv[0]);
sl@0
   200
  #ifdef __SYMBIAN32__
sl@0
   201
  std_log(LOG_FILENAME_LINE, "%s: Running service files reloading test\n", argv[0]);
sl@0
   202
  #endif
sl@0
   203
  if (!bus_activation_service_reload_test (&test_data_dir))
sl@0
   204
    die ("service reload");
sl@0
   205
  test_post_hook ();
sl@0
   206
sl@0
   207
  #ifdef __SYMBIAN32__
sl@0
   208
  std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]);
sl@0
   209
  #endif
sl@0
   210
  	
sl@0
   211
  test_pre_hook ();
sl@0
   212
  printf ("%s: Running message dispatch test\n", argv[0]);
sl@0
   213
  #ifdef __SYMBIAN32__
sl@0
   214
  std_log(LOG_FILENAME_LINE, "%s: Running message dispatch test\n", argv[0]);
sl@0
   215
  #endif
sl@0
   216
  if (!bus_dispatch_test (&test_data_dir)) 
sl@0
   217
    die ("dispatch");
sl@0
   218
  /*2 bytes of memory leak to be investigated*/
sl@0
   219
  //test_post_hook ();	
sl@0
   220
  printf ("%s: Success\n", argv[0]);
sl@0
   221
  #ifdef __SYMBIAN32__
sl@0
   222
	std_log(LOG_FILENAME_LINE, "%s: Success\n", argv[0]);
sl@0
   223
	
sl@0
   224
	create_xml(0);
sl@0
   225
  #endif
sl@0
   226
  return 0;
sl@0
   227
#else /* DBUS_BUILD_TESTS */
sl@0
   228
sl@0
   229
  printf ("Not compiled with test support\n");
sl@0
   230
  
sl@0
   231
  return 0;
sl@0
   232
#endif
sl@0
   233
}