1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus/bus/test.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,354 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* test.c unit test routines
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 +#ifndef __SYMBIAN32__
1.28 +#include <config.h>
1.29 +#else
1.30 +#include "config.h"
1.31 +#endif //__SYMBIAN32__
1.32 +
1.33 +#ifdef DBUS_BUILD_TESTS
1.34 +#include "test.h"
1.35 +#ifndef __SYMBIAN32__
1.36 +#include <dbus/dbus-internals.h>
1.37 +#include <dbus/dbus-list.h>
1.38 +#else
1.39 +#include "dbus-internals.h"
1.40 +#include "dbus-list.h"
1.41 +#endif //__SYMBIAN32__
1.42 +
1.43 +/* The "debug client" watch/timeout handlers don't dispatch messages,
1.44 + * as we manually pull them in order to verify them. This is why they
1.45 + * are different from the real handlers in connection.c
1.46 + */
1.47 +static DBusList *clients = NULL;
1.48 +static DBusLoop *client_loop = NULL;
1.49 +
1.50 +static dbus_bool_t
1.51 +client_watch_callback (DBusWatch *watch,
1.52 + unsigned int condition,
1.53 + void *data)
1.54 +{
1.55 + /* FIXME this can be done in dbus-mainloop.c
1.56 + * if the code in activation.c for the babysitter
1.57 + * watch handler is fixed.
1.58 + */
1.59 +
1.60 + return dbus_watch_handle (watch, condition);
1.61 +}
1.62 +
1.63 +static dbus_bool_t
1.64 +add_client_watch (DBusWatch *watch,
1.65 + void *data)
1.66 +{
1.67 + DBusConnection *connection = data;
1.68 +
1.69 + return _dbus_loop_add_watch (client_loop,
1.70 + watch, client_watch_callback, connection,
1.71 + NULL);
1.72 +}
1.73 +
1.74 +static void
1.75 +remove_client_watch (DBusWatch *watch,
1.76 + void *data)
1.77 +{
1.78 + DBusConnection *connection = data;
1.79 +
1.80 + _dbus_loop_remove_watch (client_loop,
1.81 + watch, client_watch_callback, connection);
1.82 +}
1.83 +
1.84 +static void
1.85 +client_timeout_callback (DBusTimeout *timeout,
1.86 + void *data)
1.87 +{
1.88 + DBusConnection *connection = data;
1.89 +
1.90 + dbus_connection_ref (connection);
1.91 +
1.92 + /* can return FALSE on OOM but we just let it fire again later */
1.93 + dbus_timeout_handle (timeout);
1.94 +
1.95 + dbus_connection_unref (connection);
1.96 +}
1.97 +
1.98 +static dbus_bool_t
1.99 +add_client_timeout (DBusTimeout *timeout,
1.100 + void *data)
1.101 +{
1.102 + DBusConnection *connection = data;
1.103 +
1.104 + return _dbus_loop_add_timeout (client_loop, timeout, client_timeout_callback, connection, NULL);
1.105 +}
1.106 +
1.107 +static void
1.108 +remove_client_timeout (DBusTimeout *timeout,
1.109 + void *data)
1.110 +{
1.111 + DBusConnection *connection = data;
1.112 +
1.113 + _dbus_loop_remove_timeout (client_loop, timeout, client_timeout_callback, connection);
1.114 +}
1.115 +
1.116 +static DBusHandlerResult
1.117 +client_disconnect_filter (DBusConnection *connection,
1.118 + DBusMessage *message,
1.119 + void *user_data)
1.120 +{
1.121 + if (!dbus_message_is_signal (message,
1.122 + DBUS_INTERFACE_LOCAL,
1.123 + "Disconnected"))
1.124 + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1.125 +
1.126 + _dbus_verbose ("Removing client %p in disconnect handler\n",
1.127 + connection);
1.128 +
1.129 + _dbus_list_remove (&clients, connection);
1.130 +
1.131 + dbus_connection_unref (connection);
1.132 +
1.133 + if (clients == NULL)
1.134 + {
1.135 + _dbus_loop_unref (client_loop);
1.136 + client_loop = NULL;
1.137 + }
1.138 +
1.139 + return DBUS_HANDLER_RESULT_HANDLED;
1.140 +}
1.141 +
1.142 +dbus_bool_t
1.143 +bus_setup_debug_client (DBusConnection *connection)
1.144 +{
1.145 + dbus_bool_t retval;
1.146 +
1.147 + if (!dbus_connection_add_filter (connection,
1.148 + client_disconnect_filter,
1.149 + NULL, NULL))
1.150 + return FALSE;
1.151 +
1.152 + retval = FALSE;
1.153 +
1.154 + if (client_loop == NULL)
1.155 + {
1.156 + client_loop = _dbus_loop_new ();
1.157 + if (client_loop == NULL)
1.158 + goto out;
1.159 + }
1.160 +
1.161 + if (!dbus_connection_set_watch_functions (connection,
1.162 + add_client_watch,
1.163 + remove_client_watch,
1.164 + NULL,
1.165 + connection,
1.166 + NULL))
1.167 + goto out;
1.168 +
1.169 + if (!dbus_connection_set_timeout_functions (connection,
1.170 + add_client_timeout,
1.171 + remove_client_timeout,
1.172 + NULL,
1.173 + connection, NULL))
1.174 + goto out;
1.175 +
1.176 + if (!_dbus_list_append (&clients, connection))
1.177 + goto out;
1.178 +
1.179 + retval = TRUE;
1.180 +
1.181 + out:
1.182 + if (!retval)
1.183 + {
1.184 + dbus_connection_remove_filter (connection,
1.185 + client_disconnect_filter,
1.186 + NULL);
1.187 +
1.188 + dbus_connection_set_watch_functions (connection,
1.189 + NULL, NULL, NULL, NULL, NULL);
1.190 + dbus_connection_set_timeout_functions (connection,
1.191 + NULL, NULL, NULL, NULL, NULL);
1.192 +
1.193 + _dbus_list_remove_last (&clients, connection);
1.194 +
1.195 + if (clients == NULL)
1.196 + {
1.197 + _dbus_loop_unref (client_loop);
1.198 + client_loop = NULL;
1.199 + }
1.200 + }
1.201 +
1.202 + return retval;
1.203 +}
1.204 +
1.205 +void
1.206 +bus_test_clients_foreach (BusConnectionForeachFunction function,
1.207 + void *data)
1.208 +{
1.209 + DBusList *link;
1.210 +
1.211 + link = _dbus_list_get_first_link (&clients);
1.212 + while (link != NULL)
1.213 + {
1.214 + DBusConnection *connection = link->data;
1.215 + DBusList *next = _dbus_list_get_next_link (&clients, link);
1.216 +
1.217 + if (!(* function) (connection, data))
1.218 + break;
1.219 +
1.220 + link = next;
1.221 + }
1.222 +}
1.223 +
1.224 +dbus_bool_t
1.225 +bus_test_client_listed (DBusConnection *connection)
1.226 +{
1.227 + DBusList *link;
1.228 +
1.229 + link = _dbus_list_get_first_link (&clients);
1.230 + while (link != NULL)
1.231 + {
1.232 + DBusConnection *c = link->data;
1.233 + DBusList *next = _dbus_list_get_next_link (&clients, link);
1.234 +
1.235 + if (c == connection)
1.236 + return TRUE;
1.237 +
1.238 + link = next;
1.239 + }
1.240 +
1.241 + return FALSE;
1.242 +}
1.243 +
1.244 +void
1.245 +bus_test_run_clients_loop (dbus_bool_t block_once)
1.246 +{
1.247 + if (client_loop == NULL)
1.248 + return;
1.249 +
1.250 + _dbus_verbose ("---> Dispatching on \"client side\"\n");
1.251 +
1.252 + /* dispatch before we block so pending dispatches
1.253 + * won't make our block return early
1.254 + */
1.255 + _dbus_loop_dispatch (client_loop);
1.256 +
1.257 + /* Do one blocking wait, since we're expecting data */
1.258 + if (block_once)
1.259 + {
1.260 + _dbus_verbose ("---> blocking on \"client side\"\n");
1.261 + _dbus_loop_iterate (client_loop, TRUE);
1.262 + }
1.263 +
1.264 + /* Then mop everything up */
1.265 + while (_dbus_loop_iterate (client_loop, FALSE))
1.266 + ;
1.267 +
1.268 + _dbus_verbose ("---> Done dispatching on \"client side\"\n");
1.269 +}
1.270 +
1.271 +void
1.272 +bus_test_run_bus_loop (BusContext *context,
1.273 + dbus_bool_t block_once)
1.274 +{
1.275 + _dbus_verbose ("---> Dispatching on \"server side\"\n");
1.276 +
1.277 + /* dispatch before we block so pending dispatches
1.278 + * won't make our block return early
1.279 + */
1.280 + _dbus_loop_dispatch (bus_context_get_loop (context));
1.281 +
1.282 + /* Do one blocking wait, since we're expecting data */
1.283 + if (block_once)
1.284 + {
1.285 + _dbus_verbose ("---> blocking on \"server side\"\n");
1.286 + _dbus_loop_iterate (bus_context_get_loop (context), TRUE);
1.287 + }
1.288 +
1.289 + /* Then mop everything up */
1.290 + while (_dbus_loop_iterate (bus_context_get_loop (context), FALSE))
1.291 + ;
1.292 +
1.293 + _dbus_verbose ("---> Done dispatching on \"server side\"\n");
1.294 +}
1.295 +
1.296 +void
1.297 +bus_test_run_everything (BusContext *context)
1.298 +{
1.299 + while (_dbus_loop_iterate (bus_context_get_loop (context), FALSE) ||
1.300 + (client_loop == NULL || _dbus_loop_iterate (client_loop, FALSE)))
1.301 + ;
1.302 +}
1.303 +
1.304 +BusContext*
1.305 +bus_context_new_test (const DBusString *test_data_dir,
1.306 + const char *filename)
1.307 +{
1.308 + DBusError error;
1.309 + DBusString config_file;
1.310 + DBusString relative;
1.311 + BusContext *context;
1.312 +
1.313 + if (!_dbus_string_init (&config_file))
1.314 + {
1.315 + _dbus_warn ("No memory\n");
1.316 + return NULL;
1.317 + }
1.318 +
1.319 + if (!_dbus_string_copy (test_data_dir, 0,
1.320 + &config_file, 0))
1.321 + {
1.322 + _dbus_warn ("No memory\n");
1.323 + _dbus_string_free (&config_file);
1.324 + return NULL;
1.325 + }
1.326 +
1.327 + _dbus_string_init_const (&relative, filename);
1.328 +
1.329 + if (!_dbus_concat_dir_and_file (&config_file, &relative))
1.330 + {
1.331 + _dbus_warn ("No memory\n");
1.332 + _dbus_string_free (&config_file);
1.333 + return NULL;
1.334 + }
1.335 +
1.336 + dbus_error_init (&error);
1.337 + context = bus_context_new (&config_file, FALSE, -1, -1, &error);
1.338 + if (context == NULL)
1.339 + {
1.340 + _DBUS_ASSERT_ERROR_IS_SET (&error);
1.341 +
1.342 + _dbus_warn ("Failed to create debug bus context from configuration file %s: %s\n",
1.343 + filename, error.message);
1.344 +
1.345 + dbus_error_free (&error);
1.346 +
1.347 + _dbus_string_free (&config_file);
1.348 +
1.349 + return NULL;
1.350 + }
1.351 +
1.352 + _dbus_string_free (&config_file);
1.353 +
1.354 + return context;
1.355 +}
1.356 +
1.357 +#endif