os/ossrv/ofdbus/dbus-glib/dbus/dbus-gtest.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gtest.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,159 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* dbus-test.c  Program to run all tests
     1.6 + *
     1.7 + * Copyright (C) 2002, 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 +#ifndef __SYMBIAN32__
    1.28 +#include <config.h>
    1.29 +#else
    1.30 +#include "config.h"
    1.31 +#endif //__SYMBIAN32__
    1.32 +#include "dbus-gtest.h"
    1.33 +#include <stdio.h>
    1.34 +#include <stdlib.h>
    1.35 +#include <glib.h>
    1.36 +
    1.37 +#ifdef __SYMBIAN32__
    1.38 +#define LOG_FILE "c:\\logs\\dbus_gtest_main_log1.txt"
    1.39 +#include "std_log_result.h"
    1.40 +#define LOG_FILENAME_LINE __FILE__, __LINE__
    1.41 +
    1.42 +void create_xml(int result)
    1.43 +	{
    1.44 +	if(result)
    1.45 +		assert_failed = 1;
    1.46 +	
    1.47 +	testResultXml("dbus_gtest_main");
    1.48 +    close_log_file();
    1.49 +	}
    1.50 +#endif
    1.51 +
    1.52 +
    1.53 +#ifdef DBUS_BUILD_TESTS
    1.54 +static void
    1.55 +die (const char *failure)
    1.56 +{
    1.57 +  fprintf (stderr, "Unit test failed: %s\n", failure);
    1.58 +  #ifdef __SYMBIAN32__
    1.59 +  std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure);
    1.60 +  create_xml(1);
    1.61 +  #endif
    1.62 +  exit (1);
    1.63 +}
    1.64 +#endif /* DBUS_BUILD_TESTS */
    1.65 +
    1.66 +/**
    1.67 + * An exported symbol to be run in order to execute
    1.68 + * unit tests. Should not be used by
    1.69 + * any app other than our test app, this symbol
    1.70 + * won't exist in some builds of the library.
    1.71 + * (with --enable-tests=no)
    1.72 + *
    1.73 + * @param test_data_dir the directory with test data (test/data normally)
    1.74 + */
    1.75 + 	#ifdef __SYMBIAN32__
    1.76 +	EXPORT_C
    1.77 +	#endif
    1.78 +void
    1.79 +dbus_glib_internal_do_not_use_run_tests (const char *test_data_dir)
    1.80 +{
    1.81 +#ifdef DBUS_BUILD_TESTS  
    1.82 +  if (test_data_dir == NULL)
    1.83 +    test_data_dir = g_getenv ("DBUS_TEST_DATA");
    1.84 +
    1.85 +  if (test_data_dir != NULL)
    1.86 +  #ifdef __SYMBIAN32__
    1.87 +  {
    1.88 +  #endif
    1.89 +    printf ("Test data in %s\n", test_data_dir);
    1.90 +	#ifdef __SYMBIAN32__
    1.91 +	std_log(LOG_FILENAME_LINE, "Test data in %s\n", test_data_dir);
    1.92 +	}
    1.93 +	#endif
    1.94 +  else
    1.95 +  #ifdef __SYMBIAN32__
    1.96 +  {
    1.97 +  #endif
    1.98 +    printf ("No test data!\n");
    1.99 +	#ifdef __SYMBIAN32__
   1.100 +	std_log(LOG_FILENAME_LINE, "No test data!\n");
   1.101 +	}
   1.102 +	#endif
   1.103 +
   1.104 +  g_type_init ();
   1.105 +
   1.106 +  printf ("%s: running GValue util tests\n", "dbus-glib-test");
   1.107 +  #ifdef __SYMBIAN32__
   1.108 +  std_log(LOG_FILENAME_LINE, "%s: running GValue util tests\n", "dbus-glib-test");
   1.109 +  #endif
   1.110 +  if (!_dbus_gvalue_utils_test (test_data_dir))
   1.111 +    die ("gvalue utils");
   1.112 +
   1.113 +  printf ("%s: running GValue tests\n", "dbus-glib-test");
   1.114 +  #ifdef __SYMBIAN32__
   1.115 +  std_log(LOG_FILENAME_LINE, "%s: running GValue tests\n", "dbus-glib-test");
   1.116 +  #endif
   1.117 +  if (!_dbus_gvalue_test (test_data_dir))
   1.118 +    die ("gvalue utils");
   1.119 +
   1.120 +  printf ("%s: running glib tests\n", "dbus-glib-test");
   1.121 +  #ifdef __SYMBIAN32__
   1.122 +  std_log(LOG_FILENAME_LINE, "%s: running glib tests\n", "dbus-glib-test");
   1.123 +  #endif
   1.124 +  if (!_dbus_glib_test (test_data_dir))
   1.125 +    die ("glib");
   1.126 +  
   1.127 +  printf ("%s: running utils tests\n", "dbus-glib-test");
   1.128 +  #ifdef __SYMBIAN32__
   1.129 +  std_log(LOG_FILENAME_LINE, "%s: running utils tests\n", "dbus-glib-test");
   1.130 +  #endif
   1.131 +  if (!_dbus_gutils_test (test_data_dir))
   1.132 +    die ("gutils");
   1.133 +  
   1.134 +  printf ("%s: running mainloop integration tests\n", "dbus-glib-test");
   1.135 +  #ifdef __SYMBIAN32__
   1.136 +  std_log(LOG_FILENAME_LINE, "%s: running mainloop integration tests\n", "dbus-glib-test");
   1.137 +  #endif
   1.138 +  if (!_dbus_gmain_test (test_data_dir))
   1.139 +    die ("gmain");
   1.140 +
   1.141 +  printf ("%s: running GObject tests\n", "dbus-glib-test");
   1.142 +  #ifdef __SYMBIAN32__
   1.143 +  std_log(LOG_FILENAME_LINE, "%s: running GObject tests\n", "dbus-glib-test");
   1.144 +  #endif
   1.145 +  if (!_dbus_gobject_test (test_data_dir))
   1.146 +    die ("gobject");
   1.147 +  
   1.148 +  printf ("%s: completed successfully\n", "dbus-glib-test");
   1.149 +  #ifdef __SYMBIAN32__
   1.150 +  std_log(LOG_FILENAME_LINE, "%s: completed successfully\n", "dbus-glib-test");
   1.151 +  
   1.152 +  create_xml(0);
   1.153 +  #endif
   1.154 +#else
   1.155 +  printf ("Not compiled with unit tests, not running any\n");
   1.156 +  #ifdef __SYMBIAN32__
   1.157 +  std_log(LOG_FILENAME_LINE, "Not compiled with unit tests, not running any\n");
   1.158 +  #endif
   1.159 +#endif
   1.160 +}
   1.161 +
   1.162 +