First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* test.c unit test routines
4 * Copyright (C) 2003 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #endif //__SYMBIAN32__
30 #ifdef DBUS_BUILD_TESTS
33 #include <dbus/dbus-internals.h>
34 #include <dbus/dbus-list.h>
36 #include "dbus-internals.h"
37 #include "dbus-list.h"
38 #endif //__SYMBIAN32__
40 /* The "debug client" watch/timeout handlers don't dispatch messages,
41 * as we manually pull them in order to verify them. This is why they
42 * are different from the real handlers in connection.c
44 static DBusList *clients = NULL;
45 static DBusLoop *client_loop = NULL;
48 client_watch_callback (DBusWatch *watch,
49 unsigned int condition,
52 /* FIXME this can be done in dbus-mainloop.c
53 * if the code in activation.c for the babysitter
54 * watch handler is fixed.
57 return dbus_watch_handle (watch, condition);
61 add_client_watch (DBusWatch *watch,
64 DBusConnection *connection = data;
66 return _dbus_loop_add_watch (client_loop,
67 watch, client_watch_callback, connection,
72 remove_client_watch (DBusWatch *watch,
75 DBusConnection *connection = data;
77 _dbus_loop_remove_watch (client_loop,
78 watch, client_watch_callback, connection);
82 client_timeout_callback (DBusTimeout *timeout,
85 DBusConnection *connection = data;
87 dbus_connection_ref (connection);
89 /* can return FALSE on OOM but we just let it fire again later */
90 dbus_timeout_handle (timeout);
92 dbus_connection_unref (connection);
96 add_client_timeout (DBusTimeout *timeout,
99 DBusConnection *connection = data;
101 return _dbus_loop_add_timeout (client_loop, timeout, client_timeout_callback, connection, NULL);
105 remove_client_timeout (DBusTimeout *timeout,
108 DBusConnection *connection = data;
110 _dbus_loop_remove_timeout (client_loop, timeout, client_timeout_callback, connection);
113 static DBusHandlerResult
114 client_disconnect_filter (DBusConnection *connection,
115 DBusMessage *message,
118 if (!dbus_message_is_signal (message,
119 DBUS_INTERFACE_LOCAL,
121 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
123 _dbus_verbose ("Removing client %p in disconnect handler\n",
126 _dbus_list_remove (&clients, connection);
128 dbus_connection_unref (connection);
132 _dbus_loop_unref (client_loop);
136 return DBUS_HANDLER_RESULT_HANDLED;
140 bus_setup_debug_client (DBusConnection *connection)
144 if (!dbus_connection_add_filter (connection,
145 client_disconnect_filter,
151 if (client_loop == NULL)
153 client_loop = _dbus_loop_new ();
154 if (client_loop == NULL)
158 if (!dbus_connection_set_watch_functions (connection,
166 if (!dbus_connection_set_timeout_functions (connection,
168 remove_client_timeout,
173 if (!_dbus_list_append (&clients, connection))
181 dbus_connection_remove_filter (connection,
182 client_disconnect_filter,
185 dbus_connection_set_watch_functions (connection,
186 NULL, NULL, NULL, NULL, NULL);
187 dbus_connection_set_timeout_functions (connection,
188 NULL, NULL, NULL, NULL, NULL);
190 _dbus_list_remove_last (&clients, connection);
194 _dbus_loop_unref (client_loop);
203 bus_test_clients_foreach (BusConnectionForeachFunction function,
208 link = _dbus_list_get_first_link (&clients);
211 DBusConnection *connection = link->data;
212 DBusList *next = _dbus_list_get_next_link (&clients, link);
214 if (!(* function) (connection, data))
222 bus_test_client_listed (DBusConnection *connection)
226 link = _dbus_list_get_first_link (&clients);
229 DBusConnection *c = link->data;
230 DBusList *next = _dbus_list_get_next_link (&clients, link);
242 bus_test_run_clients_loop (dbus_bool_t block_once)
244 if (client_loop == NULL)
247 _dbus_verbose ("---> Dispatching on \"client side\"\n");
249 /* dispatch before we block so pending dispatches
250 * won't make our block return early
252 _dbus_loop_dispatch (client_loop);
254 /* Do one blocking wait, since we're expecting data */
257 _dbus_verbose ("---> blocking on \"client side\"\n");
258 _dbus_loop_iterate (client_loop, TRUE);
261 /* Then mop everything up */
262 while (_dbus_loop_iterate (client_loop, FALSE))
265 _dbus_verbose ("---> Done dispatching on \"client side\"\n");
269 bus_test_run_bus_loop (BusContext *context,
270 dbus_bool_t block_once)
272 _dbus_verbose ("---> Dispatching on \"server side\"\n");
274 /* dispatch before we block so pending dispatches
275 * won't make our block return early
277 _dbus_loop_dispatch (bus_context_get_loop (context));
279 /* Do one blocking wait, since we're expecting data */
282 _dbus_verbose ("---> blocking on \"server side\"\n");
283 _dbus_loop_iterate (bus_context_get_loop (context), TRUE);
286 /* Then mop everything up */
287 while (_dbus_loop_iterate (bus_context_get_loop (context), FALSE))
290 _dbus_verbose ("---> Done dispatching on \"server side\"\n");
294 bus_test_run_everything (BusContext *context)
296 while (_dbus_loop_iterate (bus_context_get_loop (context), FALSE) ||
297 (client_loop == NULL || _dbus_loop_iterate (client_loop, FALSE)))
302 bus_context_new_test (const DBusString *test_data_dir,
303 const char *filename)
306 DBusString config_file;
310 if (!_dbus_string_init (&config_file))
312 _dbus_warn ("No memory\n");
316 if (!_dbus_string_copy (test_data_dir, 0,
319 _dbus_warn ("No memory\n");
320 _dbus_string_free (&config_file);
324 _dbus_string_init_const (&relative, filename);
326 if (!_dbus_concat_dir_and_file (&config_file, &relative))
328 _dbus_warn ("No memory\n");
329 _dbus_string_free (&config_file);
333 dbus_error_init (&error);
334 context = bus_context_new (&config_file, FALSE, -1, -1, &error);
337 _DBUS_ASSERT_ERROR_IS_SET (&error);
339 _dbus_warn ("Failed to create debug bus context from configuration file %s: %s\n",
340 filename, error.message);
342 dbus_error_free (&error);
344 _dbus_string_free (&config_file);
349 _dbus_string_free (&config_file);