summaryrefslogtreecommitdiff
path: root/test/core/test-dbus-glib.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/test-dbus-glib.c')
-rw-r--r--test/core/test-dbus-glib.c2377
1 files changed, 2377 insertions, 0 deletions
diff --git a/test/core/test-dbus-glib.c b/test/core/test-dbus-glib.c
new file mode 100644
index 0000000..ffc2ae9
--- /dev/null
+++ b/test/core/test-dbus-glib.c
@@ -0,0 +1,2377 @@
+/* General tests for dbus-glib. Please make new tests into a standalone
+ * binary using GTest instead, where feasible.
+ *
+ * Copyright © 2006-2010 Red Hat, Inc.
+ * Copyright © 2006-2010 Collabora Ltd.
+ * Copyright © 2006-2011 Nokia Corporation
+ * Copyright © 2006 Steve Frécinaux
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+#include <config.h>
+
+/* -*- mode: C; c-file-style: "gnu" -*- */
+#include <dbus/dbus-glib.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "test-service-glib-bindings.h"
+#include <dbus/dbus-gidl.h>
+#include <dbus/dbus-gparser.h>
+#include <glib.h>
+#include <glib-object.h>
+#include "my-object.h"
+
+GMainLoop *loop = NULL;
+
+static const char *await_terminating_service = NULL;
+static int n_times_foo_received = 0;
+static int n_times_frobnicate_received = 0;
+static int n_times_frobnicate_received_2 = 0;
+static int n_times_compat_frobnicate_received = 0;
+static int n_times_sig0_received = 0;
+static int n_times_sig1_received = 0;
+static int n_times_sig2_received = 0;
+static guint exit_timeout = 0;
+static gboolean proxy_destroyed = FALSE;
+static gboolean proxy_destroy_and_nameowner = FALSE;
+static gboolean proxy_destroy_and_nameowner_complete = FALSE;
+
+static DBusGProxy *test_terminate_proxy1 = NULL;
+static DBusGProxy *test_terminate_proxy2 = NULL;
+
+#define lose(...) g_error (__VA_ARGS__)
+
+static void lose_gerror (const char *prefix, GError *error) G_GNUC_NORETURN;
+
+static void
+unset_and_free_gvalue (gpointer val)
+{
+ g_value_unset (val);
+ g_free (val);
+}
+
+static gboolean
+timed_exit (gpointer loop)
+{
+ g_print ("timed exit!\n");
+ g_main_loop_quit (loop);
+ return TRUE;
+}
+
+static void
+proxy_destroyed_cb (DBusGProxy *proxy, gpointer user_data)
+{
+ proxy_destroyed = TRUE;
+ if (proxy_destroy_and_nameowner && !proxy_destroy_and_nameowner_complete && await_terminating_service == NULL)
+ {
+ g_source_remove (exit_timeout);
+ g_main_loop_quit (loop);
+ proxy_destroy_and_nameowner_complete = TRUE;
+ }
+}
+
+static void
+test_terminate_proxy1_destroyed_cb (DBusGProxy *proxy, gpointer user_data)
+{
+ proxy_destroyed = TRUE;
+ if (proxy_destroy_and_nameowner && !proxy_destroy_and_nameowner_complete && await_terminating_service == NULL)
+ {
+ g_object_unref(test_terminate_proxy2);
+ test_terminate_proxy2 = NULL;
+ g_source_remove (exit_timeout);
+ g_main_loop_quit (loop);
+ proxy_destroy_and_nameowner_complete = TRUE;
+ }
+}
+
+
+static void
+name_owner_changed (DBusGProxy *proxy,
+ const char *name,
+ const char *prev_owner,
+ const char *new_owner,
+ gpointer user_data)
+{
+ g_print ("(signal NameOwnerChanged) name owner changed for %s from %s to %s\n",
+ name, prev_owner, new_owner);
+ if (await_terminating_service &&
+ !strcmp (name, await_terminating_service)
+ && !strcmp ("", new_owner))
+ {
+ g_print ("Caught expected ownership loss for %s\n", name);
+ await_terminating_service = NULL;
+ if (proxy_destroy_and_nameowner && !proxy_destroy_and_nameowner_complete && proxy_destroyed)
+ {
+ g_source_remove (exit_timeout);
+ g_main_loop_quit (loop);
+ proxy_destroy_and_nameowner_complete = TRUE;
+ }
+ else if (!proxy_destroy_and_nameowner)
+ {
+ g_source_remove (exit_timeout);
+ g_main_loop_quit (loop);
+ }
+ }
+}
+
+static void
+foo_signal_handler (DBusGProxy *proxy,
+ double d,
+ void *user_data)
+{
+ n_times_foo_received += 1;
+
+ g_print ("Got Foo signal\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+frobnicate_signal_handler (DBusGProxy *proxy,
+ int val,
+ void *user_data)
+{
+ n_times_frobnicate_received += 1;
+
+ g_assert (val == 42);
+ g_print ("Got Frobnicate signal\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+frobnicate_signal_handler_2 (DBusGProxy *proxy,
+ int val,
+ void *user_data)
+{
+ n_times_frobnicate_received_2 += 1;
+
+ g_assert (val == 42);
+ g_print ("Got Frobnicate signal (again)\n");
+}
+
+static void
+frobnicate_signal_handler_compat (DBusGProxy *proxy,
+ int val,
+ void *user_data)
+{
+ n_times_compat_frobnicate_received += 1;
+
+ g_assert (val == 42);
+ g_print ("Got Frobnicate signal (compat)\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+sig0_signal_handler (DBusGProxy *proxy,
+ const char *str0,
+ int val,
+ const char *str1,
+ void *user_data)
+{
+ n_times_sig0_received += 1;
+
+ g_assert (!strcmp (str0, "foo"));
+
+ g_assert (val == 22);
+
+ g_assert (!strcmp (str1, "moo"));
+
+ g_print ("Got Sig0 signal\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+sig1_signal_handler (DBusGProxy *proxy,
+ const char *str0,
+ GValue *value,
+ void *user_data)
+{
+ n_times_sig1_received += 1;
+
+ g_assert (!strcmp (str0, "baz"));
+
+ g_assert (G_VALUE_HOLDS_STRING (value));
+
+ g_assert (!strcmp (g_value_get_string (value), "bar"));
+
+ g_print ("Got Sig1 signal\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+sig2_signal_handler (DBusGProxy *proxy,
+ GHashTable *table,
+ void *user_data)
+{
+ n_times_sig2_received += 1;
+
+ g_assert (g_hash_table_size (table) == 2);
+
+ g_assert (g_hash_table_lookup (table, "baz") != NULL);
+ g_assert (!strcmp (g_hash_table_lookup (table, "baz"), "cow"));
+ g_assert (g_hash_table_lookup (table, "bar") != NULL);
+ g_assert (!strcmp (g_hash_table_lookup (table, "bar"), "foo"));
+
+ g_print ("Got Sig2 signal\n");
+
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static DBusGProxyCall *echo_call;
+static guint n_times_echo_cb_entered;
+static void
+echo_received_cb (DBusGProxy *proxy,
+ DBusGProxyCall *call,
+ gpointer data)
+{
+ GError *error;
+ char *echo_data;
+
+ g_assert (call == echo_call);
+ g_assert (data == NULL);
+
+ error = NULL;
+ echo_data = NULL;
+ n_times_echo_cb_entered++;
+
+ if (!dbus_g_proxy_end_call (proxy, call, &error,
+ G_TYPE_STRING,
+ &echo_data,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete async Echo", error);
+ g_assert (echo_data != NULL);
+ g_print ("Async echo gave \"%s\"\n", echo_data);
+ g_free (echo_data);
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+increment_received_cb (DBusGProxy *proxy,
+ DBusGProxyCall *call,
+ gpointer data)
+{
+ GError *error;
+ guint val;
+
+ g_assert (!strcmp (data, "moo"));
+
+ error = NULL;
+ if (!dbus_g_proxy_end_call (proxy, call, &error,
+ G_TYPE_UINT, &val,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete (async) Increment call", error);
+
+ if (val != 43)
+ lose ("Increment call returned %d, should be 43", val);
+
+ g_print ("Async increment gave \"%d\"\n", val);
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+static void
+increment_async_cb (DBusGProxy *proxy, guint val, GError *error, gpointer data)
+{
+ if (error)
+ lose_gerror ("Failed to complete (wrapped async) Increment call", error);
+
+ if (data != NULL)
+ lose ("(wrapped async) Increment call gave unexpected data");
+ if (val != 43)
+ lose ("(wrapped async) Increment call returned %d, should be 43", val);
+
+ g_print ("(wrapped async) increment gave \"%d\"\n", val);
+ g_main_loop_quit (loop);
+ g_source_remove (exit_timeout);
+}
+
+#define DBUS_TYPE_G_MAP_OF_VARIANT (dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_VALUE))
+static gboolean
+test_base_class_get_all (DBusGConnection *connection,
+ const char *object_path,
+ const char *expected_string_value)
+{
+ DBusGProxy *proxy;
+ GError *error = NULL;
+ GHashTable *hash = NULL;
+
+ /* g_test_bug (19145); */
+
+ g_assert (expected_string_value != NULL);
+ g_assert (object_path != NULL);
+
+ /* Test GetAll with interfaces on the base class */
+
+ proxy = dbus_g_proxy_new_for_name (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ object_path,
+ DBUS_INTERFACE_PROPERTIES);
+ g_assert (proxy != NULL);
+
+ g_print ("%s: Calling GetAll for unknown interface\n", object_path);
+ {
+ if (dbus_g_proxy_call (proxy, "GetAll", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.foobar.blahblah",
+ G_TYPE_INVALID,
+ DBUS_TYPE_G_MAP_OF_VARIANT, &hash, G_TYPE_INVALID))
+ lose ("Unexpected success for GetAll call of unknown interface\n");
+ g_clear_error (&error);
+ hash = NULL;
+ }
+
+ g_print ("%s: Calling GetAll for base class interface\n", object_path);
+ {
+ GValue *value;
+ const char *foo = NULL;
+
+ if (!dbus_g_proxy_call (proxy, "GetAll", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_INVALID,
+ DBUS_TYPE_G_MAP_OF_VARIANT, &hash, G_TYPE_INVALID))
+ lose_gerror ("Unexpected error for GetProperty call of base class interface", error);
+ g_clear_error (&error);
+
+ if (!hash)
+ {
+ lose ("%s: Unexpected NULL hash table returned for GetAll call of base "
+ "class interface", object_path);
+ }
+
+ if (g_hash_table_size (hash) != 3)
+ {
+ lose ("%s: Unexpected hash table size %d (expected 3) returned for GetAll "
+ " call of base class interface", object_path, g_hash_table_size (hash));
+ }
+ value = g_hash_table_lookup (hash, "this_is_a_string");
+ if (!value)
+ {
+ lose ("%s: Unexpected missing 'this_is_a_string' property for GetAll "
+ "call of base class interface", object_path);
+ }
+ if (!G_VALUE_HOLDS_STRING (value))
+ {
+ lose ("%s: Unexpected wrong type for 'this_is_a_string' property for "
+ "GetAll call of base class interface", object_path);
+ }
+ foo = g_value_get_string (value);
+ if (!foo || strcmp (foo, expected_string_value))
+ {
+ lose ("%s: Unexpected value for 'this_is_a_string' property for GetAll "
+ "call of base class interface", object_path);
+ }
+
+ value = g_hash_table_lookup (hash, "no-touching");
+ if (!value)
+ lose ("%s: Unexpected missing 'no-touching' property for GetAll "
+ "call of base class interface", object_path);
+ if (!G_VALUE_HOLDS_UINT (value))
+ lose ("%s: Unexpected wrong type for 'no-touching' property for "
+ "GetAll call of base class interface", object_path);
+ if (g_value_get_uint (value) != 42)
+ lose ("%s: Unexpected wrong value \"%d\" for 'no-touching' property for "
+ "GetAll call of base class interface", object_path, g_value_get_uint (value));
+ g_hash_table_destroy (hash);
+ hash = NULL;
+ }
+
+ g_object_unref (proxy);
+ return TRUE;
+}
+
+static gboolean
+test_subclass_get_all (DBusGConnection *connection,
+ const char *object_path)
+{
+ DBusGProxy *proxy;
+ GError *error = NULL;
+ GHashTable *hash = NULL;
+
+ /* g_test_bug (19145); */
+
+ g_assert (object_path != NULL);
+
+ /* Test GetAll with interfaces on the subclass */
+
+ proxy = dbus_g_proxy_new_for_name (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ object_path,
+ DBUS_INTERFACE_PROPERTIES);
+ g_assert (proxy != NULL);
+
+ g_print ("%s: Calling GetAll for subclass interface\n", object_path);
+ {
+ GValue *value;
+ const char *string = NULL;
+ guint num = 0;
+
+ if (!dbus_g_proxy_call (proxy, "GetAll", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObjectSubclass",
+ G_TYPE_INVALID,
+ DBUS_TYPE_G_MAP_OF_VARIANT, &hash, G_TYPE_INVALID))
+ lose_gerror ("Unexpected error for GetProperty call of base subclass interface\n", error);
+ g_clear_error (&error);
+
+ if (!hash)
+ {
+ lose ("%s: Unexpected NULL hash table returned for GetAll call of "
+ "subclass interface\n", object_path);
+ }
+
+ if (g_hash_table_size (hash) != 2)
+ {
+ lose ("%s: Unexpected hash table size %d (expected 2) returned for GetAll "
+ " call of subclass interface\n", object_path, g_hash_table_size (hash));
+ }
+
+ /* Test the string property */
+ value = g_hash_table_lookup (hash, "this_is_a_subclass_string");
+ if (!value)
+ {
+ lose ("%s: Unexpected missing 'this_is_a_subclass_string' property for "
+ "GetAll call of subclass interface\n", object_path);
+ }
+ if (!G_VALUE_HOLDS_STRING (value))
+ {
+ lose ("%s: Unexpected wrong type for 'this_is_a_subclass_string' "
+ "property for GetAll call of subclass interface\n", object_path);
+ }
+ string = g_value_get_string (value);
+ if (!string || strcmp (string, "default subclass value"))
+ {
+ lose ("%s: Unexpected value for 'this_is_a_subclass_string' property "
+ "for GetAll call of subclass interface\n", object_path);
+ }
+
+ /* Test the uint property */
+ value = g_hash_table_lookup (hash, "this_is_a_subclass_uint");
+ if (!value)
+ {
+ lose ("%s: Unexpected missing 'this_is_a_subclass_uint' property for "
+ "GetAll call of subclass interface\n", object_path);
+ }
+ if (!G_VALUE_HOLDS_UINT (value))
+ {
+ lose ("%s: Unexpected wrong type for 'this_is_a_subclass_uint' "
+ "property for GetAll call of subclass interface\n", object_path);
+ }
+ num = g_value_get_uint (value);
+ if (num != 1234567)
+ {
+ lose ("%s: Unexpected value for 'this_is_a_subclass_uint' property "
+ "for GetAll call of subclass interface\n", object_path);
+ }
+
+ g_hash_table_destroy (hash);
+ hash = NULL;
+ }
+
+ g_object_unref (proxy);
+ return TRUE;
+}
+
+static void
+lose_gerror (const char *prefix, GError *error)
+{
+ if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_REMOTE_EXCEPTION)
+ lose ("%s (%s): %s", prefix, dbus_g_error_get_name (error),
+ error->message);
+ else
+ lose ("%s: %s#%d: %s", prefix, g_quark_to_string (error->domain),
+ error->code, error->message);
+}
+
+static void
+run_mainloop (void)
+{
+ GMainContext *ctx;
+
+ ctx = g_main_loop_get_context (loop);
+
+ while (g_main_context_pending (ctx))
+ g_main_context_iteration (ctx, FALSE);
+}
+
+int
+main (int argc, char **argv)
+{
+ DBusGConnection *connection;
+ GError *error;
+ DBusGProxy *driver;
+ DBusGProxy *proxy;
+ DBusGProxy *proxy2;
+ DBusGProxy *property_proxy;
+ char **name_list;
+ guint name_list_len;
+ guint i;
+ DBusGProxyCall *call;
+ guint32 result;
+ char *v_STRING_2;
+ guint32 v_UINT32_2;
+ double v_DOUBLE_2;
+
+ g_type_init ();
+
+ g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
+
+ loop = g_main_loop_new (NULL, FALSE);
+
+ error = NULL;
+ connection = dbus_g_bus_get (DBUS_BUS_SESSION,
+ &error);
+ if (connection == NULL)
+ lose_gerror ("Failed to open connection to bus", error);
+
+ /* should always get the same one */
+ g_assert (connection == dbus_g_bus_get (DBUS_BUS_SESSION, NULL));
+ g_assert (connection == dbus_g_bus_get (DBUS_BUS_SESSION, NULL));
+ g_assert (connection == dbus_g_bus_get (DBUS_BUS_SESSION, NULL));
+
+ /* Create a proxy object for the "bus driver" */
+
+ driver = dbus_g_proxy_new_for_name (connection,
+ DBUS_SERVICE_DBUS,
+ DBUS_PATH_DBUS,
+ DBUS_INTERFACE_DBUS);
+
+ dbus_g_proxy_add_signal (driver,
+ "NameOwnerChanged",
+ G_TYPE_STRING,
+ G_TYPE_STRING,
+ G_TYPE_STRING,
+ G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (driver,
+ "NameOwnerChanged",
+ G_CALLBACK (name_owner_changed),
+ NULL,
+ NULL);
+ /* Call ListNames method */
+
+ error = NULL;
+ if (!dbus_g_proxy_call (driver, "ListNames", &error,
+ G_TYPE_INVALID,
+ G_TYPE_STRV, &name_list,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete ListNames call", error);
+
+ g_print ("Names on the message bus:\n");
+ i = 0;
+ name_list_len = g_strv_length (name_list);
+ while (i < name_list_len)
+ {
+ g_assert (name_list[i] != NULL);
+ g_print (" %s\n", name_list[i]);
+ ++i;
+ }
+ g_assert (name_list[i] == NULL);
+
+ g_strfreev (name_list);
+
+ g_print ("calling ThisMethodDoesNotExist\n");
+ /* Test handling of unknown method */
+ if (dbus_g_proxy_call (driver, "ThisMethodDoesNotExist", &error,
+ G_TYPE_STRING,
+ "blah blah blah blah blah",
+ G_TYPE_INT,
+ 10,
+ G_TYPE_INVALID, G_TYPE_INVALID) != FALSE)
+ lose ("Calling nonexistent method succeeded!");
+
+ g_print ("Got EXPECTED error from calling unknown method: %s\n", error->message);
+ g_clear_error (&error);
+
+ run_mainloop ();
+
+ /* Activate a service */
+ g_print ("Activating echo service\n");
+ if (!dbus_g_proxy_call (driver, "StartServiceByName", &error,
+ G_TYPE_STRING,
+ "org.freedesktop.DBus.GLib.TestEchoService",
+ G_TYPE_UINT, 0,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &result,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Activate call", error);
+
+ g_print ("Starting echo service result = 0x%x\n", result);
+
+ /* Activate a service again */
+ g_print ("Activating echo service again\n");
+ if (!dbus_g_proxy_call (driver, "StartServiceByName", &error,
+ G_TYPE_STRING,
+ "org.freedesktop.DBus.GLib.TestEchoService",
+ G_TYPE_UINT,
+ 0,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &result,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Activate call", error);
+
+ g_print ("Duplicate start of echo service = 0x%x\n", result);
+
+ /* Talk to the new service */
+
+ g_print ("Creating proxy for echo service\n");
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestEchoService",
+ "/org/freedesktop/DBus/GLib/TestSuite",
+ "org.freedesktop.DBus.GLib.TestSuite",
+ &error);
+
+ if (proxy == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ run_mainloop ();
+
+ g_print ("Calling Echo\n");
+ if (!dbus_g_proxy_call (proxy, "Echo", &error,
+ G_TYPE_STRING, "my string hello",
+ G_TYPE_INVALID,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Echo call", error);
+
+ g_print ("String echoed = \"%s\"\n", v_STRING_2);
+ g_free (v_STRING_2);
+
+ g_print ("Calling Echo (async)\n");
+ echo_call = dbus_g_proxy_begin_call (proxy, "Echo",
+ echo_received_cb, NULL, NULL,
+ G_TYPE_STRING, "my string hello",
+ G_TYPE_INVALID);
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ /* Exercise invalid number/type of return values */
+
+ g_print ("Invalid args; calling Echo\n");
+ if (dbus_g_proxy_call (proxy, "Echo", &error,
+ G_TYPE_STRING, "my string hello",
+ G_TYPE_INVALID,
+ G_TYPE_INVALID))
+ lose ("Unexpected success for invalid Echo return values");
+ g_clear_error (&error);
+
+ g_print ("Invalid args 2; calling Echo\n");
+ if (dbus_g_proxy_call (proxy, "Echo", &error,
+ G_TYPE_STRING, "my string hello",
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID))
+ lose ("Unexpected success for invalid Echo return values");
+ g_clear_error (&error);
+
+ g_print ("Invalid args 3; calling Echo\n");
+ if (dbus_g_proxy_call (proxy, "Echo", &error,
+ G_TYPE_STRING, "my string hello",
+ G_TYPE_INVALID,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID))
+ lose ("Unexpected success for invalid Echo return values");
+ g_clear_error (&error);
+
+ /* Test oneway call and signal handling */
+
+ g_print ("Testing Foo emission\n");
+ dbus_g_proxy_add_signal (proxy, "Foo", G_TYPE_DOUBLE, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy, "Foo",
+ G_CALLBACK (foo_signal_handler),
+ NULL, NULL);
+
+ dbus_g_proxy_call_no_reply (proxy, "EmitFoo",
+ G_TYPE_INVALID);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_foo_received != 1)
+ lose ("Foo signal received %d times, should have been 1", n_times_foo_received);
+
+ /* Activate test servie */
+ g_print ("Activating GLib.TestService\n");
+ error = NULL;
+ if (!dbus_g_proxy_call (driver, "StartServiceByName", &error,
+ G_TYPE_STRING,
+ "org.freedesktop.DBus.GLib.TestService",
+ G_TYPE_UINT,
+ 0,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &result,
+ G_TYPE_INVALID)) {
+ lose_gerror ("Failed to complete Activate call", error);
+ }
+
+ g_print ("GLib.TestService activated\n");
+
+ if (getenv ("DBUS_GLIB_TEST_SLEEP_AFTER_ACTIVATION"))
+ g_usleep (8 * G_USEC_PER_SEC);
+
+ g_object_unref (G_OBJECT (proxy));
+
+ run_mainloop ();
+
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject",
+ &error);
+
+ if (proxy == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ g_print ("Calling DoNothing\n");
+ if (!dbus_g_proxy_call (proxy, "DoNothing", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete DoNothing call", error);
+
+ g_print ("Calling Increment\n");
+ error = NULL;
+ if (!dbus_g_proxy_call (proxy, "Increment", &error,
+ G_TYPE_UINT, 42,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Increment call", error);
+ if (v_UINT32_2 != 43)
+ lose ("Increment call returned %d, should be 43", v_UINT32_2);
+
+ v_UINT32_2 = 0;
+ g_print ("Calling Increment (async)\n");
+ call = dbus_g_proxy_begin_call (proxy, "Increment",
+ increment_received_cb, g_strdup ("moo"), g_free,
+ G_TYPE_UINT, 42,
+ G_TYPE_INVALID);
+ if (call == NULL)
+ lose ("Failed to begin Increment call");
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ g_print ("Calling IncrementRetval\n");
+ error = NULL;
+ v_UINT32_2 = 0;
+ if (!dbus_g_proxy_call (proxy, "IncrementRetval", &error,
+ G_TYPE_UINT, 42,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Increment call", error);
+ if (v_UINT32_2 != 43)
+ lose ("IncrementRetval call returned %d, should be 43", v_UINT32_2);
+
+ g_print ("Calling IncrementRetvalError\n");
+ error = NULL;
+ v_UINT32_2 = 0;
+ if (!dbus_g_proxy_call (proxy, "IncrementRetvalError", &error,
+ G_TYPE_UINT, 5,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Increment call", error);
+ if (v_UINT32_2 != 6)
+ lose ("IncrementRetval call returned %d, should be 6", v_UINT32_2);
+
+ g_print ("Calling ThrowError\n");
+ if (dbus_g_proxy_call (proxy, "ThrowError", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID) != FALSE)
+ lose ("ThrowError call unexpectedly succeeded!");
+
+ if (!dbus_g_error_has_name (error, "org.freedesktop.DBus.GLib.Tests.MyObject.Foo"))
+ lose ("ThrowError call returned unexpected error \"%s\": %s", dbus_g_error_get_name (error),
+ error->message);
+
+ g_print ("ThrowError failed (as expected) returned error: %s\n", error->message);
+ g_clear_error (&error);
+
+ g_print ("Calling IncrementRetvalError (for error)\n");
+ error = NULL;
+ v_UINT32_2 = 0;
+ if (dbus_g_proxy_call (proxy, "IncrementRetvalError", &error,
+ G_TYPE_UINT, 20,
+ G_TYPE_INVALID,
+ G_TYPE_UINT, &v_UINT32_2,
+ G_TYPE_INVALID) != FALSE)
+ lose ("IncrementRetvalError call unexpectedly succeeded!");
+ if (!dbus_g_error_has_name (error, "org.freedesktop.DBus.GLib.Tests.MyObject.Foo"))
+ lose ("IncrementRetvalError call returned unexpected error \"%s\": %s", dbus_g_error_get_name (error), error->message);
+ g_clear_error (&error);
+
+ error = NULL;
+ g_print ("Calling Uppercase\n");
+ if (!dbus_g_proxy_call (proxy, "Uppercase", &error,
+ G_TYPE_STRING, "foobar",
+ G_TYPE_INVALID,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Uppercase call", error);
+ if (strcmp ("FOOBAR", v_STRING_2) != 0)
+ lose ("Uppercase call returned unexpected string %s", v_STRING_2);
+ g_free (v_STRING_2);
+
+ run_mainloop ();
+
+ g_print ("Calling ManyArgs\n");
+ if (!dbus_g_proxy_call (proxy, "ManyArgs", &error,
+ G_TYPE_UINT, 26,
+ G_TYPE_STRING, "bazwhee",
+ G_TYPE_DOUBLE, G_PI,
+ G_TYPE_INVALID,
+ G_TYPE_DOUBLE, &v_DOUBLE_2,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete ManyArgs call", error);
+ if (v_DOUBLE_2 < 55 || v_DOUBLE_2 > 56)
+ lose ("ManyArgs call returned unexpected double value %f", v_DOUBLE_2);
+ if (strcmp ("BAZWHEE", v_STRING_2) != 0)
+ lose ("ManyArgs call returned unexpected string %s", v_STRING_2);
+ g_free (v_STRING_2);
+
+ g_print ("Calling (wrapped) do_nothing\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_do_nothing (proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) DoNothing call", error);
+
+ g_print ("Calling (wrapped) increment\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment (proxy, 42, &v_UINT32_2, &error))
+ lose_gerror ("Failed to complete (wrapped) Increment call", error);
+
+ if (v_UINT32_2 != 43)
+ lose ("(wrapped) increment call returned %d, should be 43", v_UINT32_2);
+
+ g_print ("Calling (wrapped async) increment\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment_async (proxy, 42, increment_async_cb, NULL))
+ lose_gerror ("Failed to complete (wrapped) Increment call", error);
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ v_UINT32_2 = 0;
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_async_increment (proxy, 42, &v_UINT32_2, &error))
+ lose_gerror ("Failed to complete (wrapped) AsyncIncrement call", error);
+
+ if (v_UINT32_2 != 43)
+ lose ("(wrapped) async increment call returned %d, should be 43", v_UINT32_2);
+
+ g_print ("Calling (wrapped) throw_error\n");
+ if (org_freedesktop_DBus_GLib_Tests_MyObject_throw_error (proxy, &error) != FALSE)
+ lose ("(wrapped) ThrowError call unexpectedly succeeded!");
+
+ g_print ("(wrapped) ThrowError failed (as expected) returned error: %s\n", error->message);
+ g_clear_error (&error);
+
+ g_print ("Calling (wrapped) uppercase\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_uppercase (proxy, "foobar", &v_STRING_2, &error))
+ lose_gerror ("Failed to complete (wrapped) Uppercase call", error);
+ if (strcmp ("FOOBAR", v_STRING_2) != 0)
+ lose ("(wrapped) Uppercase call returned unexpected string %s", v_STRING_2);
+ g_free (v_STRING_2);
+
+ g_print ("Calling (wrapped) many_args\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_many_args (proxy, 26, "bazwhee", G_PI,
+ &v_DOUBLE_2, &v_STRING_2, &error))
+ lose_gerror ("Failed to complete (wrapped) ManyArgs call", error);
+
+ if (v_DOUBLE_2 < 55 || v_DOUBLE_2 > 56)
+
+ lose ("(wrapped) ManyArgs call returned unexpected double value %f", v_DOUBLE_2);
+
+ if (strcmp ("BAZWHEE", v_STRING_2) != 0)
+ lose ("(wrapped) ManyArgs call returned unexpected string %s", v_STRING_2);
+ g_free (v_STRING_2);
+
+ {
+ guint32 arg0;
+ char *arg1;
+ gint32 arg2;
+ guint32 arg3;
+ guint32 arg4;
+ char *arg5;
+
+ g_print ("Calling (wrapped) many_return\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_many_return (proxy, &arg0, &arg1, &arg2, &arg3, &arg4, &arg5, &error))
+ lose_gerror ("Failed to complete (wrapped) ManyReturn call", error);
+
+ if (arg0 != 42)
+ lose ("(wrapped) ManyReturn call returned unexpected guint32 value %u", arg0);
+
+ if (strcmp ("42", arg1) != 0)
+ lose ("(wrapped) ManyReturn call returned unexpected string %s", arg1);
+ g_free (arg1);
+
+ if (arg2 != -67)
+ lose ("(wrapped) ManyReturn call returned unexpected gint32 value %u", arg2);
+
+ if (arg3 != 2)
+ lose ("(wrapped) ManyReturn call returned unexpected guint32 value %u", arg3);
+
+ if (arg4 != 26)
+ lose ("(wrapped) ManyReturn call returned unexpected guint32 value %u", arg4);
+
+ if (strcmp ("hello world", arg5))
+ lose ("(wrapped) ManyReturn call returned unexpected string %s", arg5);
+ g_free (arg5);
+ }
+
+ run_mainloop ();
+
+ {
+ GValue value = {0, };
+
+ g_value_init (&value, G_TYPE_STRING);
+ g_value_set_string (&value, "foo");
+
+ g_print ("Calling (wrapped) stringify, with string\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_stringify (proxy,
+ &value,
+ &v_STRING_2,
+ &error))
+ lose_gerror ("Failed to complete (wrapped) stringify call", error);
+ if (strcmp ("foo", v_STRING_2) != 0)
+ lose ("(wrapped) stringify call returned unexpected string %s", v_STRING_2);
+ g_free (v_STRING_2);
+
+ g_value_unset (&value);
+ g_value_init (&value, G_TYPE_INT);
+ g_value_set_int (&value, 42);
+
+ g_print ("Calling (wrapped) stringify, with int\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_stringify (proxy,
+ &value,
+ &v_STRING_2,
+ &error))
+ lose_gerror ("Failed to complete (wrapped) stringify call 2", error);
+ if (strcmp ("42", v_STRING_2) != 0)
+ lose ("(wrapped) stringify call 2 returned unexpected string %s", v_STRING_2);
+ g_value_unset (&value);
+ g_free (v_STRING_2);
+
+ g_value_init (&value, G_TYPE_INT);
+ g_value_set_int (&value, 88);
+ g_print ("Calling (wrapped) stringify, with another int\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_stringify (proxy,
+ &value,
+ NULL,
+ &error))
+ lose_gerror ("Failed to complete (wrapped) stringify call 3", error);
+ g_value_unset (&value);
+
+ g_print ("Calling (wrapped) unstringify, for string\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_unstringify (proxy,
+ "foo",
+ &value,
+ &error))
+ lose_gerror ("Failed to complete (wrapped) unstringify call", error);
+ if (!G_VALUE_HOLDS_STRING (&value))
+ lose ("(wrapped) unstringify call returned unexpected value type %d", (int) G_VALUE_TYPE (&value));
+ if (strcmp (g_value_get_string (&value), "foo"))
+ lose ("(wrapped) unstringify call returned unexpected string %s",
+ g_value_get_string (&value));
+
+ g_value_unset (&value);
+
+ g_print ("Calling (wrapped) unstringify, for int\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_unstringify (proxy,
+ "10",
+ &value,
+ &error))
+ lose_gerror ("Failed to complete (wrapped) unstringify call", error);
+ if (!G_VALUE_HOLDS_INT (&value))
+ lose ("(wrapped) unstringify call returned unexpected value type %d", (int) G_VALUE_TYPE (&value));
+ if (g_value_get_int (&value) != 10)
+ lose ("(wrapped) unstringify call returned unexpected integer %d",
+ g_value_get_int (&value));
+
+ g_value_unset (&value);
+ }
+
+ run_mainloop ();
+
+ {
+ GArray *array;
+ guint32 arraylen;
+
+ array = g_array_new (FALSE, TRUE, sizeof (guint32));
+
+ arraylen = 0;
+ g_print ("Calling (wrapped) zero-length recursive1\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_recursive1 (proxy, array,
+ &arraylen, &error))
+ lose_gerror ("Failed to complete (wrapped) zero-length recursive1 call", error);
+ if (arraylen != 0)
+ lose ("(wrapped) zero-length recursive1 call returned invalid length %u", arraylen);
+ }
+
+ {
+ GArray *array;
+ guint32 val;
+ guint32 arraylen;
+
+ array = g_array_new (FALSE, TRUE, sizeof (guint32));
+ val = 42;
+ g_array_append_val (array, val);
+ val = 69;
+ g_array_append_val (array, val);
+ val = 88;
+ g_array_append_val (array, val);
+ val = 26;
+ g_array_append_val (array, val);
+ val = 2;
+ g_array_append_val (array, val);
+
+ arraylen = 0;
+ g_print ("Calling (wrapped) recursive1\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_recursive1 (proxy, array,
+ &arraylen, &error))
+ lose_gerror ("Failed to complete (wrapped) recursive1 call", error);
+ if (arraylen != 5)
+ lose ("(wrapped) recursive1 call returned invalid length %u", arraylen);
+ }
+
+ {
+ GArray *array = NULL;
+ guint32 *arrayvals;
+
+ g_print ("Calling (wrapped) recursive2\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_recursive2 (proxy, 2, &array, &error))
+ lose_gerror ("Failed to complete (wrapped) Recursive2 call", error);
+
+ if (array == NULL)
+ lose ("(wrapped) Recursive2 call returned NULL");
+ if (array->len != 5)
+ lose ("(wrapped) Recursive2 call returned unexpected array length %u", array->len);
+
+ arrayvals = (guint32*) array->data;
+ if (arrayvals[0] != 42)
+ lose ("(wrapped) Recursive2 call returned unexpected value %d in position 0", arrayvals[0]);
+ if (arrayvals[1] != 26)
+ lose ("(wrapped) Recursive2 call returned unexpected value %d in position 1", arrayvals[1]);
+ if (arrayvals[4] != 2)
+ lose ("(wrapped) Recursive2 call returned unexpected value %d in position 4", arrayvals[4]);
+
+ g_array_free (array, TRUE);
+ }
+
+ run_mainloop ();
+
+ {
+ const char *strs[] = { "hello", "HellO", "HELLO", NULL };
+ char **strs_ret;
+
+ strs_ret = NULL;
+ g_print ("Calling (wrapped) many_uppercase\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_many_uppercase (proxy, strs, &strs_ret, &error))
+ lose_gerror ("Failed to complete (wrapped) ManyUppercase call", error);
+ g_assert (strs_ret != NULL);
+ if (strcmp ("HELLO", strs_ret[0]) != 0)
+ lose ("(wrapped) ManyUppercase call returned unexpected string %s", strs_ret[0]);
+ if (strcmp ("HELLO", strs_ret[1]) != 0)
+ lose ("(wrapped) ManyUppercase call returned unexpected string %s", strs_ret[1]);
+ if (strcmp ("HELLO", strs_ret[2]) != 0)
+ lose ("(wrapped) ManyUppercase call returned unexpected string %s", strs_ret[2]);
+
+ g_strfreev (strs_ret);
+ }
+
+ {
+ GHashTable *table;
+ guint len;
+
+ table = g_hash_table_new (g_str_hash, g_str_equal);
+ g_hash_table_insert (table, "moooo", "b");
+ g_hash_table_insert (table, "xxx", "cow!");
+
+ len = 0;
+ g_print ("Calling (wrapped) str_hash_len\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_str_hash_len (proxy, table, &len, &error))
+ lose_gerror ("(wrapped) StrHashLen call failed", error);
+ if (len != 13)
+ lose ("(wrapped) StrHashLen returned unexpected length %u", len);
+ g_hash_table_destroy (table);
+ }
+
+ {
+ GHashTable *table;
+ const char *val;
+
+ g_print ("Calling (wrapped) get_hash\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_hash (proxy, &table, &error))
+ lose_gerror ("(wrapped) GetHash call failed", error);
+ val = g_hash_table_lookup (table, "foo");
+ if (val == NULL || strcmp ("bar", val))
+ lose ("(wrapped) StrHashLen returned invalid value %s for key \"foo\"",
+ val ? val : "(null)");
+ val = g_hash_table_lookup (table, "baz");
+ if (val == NULL || strcmp ("whee", val))
+ lose ("(wrapped) StrHashLen returned invalid value %s for key \"whee\"",
+ val ? val : "(null)");
+ val = g_hash_table_lookup (table, "cow");
+ if (val == NULL || strcmp ("crack", val))
+ lose ("(wrapped) StrHashLen returned invalid value %s for key \"cow\"",
+ val ? val : "(null)");
+ if (g_hash_table_size (table) != 3)
+ lose ("(wrapped) StrHashLen returned unexpected hash size %u",
+ g_hash_table_size (table));
+
+ g_hash_table_destroy (table);
+ }
+
+ run_mainloop ();
+
+ {
+ GValueArray *vals;
+ GValueArray *vals_ret;
+ GValue *val;
+
+ vals = g_value_array_new (3);
+
+ g_value_array_append (vals, NULL);
+ g_value_init (g_value_array_get_nth (vals, vals->n_values - 1), G_TYPE_STRING);
+ g_value_set_string (g_value_array_get_nth (vals, 0), "foo");
+
+ g_value_array_append (vals, NULL);
+ g_value_init (g_value_array_get_nth (vals, vals->n_values - 1), G_TYPE_UINT);
+ g_value_set_uint (g_value_array_get_nth (vals, vals->n_values - 1), 42);
+
+ g_value_array_append (vals, NULL);
+ g_value_init (g_value_array_get_nth (vals, vals->n_values - 1), G_TYPE_VALUE);
+ val = g_new0 (GValue, 1);
+ g_value_init (val, G_TYPE_UCHAR);
+ g_value_set_uchar (val, '!');
+ g_value_set_boxed (g_value_array_get_nth (vals, vals->n_values - 1), val);
+
+ vals_ret = NULL;
+ g_print ("Calling SendCar\n");
+ if (!dbus_g_proxy_call (proxy, "SendCar", &error,
+ G_TYPE_VALUE_ARRAY, vals,
+ G_TYPE_INVALID,
+ G_TYPE_VALUE_ARRAY, &vals_ret,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete SendCar call", error);
+
+ g_assert (vals_ret != NULL);
+ g_assert (vals_ret->n_values == 2);
+
+ g_assert (G_VALUE_HOLDS_UINT (g_value_array_get_nth (vals_ret, 0)));
+ g_assert (g_value_get_uint (g_value_array_get_nth (vals_ret, 0)) == 43);
+
+ g_assert (G_VALUE_TYPE (g_value_array_get_nth (vals_ret, 1)) == DBUS_TYPE_G_OBJECT_PATH);
+ g_assert (!strcmp ("/org/freedesktop/DBus/GLib/Tests/MyTestObject2",
+ g_value_get_boxed (g_value_array_get_nth (vals_ret, 1))));
+
+ g_free (val);
+ g_value_array_free (vals);
+ g_value_array_free (vals_ret);
+ }
+
+ {
+ const gchar *in_sig = "a(iou)sq";
+ gchar *out_sig = NULL;
+
+ g_print ("Calling EchoSignature: %s\n", in_sig);
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_echo_signature (proxy,
+ in_sig, &out_sig, &error))
+ lose_gerror ("Failed to complete EchoSignature call", error);
+
+ if (out_sig == NULL)
+ lose ("EchoSignature returned NULL");
+ if (strcmp (in_sig, out_sig) != 0)
+ lose ("EchoSignature changed the signature");
+
+ g_print ("EchoSignature returned: %s\n", out_sig);
+
+ g_free (out_sig);
+ }
+
+ {
+ GValue *val;
+ GHashTable *table;
+ GHashTable *ret_table;
+
+ table = g_hash_table_new_full (g_str_hash, g_str_equal,
+ g_free, unset_and_free_gvalue);
+
+ val = g_new0 (GValue, 1);
+ g_value_init (val, G_TYPE_UINT);
+ g_value_set_uint (val, 42);
+ g_hash_table_insert (table, g_strdup ("foo"), val);
+
+ val = g_new0 (GValue, 1);
+ g_value_init (val, G_TYPE_STRING);
+ g_value_set_string (val, "hello");
+ g_hash_table_insert (table, g_strdup ("bar"), val);
+
+ ret_table = NULL;
+ g_print ("Calling ManyStringify\n");
+ if (!dbus_g_proxy_call (proxy, "ManyStringify", &error,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_VALUE), table,
+ G_TYPE_INVALID,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_VALUE), &ret_table,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete ManyStringify call", error);
+
+ g_assert (ret_table != NULL);
+ g_assert (g_hash_table_size (ret_table) == 2);
+
+ val = g_hash_table_lookup (ret_table, "foo");
+ g_assert (val != NULL);
+ g_assert (G_VALUE_HOLDS_STRING (val));
+ g_assert (!strcmp ("42", g_value_get_string (val)));
+
+ val = g_hash_table_lookup (ret_table, "bar");
+ g_assert (val != NULL);
+ g_assert (G_VALUE_HOLDS_STRING (val));
+ g_assert (!strcmp ("hello", g_value_get_string (val)));
+
+ g_hash_table_destroy (table);
+ g_hash_table_destroy (ret_table);
+ }
+
+ {
+ GPtrArray *in_array;
+ GPtrArray *out_array;
+ char **strs;
+ GArray *uints;
+
+ in_array = g_ptr_array_new ();
+
+ strs = g_new0 (char *, 3);
+ strs[0] = "foo";
+ strs[1] = "bar";
+ strs[2] = NULL;
+ g_ptr_array_add (in_array, strs);
+
+ strs = g_new0 (char *, 4);
+ strs[0] = "baz";
+ strs[1] = "whee";
+ strs[2] = "moo";
+ strs[3] = NULL;
+ g_ptr_array_add (in_array, strs);
+
+ out_array = NULL;
+ g_print ("Calling RecArrays\n");
+ if (!dbus_g_proxy_call (proxy, "RecArrays", &error,
+ dbus_g_type_get_collection ("GPtrArray", G_TYPE_STRV), in_array,
+ G_TYPE_INVALID,
+ dbus_g_type_get_collection ("GPtrArray",
+ dbus_g_type_get_collection ("GPtrArray",
+ G_TYPE_UINT)), &out_array,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete RecArrays call", error);
+ g_free (g_ptr_array_index (in_array, 0));
+ g_free (g_ptr_array_index (in_array, 1));
+
+ g_assert (out_array);
+ g_assert (out_array->len == 2);
+ uints = g_ptr_array_index (out_array, 0);
+ g_assert (uints);
+ g_assert (uints->len == 3);
+ g_assert (g_array_index (uints, guint, 0) == 10);
+ g_assert (g_array_index (uints, guint, 1) == 42);
+ g_assert (g_array_index (uints, guint, 2) == 27);
+ g_array_free (uints, TRUE);
+ uints = g_ptr_array_index (out_array, 1);
+ g_assert (uints);
+ g_assert (uints->len == 1);
+ g_assert (g_array_index (uints, guint, 0) == 30);
+ g_array_free (uints, TRUE);
+ g_ptr_array_free (out_array, TRUE);
+ }
+
+ {
+ guint val;
+ char *ret_path;
+ DBusGProxy *ret_proxy;
+
+ g_print ("Calling (wrapped) objpath\n");
+ if (!dbus_g_proxy_call (proxy, "Objpath", &error,
+ DBUS_TYPE_G_PROXY, proxy, G_TYPE_INVALID,
+ DBUS_TYPE_G_PROXY, &ret_proxy, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Objpath call", error);
+ if (strcmp ("/org/freedesktop/DBus/GLib/Tests/MyTestObject2",
+ dbus_g_proxy_get_path (ret_proxy)) != 0)
+ lose ("(wrapped) objpath call returned unexpected proxy %s",
+ dbus_g_proxy_get_path (ret_proxy));
+
+ g_print ("Doing get/increment val tests\n");
+ val = 1;
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_val (ret_proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetVal call", error);
+ if (val != 0)
+ lose ("(wrapped) GetVal returned invalid value %d", val);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment_val (ret_proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) IncrementVal call", error);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment_val (ret_proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) IncrementVal call", error);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment_val (ret_proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) IncrementVal call", error);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_val (ret_proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetVal call", error);
+ if (val != 3)
+ lose ("(wrapped) GetVal returned invalid value %d", val);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_val (proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetVal call", error);
+ if (val != 0)
+ lose ("(wrapped) GetVal returned invalid value %d", val);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_increment_val (proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) IncrementVal call", error);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_val (proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetVal call", error);
+ if (val != 1)
+ lose ("(wrapped) GetVal returned invalid value %d", val);
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_get_val (ret_proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetVal call", error);
+ if (val != 3)
+ lose ("(wrapped) GetVal returned invalid value %d", val);
+
+ g_object_unref (G_OBJECT (ret_proxy));
+
+ g_print ("Calling objpath again\n");
+ ret_proxy = NULL;
+
+ if (!dbus_g_proxy_call (proxy, "Objpath", &error,
+ DBUS_TYPE_G_OBJECT_PATH,
+ dbus_g_proxy_get_path (proxy),
+ G_TYPE_INVALID,
+ DBUS_TYPE_G_OBJECT_PATH,
+ &ret_path,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Objpath call 2", error);
+ if (strcmp ("/org/freedesktop/DBus/GLib/Tests/MyTestObject2", ret_path) != 0)
+ lose ("Objpath call 2 returned unexpected path %s",
+ ret_path);
+
+ ret_proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ ret_path,
+ "org.freedesktop.DBus.GLib.Tests.FooObject",
+ &error);
+ g_free (ret_path);
+
+ val = 0;
+ if (!org_freedesktop_DBus_GLib_Tests_FooObject_get_value (ret_proxy, &val, &error))
+ lose_gerror ("Failed to complete (wrapped) GetValue call", error);
+ if (val != 3)
+ lose ("(wrapped) GetValue returned invalid value %d", val);
+ }
+
+ run_mainloop ();
+
+ {
+ GPtrArray *objs;
+ guint i;
+
+ g_print ("Calling GetObjs\n");
+
+ if (!dbus_g_proxy_call (proxy, "GetObjs", &error, G_TYPE_INVALID,
+ dbus_g_type_get_collection ("GPtrArray", DBUS_TYPE_G_OBJECT_PATH),
+ &objs,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetObjs call", error);
+ if (objs->len != 2)
+ lose ("GetObjs call returned unexpected number of objects %d, expected 2",
+ objs->len);
+
+ if (strcmp ("/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ g_ptr_array_index (objs, 0)) != 0)
+ lose ("GetObjs call returned unexpected path \"%s\" in position 0; expected /org/freedesktop/DBus/GLib/Tests/MyTestObject", (char*) g_ptr_array_index (objs, 0));
+
+ if (strcmp ("/org/freedesktop/DBus/GLib/Tests/MyTestObject2",
+ g_ptr_array_index (objs, 1)) != 0)
+ lose ("GetObjs call returned unexpected path \"%s\" in position 1; expected /org/freedesktop/DBus/GLib/Tests/MyTestObject2", (char*) g_ptr_array_index (objs, 1));
+
+ for (i = 0; i < objs->len; i++)
+ g_free (g_ptr_array_index (objs, i));
+ g_ptr_array_free (objs, TRUE);
+ }
+
+ {
+ GValue *variant;
+ GArray *array;
+ gint i;
+
+ g_print ("Calling ProcessVariantOfArrayOfInts123\n");
+
+ array = g_array_sized_new (FALSE, FALSE, sizeof(gint), 3);
+ i = 1;
+ g_array_append_val (array, i);
+ i++;
+ g_array_append_val (array, i);
+ i++;
+ g_array_append_val (array, i);
+
+ variant = g_new0 (GValue, 1);
+ g_value_init (variant, dbus_g_type_get_collection ("GArray", G_TYPE_INT));
+ g_value_take_boxed (variant, array);
+
+ if (!dbus_g_proxy_call (proxy, "ProcessVariantOfArrayOfInts123", &error,
+ G_TYPE_VALUE, variant,
+ G_TYPE_INVALID,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to send a vairant of array of ints 1, 2 and 3!", error);
+
+ g_value_unset (variant);
+ g_free (variant);
+ }
+
+ for (i=0; i<3; i++)
+ {
+ gchar *val;
+ GHashTable *table;
+ GHashTable *subtable;
+ GHashTable *ret_table;
+
+ table = g_hash_table_new_full (g_str_hash, g_str_equal,
+ (GDestroyNotify) (g_free),
+ (GDestroyNotify) (g_hash_table_destroy));
+
+ subtable = g_hash_table_new_full (g_str_hash, g_str_equal,
+ (GDestroyNotify) (g_free),
+ (GDestroyNotify) (g_free));
+ g_hash_table_insert (subtable, g_strdup ("foo"), g_strdup("1"));
+ g_hash_table_insert (subtable, g_strdup ("bar"), g_strdup("2"));
+ g_hash_table_insert (subtable, g_strdup ("baz"), g_strdup("3"));
+
+ g_hash_table_insert (table, g_strdup("dict1"), subtable);
+
+ subtable = g_hash_table_new_full (g_str_hash, g_str_equal,
+ (GDestroyNotify) (g_free),
+ (GDestroyNotify) (g_free));
+ g_hash_table_insert (subtable, g_strdup ("foo"), g_strdup("4"));
+ g_hash_table_insert (subtable, g_strdup ("bar"), g_strdup("5"));
+ g_hash_table_insert (subtable, g_strdup ("baz"), g_strdup("6"));
+
+ g_hash_table_insert (table, g_strdup("dict2"), subtable);
+
+ subtable = NULL;
+
+ ret_table = NULL;
+
+ g_print ("Calling DictOfDicts\n");
+ if (!dbus_g_proxy_call (proxy, "DictOfDicts", &error,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING,
+ G_TYPE_STRING)), table,
+ G_TYPE_INVALID,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING,
+ dbus_g_type_get_map ("GHashTable", G_TYPE_STRING,
+ G_TYPE_STRING)), &ret_table,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete DictOfDicts call", error);
+
+ g_assert (ret_table != NULL);
+ g_assert (g_hash_table_size (ret_table) == 2);
+
+ subtable = g_hash_table_lookup (ret_table, "dict1");
+ g_assert(subtable);
+ g_assert (g_hash_table_size (subtable) == 3);
+
+ val = g_hash_table_lookup (subtable, "foo");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict1 1", val));
+
+ val = g_hash_table_lookup (subtable, "bar");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict1 2", val));
+
+ val = g_hash_table_lookup (subtable, "baz");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict1 3", val));
+
+ subtable = g_hash_table_lookup (ret_table, "dict2");
+ g_assert(subtable);
+ g_assert (g_hash_table_size (subtable) == 3);
+
+ val = g_hash_table_lookup (subtable, "foo");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict2 4", val));
+
+ val = g_hash_table_lookup (subtable, "bar");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict2 5", val));
+
+ val = g_hash_table_lookup (subtable, "baz");
+ g_assert (val != NULL);
+ g_assert (!strcmp ("dict2 6", val));
+
+ g_hash_table_destroy (table);
+ g_hash_table_destroy (ret_table);
+
+ g_mem_profile ();
+ }
+
+ for (i=0; i<3; i++)
+ {
+ GHashTable *table;
+ GHashTable *ret_table = NULL;
+ const gchar *foo[] = { "foo", NULL };
+ const gchar *bar[] = { "bar", "baz", NULL };
+ const gchar **ret_foo = NULL, **ret_bar = NULL;
+
+ table = g_hash_table_new (g_str_hash, g_str_equal);
+ g_hash_table_insert (table, "dub", foo);
+ g_hash_table_insert (table, "sox", bar);
+
+ g_print ("Calling DictOfSigs\n");
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_dict_of_sigs (proxy, table,
+ &ret_table, &error))
+ lose_gerror ("Failed to complete DictOfSigs call", error);
+
+ if (ret_table == NULL)
+ lose ("DictOfSigs didn't return a hash table");
+
+ if (g_hash_table_size (ret_table) != 2)
+ lose ("DictOfSigs has too many entries");
+
+ ret_foo = g_hash_table_lookup (ret_table, "dub");
+ ret_bar = g_hash_table_lookup (ret_table, "sox");
+
+ if (ret_foo == NULL || ret_bar == NULL)
+ lose ("DictOfSigs is missing entries");
+
+ if (ret_foo[0] == NULL ||
+ ret_foo[1] != NULL ||
+ strcmp (ret_foo[0], "foo") != 0)
+ lose ("DictOfSigs mangled foo");
+
+ if (ret_bar[0] == NULL ||
+ ret_bar[1] == NULL ||
+ ret_bar[2] != NULL ||
+ strcmp (ret_bar[0], "bar") != 0 ||
+ strcmp (ret_bar[1], "baz") != 0)
+ lose ("DictOfSigs mangled bar");
+
+ g_hash_table_destroy (table);
+ g_hash_table_destroy (ret_table);
+
+ g_mem_profile ();
+ }
+
+ for (i=0; i<3; i++)
+ {
+ GHashTable *table;
+ GHashTable *ret_table = NULL;
+ GPtrArray *foo, *bar;
+ GPtrArray *ret_foo = NULL, *ret_bar = NULL;
+
+ foo = g_ptr_array_new ();
+ g_ptr_array_add (foo, "/foo");
+
+ bar = g_ptr_array_new ();
+ g_ptr_array_add (bar, "/bar");
+ g_ptr_array_add (bar, "/baz");
+
+ table = g_hash_table_new (g_str_hash, g_str_equal);
+ g_hash_table_insert (table, "/foo", foo);
+ g_hash_table_insert (table, "/bar", bar);
+
+ g_print ("Calling DictOfObjs\n");
+
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_dict_of_objs (proxy, table,
+ &ret_table, &error))
+ lose_gerror ("Failed to complete DictOfObjs call", error);
+
+ g_ptr_array_free (foo, TRUE);
+ g_ptr_array_free (bar, TRUE);
+ g_hash_table_destroy (table);
+
+ if (ret_table == NULL)
+ lose ("DictOfObjs didn't return a hash table");
+
+ if (g_hash_table_size (ret_table) != 2)
+ lose ("DictOfObjs has too many entries");
+
+ ret_foo = g_hash_table_lookup (ret_table, "/foo");
+ ret_bar = g_hash_table_lookup (ret_table, "/bar");
+
+ if (ret_foo == NULL || ret_bar == NULL)
+ lose ("DictOfObjs is missing entries");
+
+ if (ret_foo->len != 1 ||
+ strcmp (g_ptr_array_index (ret_foo, 0), "/foo") != 0)
+ lose ("DictOfObjs mangled /foo");
+
+ if (ret_bar->len != 2 ||
+ strcmp (g_ptr_array_index (ret_bar, 0), "/bar") != 0 ||
+ strcmp (g_ptr_array_index (ret_bar, 1), "/baz") != 0)
+ lose ("DictOfObjs mangled /bar");
+
+ g_boxed_free (dbus_g_type_get_map ("GHashTable", DBUS_TYPE_G_OBJECT_PATH,
+ dbus_g_type_get_collection ("GPtrArray", DBUS_TYPE_G_OBJECT_PATH)), ret_table);
+
+ g_mem_profile ();
+ }
+
+
+
+ /* Signal handling tests */
+
+ g_print ("Testing signal handling\n");
+ dbus_g_proxy_add_signal (proxy, "Frobnicate", G_TYPE_INT, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy, "Frobnicate",
+ G_CALLBACK (frobnicate_signal_handler),
+ NULL, NULL);
+
+ g_print ("Calling EmitFrobnicate\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call", error);
+
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_frobnicate_received != 1)
+ lose ("Frobnicate signal received %d times, should have been 1", n_times_frobnicate_received);
+
+ g_print ("Calling EmitFrobnicate again\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call", error);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_frobnicate_received != 2)
+ lose ("Frobnicate signal received %d times, should have been 2", n_times_frobnicate_received);
+
+ g_object_unref (G_OBJECT (proxy));
+
+ run_mainloop ();
+
+ g_print ("Creating proxy for FooObject interface\n");
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.FooObject",
+ &error);
+
+ if (proxy == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ my_object_register_marshallers ();
+
+ dbus_g_proxy_add_signal (proxy, "Sig0", G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_INVALID);
+ dbus_g_proxy_add_signal (proxy, "Sig1", G_TYPE_STRING, G_TYPE_VALUE, G_TYPE_INVALID);
+ dbus_g_proxy_add_signal (proxy, "Sig2", DBUS_TYPE_G_STRING_STRING_HASHTABLE, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy, "Sig0",
+ G_CALLBACK (sig0_signal_handler),
+ NULL, NULL);
+ dbus_g_proxy_connect_signal (proxy, "Sig1",
+ G_CALLBACK (sig1_signal_handler),
+ NULL, NULL);
+ dbus_g_proxy_connect_signal (proxy, "Sig2",
+ G_CALLBACK (sig2_signal_handler),
+ NULL, NULL);
+
+ g_print ("Calling FooObject EmitSignals\n");
+ dbus_g_proxy_call_no_reply (proxy, "EmitSignals", G_TYPE_INVALID);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_sig0_received != 1)
+ lose ("Sig0 signal received %d times, should have been 1", n_times_sig0_received);
+ if (n_times_sig1_received != 1)
+ lose ("Sig1 signal received %d times, should have been 1", n_times_sig1_received);
+
+ g_print ("Calling FooObject EmitSignals and EmitSignal2\n");
+ dbus_g_proxy_call_no_reply (proxy, "EmitSignal2", G_TYPE_INVALID);
+ dbus_g_connection_flush (connection);
+
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_sig2_received != 1)
+ lose ("Sig2 signal received %d times, should have been 1", n_times_sig2_received);
+
+ g_print ("Calling FooObject EmitSignals two more times\n");
+ dbus_g_proxy_call_no_reply (proxy, "EmitSignals", G_TYPE_INVALID);
+ dbus_g_proxy_call_no_reply (proxy, "EmitSignals", G_TYPE_INVALID);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_sig0_received != 3)
+ lose ("Sig0 signal received %d times, should have been 3", n_times_sig0_received);
+ if (n_times_sig1_received != 3)
+ lose ("Sig1 signal received %d times, should have been 3", n_times_sig1_received);
+
+ /* Terminate again */
+ g_print ("Terminating service\n");
+ await_terminating_service = "org.freedesktop.DBus.GLib.TestService";
+ dbus_g_proxy_call_no_reply (proxy, "Terminate", G_TYPE_INVALID);
+
+ proxy_destroyed = FALSE;
+ proxy_destroy_and_nameowner = TRUE;
+ proxy_destroy_and_nameowner_complete = FALSE;
+
+ g_signal_connect (G_OBJECT (proxy),
+ "destroy",
+ G_CALLBACK (proxy_destroyed_cb),
+ NULL);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (await_terminating_service != NULL)
+ lose ("Didn't see name loss for \"org.freedesktop.DBus.GLib.TestService\"");
+ if (!proxy_destroyed)
+ lose ("Didn't get proxy_destroyed");
+ g_print ("Proxy destroyed successfully\n");
+
+ /* Don't need to unref, proxy was destroyed */
+
+ run_mainloop ();
+
+ /* Create a new proxy for the name; should not be associated */
+ proxy = dbus_g_proxy_new_for_name (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject");
+ g_assert (proxy != NULL);
+
+ proxy_destroyed = FALSE;
+ proxy_destroy_and_nameowner = FALSE;
+ proxy_destroy_and_nameowner_complete = FALSE;
+
+ g_signal_connect (G_OBJECT (proxy),
+ "destroy",
+ G_CALLBACK (proxy_destroyed_cb),
+ NULL);
+
+ if (!dbus_g_proxy_call (driver, "GetNameOwner", &error,
+ G_TYPE_STRING,
+ "org.freedesktop.DBus.GLib.TestService",
+ G_TYPE_INVALID,
+ G_TYPE_STRING,
+ &v_STRING_2,
+ G_TYPE_INVALID)) {
+ if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_NAME_HAS_NO_OWNER)
+ g_print ("Got expected error \"org.freedesktop.DBus.Error.NameHasNoOwner\"\n");
+ else
+ lose_gerror ("Unexpected error from GetNameOwner", error);
+ } else
+ lose ("GetNameOwner unexpectedly succeeded!");
+ g_clear_error (&error);
+
+ /* This will have the side-effect of activating the service, thus
+ * causing a NameOwnerChanged, which should let our name proxy
+ * get signals
+ */
+ g_print ("Calling Uppercase for name proxy\n");
+ if (!dbus_g_proxy_call (proxy, "Uppercase", &error,
+ G_TYPE_STRING, "bazwhee",
+ G_TYPE_INVALID,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Uppercase call", error);
+ g_free (v_STRING_2);
+
+ if (getenv ("DBUS_GLIB_TEST_SLEEP_AFTER_ACTIVATION1"))
+ g_usleep (8 * G_USEC_PER_SEC);
+
+ dbus_g_proxy_add_signal (proxy, "Frobnicate", G_TYPE_INT, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy, "Frobnicate",
+ G_CALLBACK (frobnicate_signal_handler),
+ NULL, NULL);
+
+ g_print ("Calling EmitFrobnicate\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call", error);
+
+ n_times_frobnicate_received = 0;
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_frobnicate_received != 1)
+ lose ("Frobnicate signal received %d times, should have been 1", n_times_frobnicate_received);
+
+ /* Now terminate the service, then start it again (implicitly) and wait for signals */
+ g_print ("Terminating service (2)\n");
+ await_terminating_service = "org.freedesktop.DBus.GLib.TestService";
+ dbus_g_proxy_call_no_reply (proxy, "Terminate", G_TYPE_INVALID);
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+ if (await_terminating_service != NULL)
+ lose ("Didn't see name loss for \"org.freedesktop.DBus.GLib.TestService\"");
+
+ if (proxy_destroyed)
+ lose ("Unexpectedly got proxy_destroyed!");
+
+ n_times_frobnicate_received = 0;
+
+ g_print ("Calling EmitFrobnicate (2)\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call", error);
+
+ if (getenv ("DBUS_GLIB_TEST_SLEEP_AFTER_ACTIVATION2"))
+ g_usleep (8 * G_USEC_PER_SEC);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_frobnicate_received != 1)
+ lose ("Frobnicate signal received %d times, should have been 1", n_times_frobnicate_received);
+
+ if (proxy_destroyed)
+ lose ("Unexpectedly got proxy_destroyed!");
+
+ /* Create another proxy for the name; should be associated immediately */
+ proxy2 = dbus_g_proxy_new_for_name (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject");
+ g_assert (proxy2 != NULL);
+
+ dbus_g_proxy_add_signal (proxy2, "Frobnicate", G_TYPE_INT, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy2, "Frobnicate",
+ G_CALLBACK (frobnicate_signal_handler_2),
+ NULL, NULL);
+
+ g_print ("Calling EmitFrobnicate (3)\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call", error);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (n_times_frobnicate_received != 2)
+ lose ("Frobnicate signal received %d times for 1st proxy, should have been 2", n_times_frobnicate_received);
+ if (n_times_frobnicate_received_2 != 1)
+ lose ("Frobnicate signal received %d times for 2nd proxy, should have been 1", n_times_frobnicate_received_2);
+
+ g_object_unref (G_OBJECT (proxy));
+ g_object_unref (G_OBJECT (proxy2));
+
+ run_mainloop ();
+
+ /* Tests for a "compatibilty" object path. This is the same object as above, just
+ * at a different path.
+ */
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/Compat/MyTestObjectCompat",
+ "org.freedesktop.DBus.GLib.Tests.MyObject",
+ &error);
+ dbus_g_proxy_add_signal (proxy, "Frobnicate", G_TYPE_INT, G_TYPE_INVALID);
+
+ dbus_g_proxy_connect_signal (proxy, "Frobnicate",
+ G_CALLBACK (frobnicate_signal_handler_compat),
+ NULL, NULL);
+
+ g_print ("Calling EmitFrobnicate (compat)\n");
+ if (!dbus_g_proxy_call (proxy, "EmitFrobnicate", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete EmitFrobnicate call on compat proxy", error);
+
+ g_main_loop_run (loop);
+
+ if (n_times_compat_frobnicate_received != 1)
+ lose ("Frobnicate signal received %d times for compat proxy, should have been 1", n_times_compat_frobnicate_received);
+
+ g_object_unref (proxy);
+
+ /* Test introspection */
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.Introspectable",
+ &error);
+ if (proxy == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ g_print ("Testing introspect\n");
+ if (!dbus_g_proxy_call (proxy, "Introspect", &error,
+ G_TYPE_INVALID,
+ G_TYPE_STRING, &v_STRING_2,
+ G_TYPE_INVALID))
+ lose_gerror ("Failed to complete Introspect call", error);
+
+ /* Could just do strcmp(), but that seems more fragile */
+ {
+ NodeInfo *node;
+ GSList *elt;
+ gboolean found_introspectable;
+ gboolean found_properties;
+ gboolean found_myobject;
+ gboolean found_fooobject;
+
+ node = description_load_from_string (v_STRING_2, strlen (v_STRING_2), &error);
+ if (!node)
+ lose_gerror ("Failed to parse introspection data: %s", error);
+
+ found_introspectable = FALSE;
+ found_properties = FALSE;
+ found_myobject = FALSE;
+ found_fooobject = FALSE;
+ for (elt = node_info_get_interfaces (node); elt ; elt = elt->next)
+ {
+ InterfaceInfo *iface = elt->data;
+
+ if (!found_introspectable && strcmp (interface_info_get_name (iface), "org.freedesktop.DBus.Introspectable") == 0)
+ found_introspectable = TRUE;
+ else if (!found_properties && strcmp (interface_info_get_name (iface), "org.freedesktop.DBus.Properties") == 0)
+ found_properties = TRUE;
+ else if (!found_myobject && strcmp (interface_info_get_name (iface), "org.freedesktop.DBus.GLib.Tests.MyObject") == 0)
+ {
+ GSList *elt;
+ gboolean found_manyargs;
+ gboolean found_no_touching = FALSE;
+
+ found_myobject = TRUE;
+
+ found_manyargs = FALSE;
+ for (elt = interface_info_get_methods (iface); elt; elt = elt->next)
+ {
+ MethodInfo *method;
+
+ method = elt->data;
+ if (strcmp (method_info_get_name (method), "ManyArgs") == 0)
+ {
+ found_manyargs = TRUE;
+ break;
+ }
+ }
+ if (!found_manyargs)
+ lose ("Missing method org.freedesktop.DBus.GLib.Tests.MyObject.ManyArgs");
+ for (elt = interface_info_get_properties (iface); elt; elt = elt->next)
+ {
+ PropertyInfo *prop = elt->data;
+
+ if (strcmp (property_info_get_name (prop), "no-touching") == 0)
+ {
+ if (property_info_get_access (prop) != PROPERTY_READ)
+ lose ("property no-touching had incorrect access %d", property_info_get_access (prop));
+ else
+ {
+ found_no_touching = TRUE;
+ break;
+ }
+ }
+ }
+ if (!found_no_touching)
+ lose ("didn't find property \"no-touching\" in org.freedesktop.DBus.GLib.Tests.MyObject");
+ }
+ else if (!found_fooobject && strcmp (interface_info_get_name (iface), "org.freedesktop.DBus.GLib.Tests.FooObject") == 0)
+ found_fooobject = TRUE;
+ else
+ lose ("Unexpected or duplicate interface %s", interface_info_get_name (iface));
+ }
+
+ if (!(found_introspectable && found_myobject && found_properties))
+ lose ("Missing interface");
+ g_free (node);
+ }
+ g_free (v_STRING_2);
+
+ /* Properties tests */
+ property_proxy = dbus_g_proxy_new_from_proxy (proxy, DBUS_INTERFACE_PROPERTIES, NULL);
+ g_object_unref (proxy);
+ proxy = NULL;
+
+ g_print ("Calling GetProperty (1)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "this_is_a_string",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_STRING));
+ g_assert (!strcmp (g_value_get_string (&value), ""));
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling SetProperty (1)\n");
+ {
+ GValue value = {0,};
+ g_value_init (&value, G_TYPE_STRING);
+ g_value_set_string (&value, "testing value");
+ if (!dbus_g_proxy_call (property_proxy, "Set", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "this_is_a_string",
+ G_TYPE_VALUE, &value, G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete SetProperty call", error);
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty of read-only property\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "no-touching",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty no-touching call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_UINT));
+ g_assert (g_value_get_uint (&value) == 42);
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling SetProperty (1)\n");
+ {
+ GValue value = {0,};
+ g_value_init (&value, G_TYPE_UINT);
+ g_value_set_uint (&value, 40);
+ if (dbus_g_proxy_call (property_proxy, "Set", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "no-touching",
+ G_TYPE_VALUE, &value, G_TYPE_INVALID, G_TYPE_INVALID))
+ lose ("Unexpected success from SetProperty call for read-only value \"no-touching\"");
+ g_clear_error (&error);
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty of read-only property (again)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "no-touching",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_UINT));
+ g_assert (g_value_get_uint (&value) == 42);
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty (2)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "this_is_a_string",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_STRING));
+ g_assert (!strcmp (g_value_get_string (&value), "testing value"));
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty: SuperStudly\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "SuperStudly",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_DOUBLE));
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty: super-studly\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "super-studly",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_DOUBLE));
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty: super_studly\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "super_studly",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed to complete GetProperty call", error);
+ g_assert (G_VALUE_HOLDS (&value, G_TYPE_DOUBLE));
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty on unknown property\n");
+ {
+ GValue value = {0,};
+ if (dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "SomeUnknownProperty",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose ("Unexpected success for GetProperty call of unknown property");
+
+ g_clear_error (&error);
+ }
+
+ /* These two are expected to pass unless we call disable_legacy_property_access */
+
+ g_print ("Calling GetProperty on not-exported property (legacy enabled)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "should-be-hidden",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed GetProperty call of \"should-be-hidden\" property", error);
+ g_assert (G_VALUE_HOLDS_BOOLEAN (&value));
+ g_assert (g_value_get_boolean (&value) == FALSE);
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling GetProperty on not-exported property (legacy enabled)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "ShouldBeHidden",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed GetProperty call of \"ShouldBeHidden\" property", error);
+
+ g_value_unset (&value);
+ }
+
+ g_print ("Calling SetProperty on not-exported property (legacy enabled)\n");
+ {
+ GValue value = {0,};
+ g_value_init (&value, G_TYPE_BOOLEAN);
+ g_value_set_boolean (&value, TRUE);
+ if (dbus_g_proxy_call (property_proxy, "Set", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "should-be-hidden",
+ G_TYPE_VALUE, &value,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose ("Unexpected success from SetProperty call of \"should-be-hidden\" property");
+ g_value_unset (&value);
+ g_clear_error (&error);
+ }
+
+ g_print ("Calling GetProperty on not-exported property (legacy enabled)\n");
+ {
+ GValue value = {0,};
+ if (!dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "should-be-hidden",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose_gerror ("Failed GetProperty call of \"should-be-hidden\" property", error);
+ g_assert (G_VALUE_HOLDS_BOOLEAN (&value));
+ g_assert (g_value_get_boolean (&value) == FALSE);
+ g_value_unset (&value);
+ }
+
+ /* Test GetAll */
+ /* 'testing value' set earlier by the SetProperty tests */
+ test_base_class_get_all (connection,
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "testing value");
+
+ /* "" is base class default for this_is_a_string property since the
+ * property isn't marked with G_PARAM_CONSTRUT.
+ */
+ test_base_class_get_all (connection,
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObjectSubclass",
+ "");
+
+ /* Finally test GetAll of a subclass on a different interface to ensure that
+ * the right properties are returned (fdo #19145)
+ */
+ test_subclass_get_all (connection, "/org/freedesktop/DBus/GLib/Tests/MyTestObjectSubclass");
+
+ /* Now, call disable_legacy_property_access */
+
+ g_assert (proxy == NULL);
+ proxy = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject",
+ &error);
+
+ if (!dbus_g_proxy_call (proxy, "UnsafeDisableLegacyPropertyAccess", &error,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose_gerror ("Failed to invoke UnsafeDisableLegacyPropertyAccess", error);
+
+ g_object_unref (proxy);
+ proxy = NULL;
+
+ g_print ("Calling GetProperty on not-exported property (legacy *disabled*)\n");
+ {
+ GValue value = {0,};
+ if (dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "should-be-hidden",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose ("Unexpected success from GetProperty call of \"should-be-hidden\" property");
+ g_clear_error (&error);
+ }
+
+ g_print ("Calling GetProperty on not-exported property (legacy *disabled*)\n");
+ {
+ GValue value = {0,};
+ if (dbus_g_proxy_call (property_proxy, "Get", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "ShouldBeHidden",
+ G_TYPE_INVALID,
+ G_TYPE_VALUE, &value, G_TYPE_INVALID))
+ lose ("Unexpected success from GetProperty call of \"ShouldBeHidden\" property");
+ g_clear_error (&error);
+ }
+
+ g_print ("Calling SetProperty on not-exported property (legacy *disabled*)\n");
+ {
+ GValue value = {0,};
+ g_value_init (&value, G_TYPE_BOOLEAN);
+ g_value_set_boolean (&value, FALSE);
+ if (dbus_g_proxy_call (property_proxy, "Set", &error,
+ G_TYPE_STRING, "org.freedesktop.DBus.GLib.Tests.MyObject",
+ G_TYPE_STRING, "should-be-hidden",
+ G_TYPE_VALUE, &value,
+ G_TYPE_INVALID, G_TYPE_INVALID))
+ lose ("Unexpected success from SetProperty call of \"should-be-hidden\" property");
+ g_value_unset (&value);
+ g_clear_error (&error);
+ }
+
+ g_object_unref (property_proxy);
+ property_proxy = NULL;
+
+ test_terminate_proxy1 = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject",
+ &error);
+
+ if (test_terminate_proxy1 == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ test_terminate_proxy2 = dbus_g_proxy_new_for_name_owner (connection,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject",
+ &error);
+
+ if (test_terminate_proxy2 == NULL)
+ lose_gerror ("Failed to create proxy for name owner", error);
+
+ g_print ("Testing duplicate proxy destruction\n");
+ await_terminating_service = "org.freedesktop.DBus.GLib.TestService";
+ dbus_g_proxy_call_no_reply (test_terminate_proxy1, "Terminate", G_TYPE_INVALID);
+
+ proxy_destroyed = FALSE;
+ proxy_destroy_and_nameowner = TRUE;
+ proxy_destroy_and_nameowner_complete = FALSE;
+
+ g_signal_connect (G_OBJECT (test_terminate_proxy1),
+ "destroy",
+ G_CALLBACK (test_terminate_proxy1_destroyed_cb),
+ NULL);
+
+ dbus_g_connection_flush (connection);
+ exit_timeout = g_timeout_add (5000, timed_exit, loop);
+ g_main_loop_run (loop);
+
+ if (await_terminating_service != NULL)
+ lose ("Didn't see name loss for \"org.freedesktop.DBus.GLib.TestService\"");
+ if (!proxy_destroyed)
+ lose ("Didn't get proxy_destroyed");
+ if (test_terminate_proxy2)
+ lose ("Duplicate proxy wasn'tdestroyed");
+
+ g_print ("Proxy and duplicate destroyed successfully\n");
+
+ g_print ("Beginning private connection tests\n");
+
+ {
+ DBusGConnection *privconn = dbus_g_bus_get_private (DBUS_BUS_SESSION, NULL, &error);
+
+ if (privconn == NULL)
+ lose_gerror ("Failed to open private connection to bus", error);
+ g_assert (privconn != connection);
+
+ proxy = dbus_g_proxy_new_for_name (privconn,
+ "org.freedesktop.DBus.GLib.TestService",
+ "/org/freedesktop/DBus/GLib/Tests/MyTestObject",
+ "org.freedesktop.DBus.GLib.Tests.MyObject");
+
+ g_print ("[private connection] Calling (wrapped) do_nothing\n");
+ if (!org_freedesktop_DBus_GLib_Tests_MyObject_do_nothing (proxy, &error))
+ lose_gerror ("Failed to complete (wrapped) DoNothing call", error);
+
+ g_object_unref (G_OBJECT (proxy));
+ }
+
+ g_object_unref (G_OBJECT (driver));
+
+ g_print ("Successfully completed %s\n", argv[0]);
+
+ return 0;
+}