sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-test.c Program to run all tests
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2002, 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 |
#ifndef __SYMBIAN32__
|
sl@0
|
25 |
#include <config.h>
|
sl@0
|
26 |
#else
|
sl@0
|
27 |
#include "config.h"
|
sl@0
|
28 |
#endif //__SYMBIAN32__
|
sl@0
|
29 |
#include "dbus-gtest.h"
|
sl@0
|
30 |
#include <stdio.h>
|
sl@0
|
31 |
#include <stdlib.h>
|
sl@0
|
32 |
#include <glib.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef __SYMBIAN32__
|
sl@0
|
35 |
#define LOG_FILE "c:\\logs\\dbus_gtest_main_log1.txt"
|
sl@0
|
36 |
#include "std_log_result.h"
|
sl@0
|
37 |
#define LOG_FILENAME_LINE __FILE__, __LINE__
|
sl@0
|
38 |
|
sl@0
|
39 |
void create_xml(int result)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
if(result)
|
sl@0
|
42 |
assert_failed = 1;
|
sl@0
|
43 |
|
sl@0
|
44 |
testResultXml("dbus_gtest_main");
|
sl@0
|
45 |
close_log_file();
|
sl@0
|
46 |
}
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
#ifdef DBUS_BUILD_TESTS
|
sl@0
|
51 |
static void
|
sl@0
|
52 |
die (const char *failure)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
fprintf (stderr, "Unit test failed: %s\n", failure);
|
sl@0
|
55 |
#ifdef __SYMBIAN32__
|
sl@0
|
56 |
std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure);
|
sl@0
|
57 |
create_xml(1);
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
exit (1);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
#endif /* DBUS_BUILD_TESTS */
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
* An exported symbol to be run in order to execute
|
sl@0
|
65 |
* unit tests. Should not be used by
|
sl@0
|
66 |
* any app other than our test app, this symbol
|
sl@0
|
67 |
* won't exist in some builds of the library.
|
sl@0
|
68 |
* (with --enable-tests=no)
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* @param test_data_dir the directory with test data (test/data normally)
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
#ifdef __SYMBIAN32__
|
sl@0
|
73 |
EXPORT_C
|
sl@0
|
74 |
#endif
|
sl@0
|
75 |
void
|
sl@0
|
76 |
dbus_glib_internal_do_not_use_run_tests (const char *test_data_dir)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
#ifdef DBUS_BUILD_TESTS
|
sl@0
|
79 |
if (test_data_dir == NULL)
|
sl@0
|
80 |
test_data_dir = g_getenv ("DBUS_TEST_DATA");
|
sl@0
|
81 |
|
sl@0
|
82 |
if (test_data_dir != NULL)
|
sl@0
|
83 |
#ifdef __SYMBIAN32__
|
sl@0
|
84 |
{
|
sl@0
|
85 |
#endif
|
sl@0
|
86 |
printf ("Test data in %s\n", test_data_dir);
|
sl@0
|
87 |
#ifdef __SYMBIAN32__
|
sl@0
|
88 |
std_log(LOG_FILENAME_LINE, "Test data in %s\n", test_data_dir);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
#endif
|
sl@0
|
91 |
else
|
sl@0
|
92 |
#ifdef __SYMBIAN32__
|
sl@0
|
93 |
{
|
sl@0
|
94 |
#endif
|
sl@0
|
95 |
printf ("No test data!\n");
|
sl@0
|
96 |
#ifdef __SYMBIAN32__
|
sl@0
|
97 |
std_log(LOG_FILENAME_LINE, "No test data!\n");
|
sl@0
|
98 |
}
|
sl@0
|
99 |
#endif
|
sl@0
|
100 |
|
sl@0
|
101 |
g_type_init ();
|
sl@0
|
102 |
|
sl@0
|
103 |
printf ("%s: running GValue util tests\n", "dbus-glib-test");
|
sl@0
|
104 |
#ifdef __SYMBIAN32__
|
sl@0
|
105 |
std_log(LOG_FILENAME_LINE, "%s: running GValue util tests\n", "dbus-glib-test");
|
sl@0
|
106 |
#endif
|
sl@0
|
107 |
if (!_dbus_gvalue_utils_test (test_data_dir))
|
sl@0
|
108 |
die ("gvalue utils");
|
sl@0
|
109 |
|
sl@0
|
110 |
printf ("%s: running GValue tests\n", "dbus-glib-test");
|
sl@0
|
111 |
#ifdef __SYMBIAN32__
|
sl@0
|
112 |
std_log(LOG_FILENAME_LINE, "%s: running GValue tests\n", "dbus-glib-test");
|
sl@0
|
113 |
#endif
|
sl@0
|
114 |
if (!_dbus_gvalue_test (test_data_dir))
|
sl@0
|
115 |
die ("gvalue utils");
|
sl@0
|
116 |
|
sl@0
|
117 |
printf ("%s: running glib tests\n", "dbus-glib-test");
|
sl@0
|
118 |
#ifdef __SYMBIAN32__
|
sl@0
|
119 |
std_log(LOG_FILENAME_LINE, "%s: running glib tests\n", "dbus-glib-test");
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
if (!_dbus_glib_test (test_data_dir))
|
sl@0
|
122 |
die ("glib");
|
sl@0
|
123 |
|
sl@0
|
124 |
printf ("%s: running utils tests\n", "dbus-glib-test");
|
sl@0
|
125 |
#ifdef __SYMBIAN32__
|
sl@0
|
126 |
std_log(LOG_FILENAME_LINE, "%s: running utils tests\n", "dbus-glib-test");
|
sl@0
|
127 |
#endif
|
sl@0
|
128 |
if (!_dbus_gutils_test (test_data_dir))
|
sl@0
|
129 |
die ("gutils");
|
sl@0
|
130 |
|
sl@0
|
131 |
printf ("%s: running mainloop integration tests\n", "dbus-glib-test");
|
sl@0
|
132 |
#ifdef __SYMBIAN32__
|
sl@0
|
133 |
std_log(LOG_FILENAME_LINE, "%s: running mainloop integration tests\n", "dbus-glib-test");
|
sl@0
|
134 |
#endif
|
sl@0
|
135 |
if (!_dbus_gmain_test (test_data_dir))
|
sl@0
|
136 |
die ("gmain");
|
sl@0
|
137 |
|
sl@0
|
138 |
printf ("%s: running GObject tests\n", "dbus-glib-test");
|
sl@0
|
139 |
#ifdef __SYMBIAN32__
|
sl@0
|
140 |
std_log(LOG_FILENAME_LINE, "%s: running GObject tests\n", "dbus-glib-test");
|
sl@0
|
141 |
#endif
|
sl@0
|
142 |
if (!_dbus_gobject_test (test_data_dir))
|
sl@0
|
143 |
die ("gobject");
|
sl@0
|
144 |
|
sl@0
|
145 |
printf ("%s: completed successfully\n", "dbus-glib-test");
|
sl@0
|
146 |
#ifdef __SYMBIAN32__
|
sl@0
|
147 |
std_log(LOG_FILENAME_LINE, "%s: completed successfully\n", "dbus-glib-test");
|
sl@0
|
148 |
|
sl@0
|
149 |
create_xml(0);
|
sl@0
|
150 |
#endif
|
sl@0
|
151 |
#else
|
sl@0
|
152 |
printf ("Not compiled with unit tests, not running any\n");
|
sl@0
|
153 |
#ifdef __SYMBIAN32__
|
sl@0
|
154 |
std_log(LOG_FILENAME_LINE, "Not compiled with unit tests, not running any\n");
|
sl@0
|
155 |
#endif
|
sl@0
|
156 |
#endif
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
|