1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
/* Simple utility code used by the regression tests.
*
* Copyright © 2008-2010 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright © 2008 Nokia Corporation
*
* Copying and distribution of this file, with or without modification,
* are permitted in any medium without royalty provided the copyright
* notice and this notice are preserved.
*/
#include "config.h"
#include "util.h"
#include <telepathy-glib/telepathy-glib.h>
#include <glib/gstdio.h>
#include <string.h>
#ifdef G_OS_UNIX
# include <unistd.h> /* for alarm() */
#endif
#ifdef HAVE_GIO_UNIX
#include <gio/gunixsocketaddress.h>
#include <gio/gunixconnection.h>
#endif
void
tp_tests_proxy_run_until_prepared (gpointer proxy,
const GQuark *features)
{
GError *error = NULL;
tp_tests_proxy_run_until_prepared_or_failed (proxy, features, &error);
g_assert_no_error (error);
}
/* A GAsyncReadyCallback whose user_data is a GAsyncResult **. It writes a
* reference to the result into that pointer. */
void
tp_tests_result_ready_cb (GObject *object,
GAsyncResult *res,
gpointer user_data)
{
GAsyncResult **result = user_data;
*result = g_object_ref (res);
}
/* Run until *result contains a result. Intended to be used with a pending
* async call that uses tp_tests_result_ready_cb. */
void
tp_tests_run_until_result (GAsyncResult **result)
{
/* not synchronous */
g_assert (*result == NULL);
while (*result == NULL)
g_main_context_iteration (NULL, TRUE);
}
gboolean
tp_tests_proxy_run_until_prepared_or_failed (gpointer proxy,
const GQuark *features,
GError **error)
{
GAsyncResult *result = NULL;
gboolean r;
tp_proxy_prepare_async (proxy, features, tp_tests_result_ready_cb, &result);
tp_tests_run_until_result (&result);
r = tp_proxy_prepare_finish (proxy, result, error);
g_object_unref (result);
return r;
}
static GTestDBus *test_dbus = NULL;
static void
start_dbus_session (void)
{
g_assert (test_dbus == NULL);
g_test_dbus_unset ();
/* GLib 2.36 does not unset STARTER env variables but tp-glib are using them.
* See https://bugzilla.gnome.org/show_bug.cgi?id=697348 */
g_unsetenv ("DBUS_STARTER_ADDRESS");
g_unsetenv ("DBUS_STARTER_BUS_TYPE");
test_dbus = g_test_dbus_new (G_TEST_DBUS_NONE);
g_test_dbus_add_service_dir (test_dbus, g_getenv ("TP_TESTS_SERVICES_DIR"));
g_test_dbus_up (test_dbus);
}
static void
stop_dbus_session (void)
{
g_assert (test_dbus != NULL);
g_test_dbus_down (test_dbus);
g_clear_object (&test_dbus);
}
gint
tp_tests_run_with_bus (void)
{
gint ret;
if (test_dbus != NULL)
return g_test_run ();
start_dbus_session ();
ret = g_test_run ();
stop_dbus_session ();
return ret;
}
TpDBusDaemon *
tp_tests_dbus_daemon_dup_or_die (void)
{
TpDBusDaemon *d;
if (test_dbus == NULL)
{
/* HACK: Some tests are not yet ported to GTest and thus are not using
* tp_tests_run_with_bus(). In that case we make sure to start the dbus
* session before aquiring the TpDBusDaemon and we stop the session when
* the daemon is disposed. In a perfect world this should not be needed.
*/
start_dbus_session ();
d = tp_dbus_daemon_dup (NULL);
g_object_weak_ref ((GObject *) d, (GWeakNotify) stop_dbus_session, NULL);
}
else
{
d = tp_dbus_daemon_dup (NULL);
}
/* In a shared library, this would be very bad (see fd.o #18832), but in a
* regression test that's going to be run under a temporary session bus,
* it's just what we want. */
if (d == NULL)
{
g_error ("Unable to connect to session bus");
}
return d;
}
static void
introspect_cb (TpProxy *proxy G_GNUC_UNUSED,
const gchar *xml G_GNUC_UNUSED,
const GError *error G_GNUC_UNUSED,
gpointer user_data,
GObject *weak_object G_GNUC_UNUSED)
{
g_main_loop_quit (user_data);
}
void
tp_tests_proxy_run_until_dbus_queue_processed (gpointer proxy)
{
GMainLoop *loop = g_main_loop_new (NULL, FALSE);
tp_cli_dbus_introspectable_call_introspect (proxy, -1, introspect_cb,
loop, NULL, NULL);
g_main_loop_run (loop);
g_main_loop_unref (loop);
}
void
_test_assert_empty_strv (const char *file,
int line,
gconstpointer strv)
{
const gchar * const *strings = strv;
if (strv != NULL && strings[0] != NULL)
{
guint i;
g_message ("%s:%d: expected empty strv, but got:", file, line);
for (i = 0; strings[i] != NULL; i++)
{
g_message ("* \"%s\"", strings[i]);
}
g_error ("%s:%d: strv wasn't empty (see above for contents",
file, line);
}
}
void
_tp_tests_assert_strv_equals (const char *file,
int line,
const char *expected_desc,
gconstpointer expected_strv,
const char *actual_desc,
gconstpointer actual_strv)
{
const gchar * const *expected = expected_strv;
const gchar * const *actual = actual_strv;
guint i;
g_assert (expected != NULL);
g_assert (actual != NULL);
for (i = 0; expected[i] != NULL || actual[i] != NULL; i++)
{
if (expected[i] == NULL)
{
g_error ("%s:%d: assertion failed: (%s)[%u] == (%s)[%u]: "
"NULL == %s", file, line, expected_desc, i,
actual_desc, i, actual[i]);
}
else if (actual[i] == NULL)
{
g_error ("%s:%d: assertion failed: (%s)[%u] == (%s)[%u]: "
"%s == NULL", file, line, expected_desc, i,
actual_desc, i, expected[i]);
}
else if (tp_strdiff (expected[i], actual[i]))
{
g_error ("%s:%d: assertion failed: (%s)[%u] == (%s)[%u]: "
"%s == %s", file, line, expected_desc, i,
actual_desc, i, expected[i], actual[i]);
}
}
}
void
_tp_tests_assert_bytes_equal (const gchar *file, int line,
GBytes *actual, gconstpointer expected_data,
gsize expected_length)
{
if (expected_length != g_bytes_get_size (actual))
{
g_error ("%s:%d: assertion failed: expected %"G_GSIZE_FORMAT
" bytes, got %"G_GSIZE_FORMAT,
file, line, expected_length, g_bytes_get_size (actual));
}
else if (memcmp (g_bytes_get_data (actual, NULL),
expected_data, expected_length) != 0)
{
g_error (
"%s:%d: assertion failed: expected data didn't match the actual data",
file, line);
}
}
void
tp_tests_create_conn (GType conn_type,
const gchar *account,
gboolean connect,
TpBaseConnection **service_conn,
TpConnection **client_conn)
{
TpDBusDaemon *dbus;
TpSimpleClientFactory *factory;
gchar *name;
gchar *conn_path;
GError *error = NULL;
g_assert (service_conn != NULL);
g_assert (client_conn != NULL);
dbus = tp_tests_dbus_daemon_dup_or_die ();
factory = (TpSimpleClientFactory *) tp_automatic_client_factory_new (dbus);
*service_conn = tp_tests_object_new_static_class (
conn_type,
"account", account,
"protocol", "simple",
NULL);
g_assert (*service_conn != NULL);
g_assert (tp_base_connection_register (*service_conn, "simple",
&name, &conn_path, &error));
g_assert_no_error (error);
*client_conn = tp_simple_client_factory_ensure_connection (factory,
conn_path, NULL, &error);
g_assert (*client_conn != NULL);
g_assert_no_error (error);
if (connect)
{
GQuark conn_features[] = { TP_CONNECTION_FEATURE_CONNECTED, 0 };
tp_cli_connection_call_connect (*client_conn, -1, NULL, NULL, NULL, NULL);
tp_tests_proxy_run_until_prepared (*client_conn, conn_features);
}
g_free (name);
g_free (conn_path);
g_object_unref (dbus);
g_object_unref (factory);
}
void
tp_tests_create_and_connect_conn (GType conn_type,
const gchar *account,
TpBaseConnection **service_conn,
TpConnection **client_conn)
{
tp_tests_create_conn (conn_type, account, TRUE, service_conn, client_conn);
}
/* This object exists solely so that tests/tests.supp can ignore "leaked"
* classes. */
gpointer
tp_tests_object_new_static_class (GType type,
...)
{
va_list ap;
GObject *object;
const gchar *first_property;
va_start (ap, type);
first_property = va_arg (ap, const gchar *);
object = g_object_new_valist (type, first_property, ap);
va_end (ap);
return object;
}
static gboolean
time_out (gpointer nil G_GNUC_UNUSED)
{
g_error ("Timed out");
g_assert_not_reached ();
return FALSE;
}
void
tp_tests_abort_after (guint sec)
{
gboolean debugger = FALSE;
gchar *contents;
if (g_file_get_contents ("/proc/self/status", &contents, NULL, NULL))
{
/* http://www.youtube.com/watch?v=SXmv8quf_xM */
#define TRACER_T "\nTracerPid:\t"
gchar *line = strstr (contents, TRACER_T);
if (line != NULL)
{
gchar *value = line + strlen (TRACER_T);
if (value[0] != '0' || value[1] != '\n')
debugger = TRUE;
}
g_free (contents);
}
if (g_getenv ("TP_TESTS_NO_TIMEOUT") != NULL || debugger)
return;
g_timeout_add_seconds (sec, time_out, NULL);
#ifdef G_OS_UNIX
/* On Unix, we can kill the process more reliably; this is a safety-catch
* in case it deadlocks or something, in which case the main loop won't be
* processed. The default handler for SIGALRM is process termination. */
alarm (sec + 2);
#endif
}
void
tp_tests_init (int *argc,
char ***argv)
{
tp_tests_abort_after (10);
tp_debug_set_flags ("all");
g_test_init (argc, argv, NULL);
}
void
_tp_destroy_socket_control_list (gpointer data)
{
GArray *tab = data;
g_array_unref (tab);
}
GValue *
_tp_create_local_socket (TpSocketAddressType address_type,
TpSocketAccessControl access_control,
GSocketService **service,
gchar **unix_address,
gchar **unix_tmpdir,
GError **error)
{
gboolean success;
GSocketAddress *address, *effective_address;
GValue *address_gvalue;
g_assert (service != NULL);
g_assert (unix_address != NULL);
switch (access_control)
{
case TP_SOCKET_ACCESS_CONTROL_LOCALHOST:
case TP_SOCKET_ACCESS_CONTROL_CREDENTIALS:
case TP_SOCKET_ACCESS_CONTROL_PORT:
break;
default:
g_assert_not_reached ();
}
switch (address_type)
{
#ifdef HAVE_GIO_UNIX
case TP_SOCKET_ADDRESS_TYPE_UNIX:
{
GError *e = NULL;
gchar *dir = g_dir_make_tmp ("tp-glib-tests.XXXXXX", &e);
gchar *name;
g_assert_no_error (e);
name = g_build_filename (dir, "s", NULL);
address = g_unix_socket_address_new (name);
g_free (name);
if (unix_tmpdir != NULL)
*unix_tmpdir = dir;
else
g_free (dir);
break;
}
#endif
case TP_SOCKET_ADDRESS_TYPE_IPV4:
case TP_SOCKET_ADDRESS_TYPE_IPV6:
{
GInetAddress *localhost;
localhost = g_inet_address_new_loopback (
address_type == TP_SOCKET_ADDRESS_TYPE_IPV4 ?
G_SOCKET_FAMILY_IPV4 : G_SOCKET_FAMILY_IPV6);
address = g_inet_socket_address_new (localhost, 0);
g_object_unref (localhost);
break;
}
default:
g_assert_not_reached ();
}
*service = g_socket_service_new ();
success = g_socket_listener_add_address (
G_SOCKET_LISTENER (*service),
address, G_SOCKET_TYPE_STREAM,
G_SOCKET_PROTOCOL_DEFAULT,
NULL, &effective_address, NULL);
g_assert (success);
switch (address_type)
{
#ifdef HAVE_GIO_UNIX
case TP_SOCKET_ADDRESS_TYPE_UNIX:
*unix_address = g_strdup (g_unix_socket_address_get_path (
G_UNIX_SOCKET_ADDRESS (effective_address)));
address_gvalue = tp_g_value_slice_new_bytes (
g_unix_socket_address_get_path_len (
G_UNIX_SOCKET_ADDRESS (effective_address)),
g_unix_socket_address_get_path (
G_UNIX_SOCKET_ADDRESS (effective_address)));
break;
#endif
case TP_SOCKET_ADDRESS_TYPE_IPV4:
case TP_SOCKET_ADDRESS_TYPE_IPV6:
*unix_address = NULL;
address_gvalue = tp_g_value_slice_new_take_boxed (
TP_STRUCT_TYPE_SOCKET_ADDRESS_IPV4,
dbus_g_type_specialized_construct (
TP_STRUCT_TYPE_SOCKET_ADDRESS_IPV4));
dbus_g_type_struct_set (address_gvalue,
0, address_type == TP_SOCKET_ADDRESS_TYPE_IPV4 ?
"127.0.0.1" : "::1",
1, g_inet_socket_address_get_port (
G_INET_SOCKET_ADDRESS (effective_address)),
G_MAXUINT);
break;
default:
g_assert_not_reached ();
}
g_object_unref (address);
g_object_unref (effective_address);
return address_gvalue;
}
void
tp_tests_connection_assert_disconnect_succeeds (TpConnection *connection)
{
GAsyncResult *result = NULL;
GError *error = NULL;
gboolean ok;
tp_connection_disconnect_async (connection, tp_tests_result_ready_cb,
&result);
tp_tests_run_until_result (&result);
ok = tp_connection_disconnect_finish (connection, result, &error);
g_assert_no_error (error);
g_assert (ok);
g_object_unref (result);
}
static void
one_contact_cb (GObject *object,
GAsyncResult *result,
gpointer user_data)
{
TpConnection *connection = (TpConnection *) object;
TpContact **contact_loc = user_data;
GError *error = NULL;
*contact_loc = tp_connection_dup_contact_by_id_finish (connection, result,
&error);
g_assert_no_error (error);
g_assert (TP_IS_CONTACT (*contact_loc));
}
TpContact *
tp_tests_connection_run_until_contact_by_id (TpConnection *connection,
const gchar *id,
guint n_features,
const TpContactFeature *features)
{
TpContact *contact = NULL;
tp_connection_dup_contact_by_id_async (connection, id, n_features, features,
one_contact_cb, &contact);
while (contact == NULL)
g_main_context_iteration (NULL, TRUE);
return contact;
}
|