1 /* GLib testing framework examples and tests
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: David Zeuthen <davidz@redhat.com>
27 #include <sys/types.h>
30 #include "gdbus-tests.h"
32 /* all tests rely on a shared mainloop */
33 static GMainLoop *loop = NULL;
36 test_connection_quit_mainloop (gpointer user_data)
38 gboolean *quit_mainloop_fired = user_data;
39 *quit_mainloop_fired = TRUE;
40 g_main_loop_quit (loop);
44 /* ---------------------------------------------------------------------------------------------------- */
45 /* Connection life-cycle testing */
46 /* ---------------------------------------------------------------------------------------------------- */
48 static const GDBusInterfaceInfo boo_interface_info =
52 (GDBusMethodInfo **) NULL,
53 (GDBusSignalInfo **) NULL,
54 (GDBusPropertyInfo **) NULL,
58 static const GDBusInterfaceVTable boo_vtable =
60 NULL, /* _method_call */
61 NULL, /* _get_property */
62 NULL /* _set_property */
66 some_filter_func (GDBusConnection *connection,
67 GDBusMessage *message,
75 on_name_owner_changed (GDBusConnection *connection,
76 const gchar *sender_name,
77 const gchar *object_path,
78 const gchar *interface_name,
79 const gchar *signal_name,
86 a_gdestroynotify_that_sets_a_gboolean_to_true_and_quits_loop (gpointer user_data)
88 gboolean *val = user_data;
91 g_main_loop_quit (loop);
95 test_connection_life_cycle (void)
101 gboolean on_signal_registration_freed_called;
102 gboolean on_filter_freed_called;
103 gboolean on_register_object_freed_called;
104 gboolean quit_mainloop_fired;
105 guint quit_mainloop_id;
106 guint registration_id;
111 * Check for correct behavior when no bus is present
114 c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
115 _g_assert_error_domain (error, G_IO_ERROR);
116 g_assert (!g_dbus_error_is_remote_error (error));
117 g_assert (c == NULL);
118 g_error_free (error);
122 * Check for correct behavior when a bus is present
126 c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
127 g_assert_no_error (error);
128 g_assert (c != NULL);
129 g_assert (!g_dbus_connection_is_closed (c));
132 * Check that singleton handling work
134 c2 = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
135 g_assert_no_error (error);
136 g_assert (c2 != NULL);
141 * Check that private connections work
143 c2 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, &error);
144 g_assert_no_error (error);
145 g_assert (c2 != NULL);
149 c2 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, &error);
150 g_assert_no_error (error);
151 g_assert (c2 != NULL);
152 g_assert (!g_dbus_connection_is_closed (c2));
153 ret = g_dbus_connection_close_sync (c2, NULL, &error);
154 g_assert_no_error (error);
156 _g_assert_signal_received (c2, "closed");
157 g_assert (g_dbus_connection_is_closed (c2));
158 ret = g_dbus_connection_close_sync (c2, NULL, &error);
159 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED);
160 g_error_free (error);
165 * Check that the finalization code works
167 * (and that the GDestroyNotify for filters and objects and signal
168 * registrations are run as expected)
171 c2 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, &error);
172 g_assert_no_error (error);
173 g_assert (c2 != NULL);
174 /* signal registration */
175 on_signal_registration_freed_called = FALSE;
176 g_dbus_connection_signal_subscribe (c2,
177 "org.freedesktop.DBus", /* bus name */
178 "org.freedesktop.DBus", /* interface */
179 "NameOwnerChanged", /* member */
180 "/org/freesktop/DBus", /* path */
182 G_DBUS_SIGNAL_FLAGS_NONE,
183 on_name_owner_changed,
184 &on_signal_registration_freed_called,
185 a_gdestroynotify_that_sets_a_gboolean_to_true_and_quits_loop);
187 on_filter_freed_called = FALSE;
188 g_dbus_connection_add_filter (c2,
190 &on_filter_freed_called,
191 a_gdestroynotify_that_sets_a_gboolean_to_true_and_quits_loop);
192 /* object registration */
193 on_register_object_freed_called = FALSE;
195 registration_id = g_dbus_connection_register_object (c2,
197 (GDBusInterfaceInfo *) &boo_interface_info,
199 &on_register_object_freed_called,
200 a_gdestroynotify_that_sets_a_gboolean_to_true_and_quits_loop,
202 g_assert_no_error (error);
203 g_assert (registration_id > 0);
204 /* ok, finalize the connection and check that all the GDestroyNotify functions are invoked as expected */
206 quit_mainloop_fired = FALSE;
207 quit_mainloop_id = g_timeout_add (1000, test_connection_quit_mainloop, &quit_mainloop_fired);
210 if (on_signal_registration_freed_called &&
211 on_filter_freed_called &&
212 on_register_object_freed_called)
214 if (quit_mainloop_fired)
216 g_main_loop_run (loop);
218 g_source_remove (quit_mainloop_id);
219 g_assert (on_signal_registration_freed_called);
220 g_assert (on_filter_freed_called);
221 g_assert (on_register_object_freed_called);
222 g_assert (!quit_mainloop_fired);
225 * Check for correct behavior when the bus goes away
228 g_assert (!g_dbus_connection_is_closed (c));
229 g_dbus_connection_set_exit_on_close (c, FALSE);
231 if (!g_dbus_connection_is_closed (c))
232 _g_assert_signal_received (c, "closed");
233 g_assert (g_dbus_connection_is_closed (c));
235 _g_object_wait_for_single_ref (c);
239 /* ---------------------------------------------------------------------------------------------------- */
240 /* Test that sending and receiving messages work as expected */
241 /* ---------------------------------------------------------------------------------------------------- */
244 msg_cb_expect_error_disconnected (GDBusConnection *connection,
252 result = g_dbus_connection_call_finish (connection,
255 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED);
256 g_assert (!g_dbus_error_is_remote_error (error));
257 g_error_free (error);
258 g_assert (result == NULL);
260 g_main_loop_quit (loop);
264 msg_cb_expect_error_unknown_method (GDBusConnection *connection,
272 result = g_dbus_connection_call_finish (connection,
275 g_assert_error (error, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD);
276 g_assert (g_dbus_error_is_remote_error (error));
277 g_assert (result == NULL);
279 g_main_loop_quit (loop);
283 msg_cb_expect_success (GDBusConnection *connection,
291 result = g_dbus_connection_call_finish (connection,
294 g_assert_no_error (error);
295 g_assert (result != NULL);
296 g_variant_unref (result);
298 g_main_loop_quit (loop);
302 msg_cb_expect_error_cancelled (GDBusConnection *connection,
310 result = g_dbus_connection_call_finish (connection,
313 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED);
314 g_assert (!g_dbus_error_is_remote_error (error));
315 g_error_free (error);
316 g_assert (result == NULL);
318 g_main_loop_quit (loop);
322 msg_cb_expect_error_cancelled_2 (GDBusConnection *connection,
330 result = g_dbus_connection_call_finish (connection,
333 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED);
334 g_assert (!g_dbus_error_is_remote_error (error));
335 g_error_free (error);
336 g_assert (result == NULL);
338 g_main_loop_quit (loop);
341 /* ---------------------------------------------------------------------------------------------------- */
344 test_connection_send (void)
351 /* First, get an unopened connection */
352 c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
353 g_assert (c != NULL);
354 g_assert (!g_dbus_connection_is_closed (c));
357 * Check that we never actually send a message if the GCancellable
358 * is already cancelled - i.e. we should get #G_IO_ERROR_CANCELLED
359 * when the actual connection is not up.
361 ca = g_cancellable_new ();
362 g_cancellable_cancel (ca);
363 g_dbus_connection_call (c,
364 "org.freedesktop.DBus", /* bus_name */
365 "/org/freedesktop/DBus", /* object path */
366 "org.freedesktop.DBus", /* interface name */
367 "GetId", /* method name */
369 G_DBUS_CALL_FLAGS_NONE,
372 (GAsyncReadyCallback) msg_cb_expect_error_cancelled,
374 g_main_loop_run (loop);
378 * Check that we get a reply to the GetId() method call.
380 g_dbus_connection_call (c,
381 "org.freedesktop.DBus", /* bus_name */
382 "/org/freedesktop/DBus", /* object path */
383 "org.freedesktop.DBus", /* interface name */
384 "GetId", /* method name */
386 G_DBUS_CALL_FLAGS_NONE,
389 (GAsyncReadyCallback) msg_cb_expect_success,
391 g_main_loop_run (loop);
394 * Check that we get an error reply to the NonExistantMethod() method call.
396 g_dbus_connection_call (c,
397 "org.freedesktop.DBus", /* bus_name */
398 "/org/freedesktop/DBus", /* object path */
399 "org.freedesktop.DBus", /* interface name */
400 "NonExistantMethod", /* method name */
402 G_DBUS_CALL_FLAGS_NONE,
405 (GAsyncReadyCallback) msg_cb_expect_error_unknown_method,
407 g_main_loop_run (loop);
410 * Check that cancellation works when the message is already in flight.
412 ca = g_cancellable_new ();
413 g_dbus_connection_call (c,
414 "org.freedesktop.DBus", /* bus_name */
415 "/org/freedesktop/DBus", /* object path */
416 "org.freedesktop.DBus", /* interface name */
417 "GetId", /* method name */
419 G_DBUS_CALL_FLAGS_NONE,
422 (GAsyncReadyCallback) msg_cb_expect_error_cancelled_2,
424 g_cancellable_cancel (ca);
425 g_main_loop_run (loop);
429 * Check that we get an error when sending to a connection that is disconnected.
431 g_dbus_connection_set_exit_on_close (c, FALSE);
433 _g_assert_signal_received (c, "closed");
434 g_assert (g_dbus_connection_is_closed (c));
436 g_dbus_connection_call (c,
437 "org.freedesktop.DBus", /* bus_name */
438 "/org/freedesktop/DBus", /* object path */
439 "org.freedesktop.DBus", /* interface name */
440 "GetId", /* method name */
442 G_DBUS_CALL_FLAGS_NONE,
445 (GAsyncReadyCallback) msg_cb_expect_error_disconnected,
447 g_main_loop_run (loop);
449 _g_object_wait_for_single_ref (c);
453 /* ---------------------------------------------------------------------------------------------------- */
454 /* Connection signal tests */
455 /* ---------------------------------------------------------------------------------------------------- */
458 test_connection_signal_handler (GDBusConnection *connection,
459 const gchar *sender_name,
460 const gchar *object_path,
461 const gchar *interface_name,
462 const gchar *signal_name,
463 GVariant *parameters,
466 gint *counter = user_data;
469 /*g_debug ("in test_connection_signal_handler (sender=%s path=%s interface=%s member=%s)",
475 g_main_loop_quit (loop);
479 test_connection_signals (void)
491 gint count_name_owner_changed;
499 * Bring up first separate connections
502 /* if running with dbus-monitor, it claims the name :1.0 - so if we don't run with the monitor
505 if (g_getenv ("G_DBUS_MONITOR") == NULL)
507 c1 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, NULL);
508 g_assert (c1 != NULL);
509 g_assert (!g_dbus_connection_is_closed (c1));
512 c1 = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
513 g_assert (c1 != NULL);
514 g_assert (!g_dbus_connection_is_closed (c1));
515 g_assert_cmpstr (g_dbus_connection_get_unique_name (c1), ==, ":1.1");
518 * Install two signal handlers for the first connection
520 * - Listen to the signal "Foo" from :1.2 (e.g. c2)
521 * - Listen to the signal "Foo" from anyone (e.g. both c2 and c3)
523 * and then count how many times this signal handler was invoked.
525 s1 = g_dbus_connection_signal_subscribe (c1,
527 "org.gtk.GDBus.ExampleInterface",
529 "/org/gtk/GDBus/ExampleInterface",
531 G_DBUS_SIGNAL_FLAGS_NONE,
532 test_connection_signal_handler,
535 s2 = g_dbus_connection_signal_subscribe (c1,
536 NULL, /* match any sender */
537 "org.gtk.GDBus.ExampleInterface",
539 "/org/gtk/GDBus/ExampleInterface",
541 G_DBUS_SIGNAL_FLAGS_NONE,
542 test_connection_signal_handler,
545 s3 = g_dbus_connection_signal_subscribe (c1,
546 "org.freedesktop.DBus", /* sender */
547 "org.freedesktop.DBus", /* interface */
548 "NameOwnerChanged", /* member */
549 "/org/freedesktop/DBus", /* path */
551 G_DBUS_SIGNAL_FLAGS_NONE,
552 test_connection_signal_handler,
553 &count_name_owner_changed,
555 /* Note that s1b is *just like* s1 - this is to catch a bug where N
556 * subscriptions of the same rule causes N calls to each of the N
557 * subscriptions instead of just 1 call to each of the N subscriptions.
559 s1b = g_dbus_connection_signal_subscribe (c1,
561 "org.gtk.GDBus.ExampleInterface",
563 "/org/gtk/GDBus/ExampleInterface",
565 G_DBUS_SIGNAL_FLAGS_NONE,
566 test_connection_signal_handler,
577 count_name_owner_changed = 0;
580 * Bring up two other connections
582 c2 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, NULL);
583 g_assert (c2 != NULL);
584 g_assert (!g_dbus_connection_is_closed (c2));
585 g_assert_cmpstr (g_dbus_connection_get_unique_name (c2), ==, ":1.2");
586 c3 = _g_bus_get_priv (G_BUS_TYPE_SESSION, NULL, NULL);
587 g_assert (c3 != NULL);
588 g_assert (!g_dbus_connection_is_closed (c3));
589 g_assert_cmpstr (g_dbus_connection_get_unique_name (c3), ==, ":1.3");
592 * Make c2 emit "Foo" - we should catch it twice
594 * Note that there is no way to be sure that the signal subscriptions
595 * on c1 are effective yet - for all we know, the AddMatch() messages
596 * could sit waiting in a buffer somewhere between this process and
597 * the message bus. And emitting signals on c2 (a completely other
598 * socket!) will not necessarily change this.
600 * To ensure this is not the case, do a synchronous call on c1.
602 result = g_dbus_connection_call_sync (c1,
603 "org.freedesktop.DBus", /* bus name */
604 "/org/freedesktop/DBus", /* object path */
605 "org.freedesktop.DBus", /* interface name */
606 "GetId", /* method name */
607 NULL, /* parameters */
608 NULL, /* return type */
609 G_DBUS_CALL_FLAGS_NONE,
613 g_assert_no_error (error);
614 g_assert (result != NULL);
615 g_variant_unref (result);
616 /* now, emit the signal on c2 */
617 ret = g_dbus_connection_emit_signal (c2,
618 NULL, /* destination bus name */
619 "/org/gtk/GDBus/ExampleInterface",
620 "org.gtk.GDBus.ExampleInterface",
624 g_assert_no_error (error);
626 while (!(count_s1 >= 1 && count_s2 >= 1))
627 g_main_loop_run (loop);
628 g_assert_cmpint (count_s1, ==, 1);
629 g_assert_cmpint (count_s2, ==, 1);
632 * Make c3 emit "Foo" - we should catch it only once
634 ret = g_dbus_connection_emit_signal (c3,
635 NULL, /* destination bus name */
636 "/org/gtk/GDBus/ExampleInterface",
637 "org.gtk.GDBus.ExampleInterface",
641 g_assert_no_error (error);
643 while (!(count_s1 == 1 && count_s2 == 2))
644 g_main_loop_run (loop);
645 g_assert_cmpint (count_s1, ==, 1);
646 g_assert_cmpint (count_s2, ==, 2);
649 * Also to check the total amount of NameOwnerChanged signals - use a 5 second ceiling
650 * to avoid spinning forever
652 gboolean quit_mainloop_fired;
653 guint quit_mainloop_id;
654 quit_mainloop_fired = FALSE;
655 quit_mainloop_id = g_timeout_add (5000, test_connection_quit_mainloop, &quit_mainloop_fired);
656 while (count_name_owner_changed < 2 && !quit_mainloop_fired)
657 g_main_loop_run (loop);
658 g_source_remove (quit_mainloop_id);
659 g_assert_cmpint (count_s1, ==, 1);
660 g_assert_cmpint (count_s2, ==, 2);
661 g_assert_cmpint (count_name_owner_changed, ==, 2);
663 g_dbus_connection_signal_unsubscribe (c1, s1);
664 g_dbus_connection_signal_unsubscribe (c1, s2);
665 g_dbus_connection_signal_unsubscribe (c1, s3);
666 g_dbus_connection_signal_unsubscribe (c1, s1b);
668 _g_object_wait_for_single_ref (c1);
669 _g_object_wait_for_single_ref (c2);
670 _g_object_wait_for_single_ref (c3);
679 /* ---------------------------------------------------------------------------------------------------- */
689 filter_func (GDBusConnection *connection,
690 GDBusMessage *message,
694 FilterData *data = user_data;
695 guint32 reply_serial;
699 reply_serial = g_dbus_message_get_reply_serial (message);
700 if (reply_serial == data->serial)
701 data->num_handled += 1;
705 data->num_outgoing += 1;
712 test_connection_filter (void)
721 memset (&data, '\0', sizeof (FilterData));
726 c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
727 g_assert_no_error (error);
728 g_assert (c != NULL);
730 filter_id = g_dbus_connection_add_filter (c,
735 m = g_dbus_message_new_method_call ("org.freedesktop.DBus", /* name */
736 "/org/freedesktop/DBus", /* path */
737 "org.freedesktop.DBus", /* interface */
739 g_dbus_message_set_body (m, g_variant_new ("(s)", "org.freedesktop.DBus"));
741 g_dbus_connection_send_message (c, m, G_DBUS_SEND_MESSAGE_FLAGS_NONE, &data.serial, &error);
742 g_assert_no_error (error);
744 while (data.num_handled == 0)
747 g_dbus_message_set_serial (m, 0);
748 g_dbus_connection_send_message (c, m, G_DBUS_SEND_MESSAGE_FLAGS_NONE, &data.serial, &error);
749 g_assert_no_error (error);
751 while (data.num_handled == 1)
754 g_dbus_message_set_serial (m, 0);
755 r = g_dbus_connection_send_message_with_reply_sync (c,
757 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
760 NULL, /* GCancellable */
762 g_assert_no_error (error);
763 g_assert (r != NULL);
765 g_assert_cmpint (data.num_handled, ==, 3);
767 g_dbus_connection_remove_filter (c, filter_id);
769 g_dbus_message_set_serial (m, 0);
770 r = g_dbus_connection_send_message_with_reply_sync (c,
772 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
775 NULL, /* GCancellable */
777 g_assert_no_error (error);
778 g_assert (r != NULL);
780 g_assert_cmpint (data.num_handled, ==, 3);
781 g_assert_cmpint (data.num_outgoing, ==, 3);
783 _g_object_wait_for_single_ref (c);
790 /* ---------------------------------------------------------------------------------------------------- */
793 test_connection_flush_signal_handler (GDBusConnection *connection,
794 const gchar *sender_name,
795 const gchar *object_path,
796 const gchar *interface_name,
797 const gchar *signal_name,
798 GVariant *parameters,
801 g_main_loop_quit (loop);
805 test_connection_flush_on_timeout (gpointer user_data)
807 guint iteration = GPOINTER_TO_UINT (user_data);
808 g_printerr ("Timeout waiting 1000 msec on iteration %d\n", iteration);
809 g_assert_not_reached ();
814 test_connection_flush (void)
816 GDBusConnection *connection;
819 guint signal_handler_id;
824 connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
825 g_assert_no_error (error);
826 g_assert (connection != NULL);
828 signal_handler_id = g_dbus_connection_signal_subscribe (connection,
830 "org.gtk.GDBus.FlushInterface",
832 "/org/gtk/GDBus/FlushObject",
834 G_DBUS_SIGNAL_FLAGS_NONE,
835 test_connection_flush_signal_handler,
838 g_assert_cmpint (signal_handler_id, !=, 0);
840 for (n = 0; n < 50; n++)
844 guint timeout_mainloop_id;
847 ret = g_spawn_command_line_sync ("./gdbus-connection-flush-helper",
852 g_assert_no_error (error);
853 g_assert (WIFEXITED (exit_status));
854 g_assert_cmpint (WEXITSTATUS (exit_status), ==, 0);
857 timeout_mainloop_id = g_timeout_add (1000, test_connection_flush_on_timeout, GUINT_TO_POINTER (n));
858 g_main_loop_run (loop);
859 g_source_remove (timeout_mainloop_id);
862 g_dbus_connection_signal_unsubscribe (connection, signal_handler_id);
863 _g_object_wait_for_single_ref (connection);
864 g_object_unref (connection);
870 test_connection_basic (void)
872 GDBusConnection *connection;
874 GDBusCapabilityFlags flags;
878 gboolean exit_on_close;
880 GCredentials *credentials;
885 connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
886 g_assert_no_error (error);
887 g_assert (connection != NULL);
889 flags = g_dbus_connection_get_capabilities (connection);
890 g_assert (flags == G_DBUS_CAPABILITY_FLAGS_NONE ||
891 flags == G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING);
893 credentials = g_dbus_connection_get_peer_credentials (connection);
894 g_assert (credentials == NULL);
896 g_object_get (connection,
899 "unique-name", &name,
901 "exit-on-close", &exit_on_close,
902 "capabilities", &flags,
905 g_assert (G_IS_IO_STREAM (stream));
906 g_assert (g_dbus_is_guid (guid));
907 g_assert (g_dbus_is_unique_name (name));
909 g_assert (exit_on_close);
910 g_assert (flags == G_DBUS_CAPABILITY_FLAGS_NONE ||
911 flags == G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING);
913 g_object_unref (stream);
914 g_object_unref (connection);
921 /* ---------------------------------------------------------------------------------------------------- */
923 /* Message size > 20MiB ... should be enough to make sure the message
924 * is fragmented when shoved across any transport
926 #define LARGE_MESSAGE_STRING_LENGTH (20*1024*1024)
929 large_message_on_name_appeared (GDBusConnection *connection,
931 const gchar *name_owner,
940 request = g_new (gchar, LARGE_MESSAGE_STRING_LENGTH + 1);
941 for (n = 0; n < LARGE_MESSAGE_STRING_LENGTH; n++)
942 request[n] = '0' + (n%10);
946 result = g_dbus_connection_call_sync (connection,
947 "com.example.TestService", /* bus name */
948 "/com/example/TestObject", /* object path */
949 "com.example.Frob", /* interface name */
950 "HelloWorld", /* method name */
951 g_variant_new ("(s)", request), /* parameters */
952 G_VARIANT_TYPE ("(s)"), /* return type */
953 G_DBUS_CALL_FLAGS_NONE,
957 g_assert_no_error (error);
958 g_assert (result != NULL);
959 g_variant_get (result, "(&s)", &reply);
960 g_assert_cmpint (strlen (reply), >, LARGE_MESSAGE_STRING_LENGTH);
961 g_assert (g_str_has_prefix (reply, "You greeted me with '01234567890123456789012"));
962 g_assert (g_str_has_suffix (reply, "6789'. Thanks!"));
963 g_variant_unref (result);
967 g_main_loop_quit (loop);
971 large_message_on_name_vanished (GDBusConnection *connection,
978 test_connection_large_message (void)
984 /* this is safe; testserver will exit once the bus goes away */
985 g_assert (g_spawn_command_line_async (SRCDIR "/gdbus-testserver.py", NULL));
987 watcher_id = g_bus_watch_name (G_BUS_TYPE_SESSION,
988 "com.example.TestService",
989 G_BUS_NAME_WATCHER_FLAGS_NONE,
990 large_message_on_name_appeared,
991 large_message_on_name_vanished,
992 NULL, /* user_data */
993 NULL); /* GDestroyNotify */
994 g_main_loop_run (loop);
995 g_bus_unwatch_name (watcher_id);
1000 /* ---------------------------------------------------------------------------------------------------- */
1007 g_test_init (&argc, &argv, NULL);
1009 /* all the tests rely on a shared main loop */
1010 loop = g_main_loop_new (NULL, FALSE);
1012 /* all the tests use a session bus with a well-known address that we can bring up and down
1013 * using session_bus_up() and session_bus_down().
1015 g_unsetenv ("DISPLAY");
1016 g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE);
1018 g_test_add_func ("/gdbus/connection/basic", test_connection_basic);
1019 g_test_add_func ("/gdbus/connection/life-cycle", test_connection_life_cycle);
1020 g_test_add_func ("/gdbus/connection/send", test_connection_send);
1021 g_test_add_func ("/gdbus/connection/signals", test_connection_signals);
1022 g_test_add_func ("/gdbus/connection/filter", test_connection_filter);
1023 g_test_add_func ("/gdbus/connection/flush", test_connection_flush);
1024 g_test_add_func ("/gdbus/connection/large_message", test_connection_large_message);
1025 return g_test_run();