mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
931d804022
This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- GPL-2.0-or-later : 25 LGPL-2.1-or-later : 1 GPL-2.0-only : 2 BSD-2-Clause : 1 License: GPL-2.0-or-later unit/test-hog.c unit/test-eir.c unit/test-gobex-header.c unit/test-crc.c unit/test-avrcp.c unit/test-ringbuf.c unit/test-gobex-apparam.c unit/test-gobex.c unit/test-hfp.c unit/test-textfile.c unit/test-avdtp.c unit/test-sdp.c unit/test-gatt.c unit/test-avctp.c unit/test-gattrib.c unit/test-queue.c unit/test-gobex-packet.c unit/test-uuid.c unit/test-crypto.c unit/test-uhid.c unit/test-gdbus-client.c unit/test-midi.c unit/test-lib.c unit/test-mgmt.c unit/test-gobex-transfer.c License: LGPL-2.1-or-later unit/test-mesh-crypto.c License: GPL-2.0-only unit/util.h unit/util.c License: BSD-2-Clause unit/test-ecc.c
953 lines
24 KiB
C
953 lines
24 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2011 Intel Corporation
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <glib.h>
|
|
|
|
#include "gdbus/gdbus.h"
|
|
|
|
#include "src/shared/tester.h"
|
|
|
|
#define SERVICE_NAME "org.bluez.unit.test_gdbus_client"
|
|
#define SERVICE_NAME1 "org.bluez.unit.test_gdbus_client1"
|
|
#define SERVICE_PATH "/org/bluez/unit/test_gdbus_client"
|
|
|
|
struct context {
|
|
DBusConnection *dbus_conn;
|
|
GDBusClient *dbus_client;
|
|
GDBusProxy *proxy;
|
|
void *data;
|
|
gboolean client_ready;
|
|
guint timeout_source;
|
|
};
|
|
|
|
static const GDBusMethodTable methods[] = {
|
|
{ }
|
|
};
|
|
|
|
static const GDBusSignalTable signals[] = {
|
|
{ }
|
|
};
|
|
|
|
static const GDBusPropertyTable properties[] = {
|
|
{ }
|
|
};
|
|
|
|
static struct context *create_context(void)
|
|
{
|
|
struct context *context = g_new0(struct context, 1);
|
|
DBusError err;
|
|
|
|
dbus_error_init(&err);
|
|
|
|
context->dbus_conn = g_dbus_setup_private(DBUS_BUS_SESSION,
|
|
SERVICE_NAME, &err);
|
|
if (context->dbus_conn == NULL) {
|
|
if (dbus_error_is_set(&err)) {
|
|
tester_debug("D-Bus setup failed: %s", err.message);
|
|
dbus_error_free(&err);
|
|
}
|
|
|
|
g_free(context);
|
|
tester_test_abort();
|
|
return NULL;
|
|
}
|
|
|
|
/* Avoid D-Bus library calling _exit() before next test finishes. */
|
|
dbus_connection_set_exit_on_disconnect(context->dbus_conn, FALSE);
|
|
|
|
g_dbus_attach_object_manager(context->dbus_conn);
|
|
context->client_ready = FALSE;
|
|
|
|
return context;
|
|
}
|
|
|
|
static void destroy_context(struct context *context)
|
|
{
|
|
if (context == NULL)
|
|
return;
|
|
|
|
tester_test_passed();
|
|
|
|
if (context->timeout_source > 0)
|
|
g_source_remove(context->timeout_source);
|
|
|
|
g_dbus_detach_object_manager(context->dbus_conn);
|
|
|
|
g_dbus_unregister_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME);
|
|
|
|
dbus_connection_flush(context->dbus_conn);
|
|
dbus_connection_close(context->dbus_conn);
|
|
dbus_connection_unref(context->dbus_conn);
|
|
|
|
g_free(context->data);
|
|
g_free(context);
|
|
}
|
|
|
|
static gboolean timeout_handler(gpointer user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("timeout triggered");
|
|
|
|
context->timeout_source = 0;
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void connect_handler(DBusConnection *connection, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("service connected");
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static void disconnect_handler(DBusConnection *connection, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("service disconnected");
|
|
|
|
destroy_context(context);
|
|
}
|
|
|
|
static void simple_client(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_connect_watch(context->dbus_client,
|
|
connect_handler, context);
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
}
|
|
|
|
static void client_connect_disconnect(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, properties, NULL, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_connect_watch(context->dbus_client,
|
|
connect_handler, context);
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
|
|
context->timeout_source = g_timeout_add_seconds(10, timeout_handler,
|
|
context);
|
|
}
|
|
|
|
static gboolean get_dict(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, void *data)
|
|
{
|
|
DBusMessageIter dict;
|
|
const char *string = "value";
|
|
dbus_bool_t boolean = TRUE;
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
|
|
|
|
g_dbus_dict_append_entry(&dict, "String", DBUS_TYPE_STRING, &string);
|
|
g_dbus_dict_append_entry(&dict, "Boolean",
|
|
DBUS_TYPE_BOOLEAN, &boolean);
|
|
|
|
dbus_message_iter_close_container(iter, &dict);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void proxy_get_dict(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter, dict, var1, var2, entry1, entry2;
|
|
const char *string;
|
|
dbus_bool_t boolean;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "Dict", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_ARRAY);
|
|
|
|
dbus_message_iter_recurse(&iter, &dict);
|
|
g_assert(dbus_message_iter_get_arg_type(&dict) ==
|
|
DBUS_TYPE_DICT_ENTRY);
|
|
|
|
dbus_message_iter_recurse(&dict, &entry1);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry1) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&entry1, &string);
|
|
g_assert(g_strcmp0(string, "String") == 0);
|
|
|
|
dbus_message_iter_next(&entry1);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry1) == DBUS_TYPE_VARIANT);
|
|
|
|
dbus_message_iter_recurse(&entry1, &var1);
|
|
g_assert(dbus_message_iter_get_arg_type(&var1) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&var1, &string);
|
|
g_assert(g_strcmp0(string, "value") == 0);
|
|
|
|
dbus_message_iter_next(&dict);
|
|
g_assert(dbus_message_iter_get_arg_type(&dict) ==
|
|
DBUS_TYPE_DICT_ENTRY);
|
|
|
|
dbus_message_iter_recurse(&dict, &entry2);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry2) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&entry2, &string);
|
|
g_assert(g_strcmp0(string, "Boolean") == 0);
|
|
|
|
dbus_message_iter_next(&entry2);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry2) == DBUS_TYPE_VARIANT);
|
|
|
|
dbus_message_iter_recurse(&entry2, &var2);
|
|
g_assert(dbus_message_iter_get_arg_type(&var2) == DBUS_TYPE_BOOLEAN);
|
|
|
|
dbus_message_iter_get_basic(&var2, &boolean);
|
|
g_assert(boolean == TRUE);
|
|
|
|
dbus_message_iter_next(&dict);
|
|
g_assert(dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_INVALID);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static void client_get_dict_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable dict_properties[] = {
|
|
{ "Dict", "a{sv}", get_dict },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, dict_properties,
|
|
NULL, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client, proxy_get_dict,
|
|
NULL, NULL, context);
|
|
}
|
|
|
|
static void proxy_get_string(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter;
|
|
const char *string;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "String", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_STRING);
|
|
|
|
if (context->proxy) {
|
|
g_assert(context->proxy == proxy);
|
|
g_dbus_proxy_unref(context->proxy);
|
|
}
|
|
|
|
dbus_message_iter_get_basic(&iter, &string);
|
|
g_assert_cmpstr(string, ==, "value");
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static gboolean get_string(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, void *data)
|
|
{
|
|
struct context *context = data;
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &context->data);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void client_get_string_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
context->data = g_strdup("value");
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client, proxy_get_string,
|
|
NULL, NULL, context);
|
|
}
|
|
|
|
static void proxy_get_boolean(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter;
|
|
dbus_bool_t value;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "Boolean", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_BOOLEAN);
|
|
|
|
dbus_message_iter_get_basic(&iter, &value);
|
|
g_assert(value == TRUE);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static gboolean get_boolean(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, void *data)
|
|
{
|
|
dbus_bool_t value = TRUE;
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void client_get_boolean_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable boolean_properties[] = {
|
|
{ "Boolean", "b", get_boolean },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, boolean_properties,
|
|
NULL, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_get_boolean,
|
|
NULL, NULL, context);
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
}
|
|
|
|
static void proxy_get_array(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter, entry;
|
|
const char *value1, *value2;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "Array", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_ARRAY);
|
|
|
|
dbus_message_iter_recurse(&iter, &entry);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&entry, &value1);
|
|
g_assert(g_strcmp0(value1, "value1") == 0);
|
|
|
|
dbus_message_iter_next(&entry);
|
|
g_assert(dbus_message_iter_get_arg_type(&entry) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&entry, &value2);
|
|
g_assert(g_strcmp0(value2, "value2") == 0);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static gboolean get_array(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, void *data)
|
|
{
|
|
const char *value[2] = { "value1", "value2" };
|
|
DBusMessageIter array;
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "s", &array);
|
|
|
|
dbus_message_iter_append_basic(&array, DBUS_TYPE_STRING, &value[0]);
|
|
dbus_message_iter_append_basic(&array, DBUS_TYPE_STRING, &value[1]);
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void client_get_array_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable array_properties[] = {
|
|
{ "Array", "as", get_array },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, array_properties,
|
|
NULL, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client, proxy_get_array,
|
|
NULL, NULL, context);
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
}
|
|
|
|
static void proxy_get_uint64(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter;
|
|
guint64 value;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "Number", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_UINT64);
|
|
|
|
dbus_message_iter_get_basic(&iter, &value);
|
|
g_assert(value == G_MAXUINT64);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static gboolean get_uint64(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, void *data)
|
|
{
|
|
guint64 value = G_MAXUINT64;
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT64, &value);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void client_get_uint64_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable uint64_properties[] = {
|
|
{ "Number", "t", get_uint64 },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, uint64_properties,
|
|
NULL, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_get_uint64,
|
|
NULL, NULL, context);
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
}
|
|
|
|
static void property_set_success(const DBusError *err, void *user_data)
|
|
{
|
|
g_assert(!dbus_error_is_set(err));
|
|
}
|
|
|
|
static void proxy_set_string(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
DBusMessageIter iter;
|
|
const char *string;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "String", &iter));
|
|
g_assert(dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(&iter, &string);
|
|
g_assert(g_strcmp0(string, "value") == 0);
|
|
|
|
string = "value1";
|
|
g_assert(g_dbus_proxy_set_property_basic(proxy, "String",
|
|
DBUS_TYPE_STRING, &string,
|
|
property_set_success, user_data,
|
|
NULL));
|
|
}
|
|
|
|
static void property_string_changed(GDBusProxy *proxy, const char *name,
|
|
DBusMessageIter *iter, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
const char *string;
|
|
|
|
tester_debug("property %s changed", name);
|
|
|
|
g_assert(g_strcmp0(name, "String") == 0);
|
|
g_assert(dbus_message_iter_get_arg_type(iter) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(iter, &string);
|
|
g_assert(g_strcmp0(string, "value1") == 0);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static void set_string(const GDBusPropertyTable *property,
|
|
DBusMessageIter *iter, GDBusPendingPropertySet id,
|
|
void *data)
|
|
{
|
|
struct context *context = data;
|
|
const char *string;
|
|
|
|
g_assert(dbus_message_iter_get_arg_type(iter) == DBUS_TYPE_STRING);
|
|
|
|
dbus_message_iter_get_basic(iter, &string);
|
|
g_assert(g_strcmp0(string, "value1") == 0);
|
|
|
|
g_free(context->data);
|
|
context->data = g_strdup(string);
|
|
|
|
g_dbus_emit_property_changed(context->dbus_conn, SERVICE_PATH,
|
|
SERVICE_NAME, "String");
|
|
|
|
g_dbus_pending_property_success(id);
|
|
}
|
|
|
|
static void client_set_string_property(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
context->data = g_strdup("value");
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client, proxy_set_string,
|
|
NULL, property_string_changed,
|
|
context);
|
|
}
|
|
|
|
static gboolean string_exists(const GDBusPropertyTable *property, void *data)
|
|
{
|
|
struct context *context = data;
|
|
|
|
return context->data != NULL;
|
|
}
|
|
|
|
static gboolean timeout_test(gpointer user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("timeout triggered");
|
|
|
|
context->timeout_source = 0;
|
|
|
|
g_assert_not_reached();
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean emit_string_change(void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
context->data = g_strdup("value1");
|
|
|
|
g_dbus_emit_property_changed(context->dbus_conn, SERVICE_PATH,
|
|
SERVICE_NAME, "String");
|
|
|
|
context->timeout_source = g_timeout_add_seconds(2, timeout_test,
|
|
context);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void proxy_string_changed(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusMessageIter iter;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(!g_dbus_proxy_get_property(proxy, "String", &iter));
|
|
|
|
g_idle_add(emit_string_change, context);
|
|
}
|
|
|
|
static void client_string_changed(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, NULL, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_string_changed, NULL,
|
|
property_string_changed,
|
|
context);
|
|
}
|
|
|
|
static void property_check_order(const DBusError *err, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
GDBusProxy *proxy = context->proxy;
|
|
DBusMessageIter iter;
|
|
const char *string;
|
|
|
|
g_assert(!dbus_error_is_set(err));
|
|
|
|
g_assert(g_dbus_proxy_get_property(proxy, "String", &iter));
|
|
|
|
dbus_message_iter_get_basic(&iter, &string);
|
|
g_assert(g_strcmp0(string, "value1") == 0);
|
|
|
|
g_dbus_client_unref(context->dbus_client);
|
|
}
|
|
|
|
static void proxy_check_order(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
const char *string;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
context->proxy = proxy;
|
|
string = "value1";
|
|
g_assert(g_dbus_proxy_set_property_basic(proxy, "String",
|
|
DBUS_TYPE_STRING, &string,
|
|
property_check_order, context,
|
|
NULL));
|
|
}
|
|
|
|
static void client_check_order(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
context->data = g_strdup("value");
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_check_order, NULL, NULL,
|
|
context);
|
|
}
|
|
|
|
static void proxy_removed(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("proxy removed");
|
|
|
|
destroy_context(context);
|
|
}
|
|
|
|
static void proxy_set_removed(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_set_removed_watch(proxy, proxy_removed, context));
|
|
|
|
context->timeout_source = g_timeout_add_seconds(2, timeout_test,
|
|
context);
|
|
|
|
g_dbus_unregister_interface(context->dbus_conn, SERVICE_PATH,
|
|
SERVICE_NAME);
|
|
}
|
|
|
|
static void client_proxy_removed(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_set_removed, NULL, NULL,
|
|
context);
|
|
}
|
|
|
|
static void client_no_object_manager(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
DBusMessageIter iter;
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
context->data = g_strdup("value");
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new_full(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH,
|
|
NULL);
|
|
|
|
g_dbus_client_set_disconnect_watch(context->dbus_client,
|
|
disconnect_handler, context);
|
|
|
|
context->proxy = g_dbus_proxy_new(context->dbus_client, SERVICE_PATH,
|
|
SERVICE_NAME);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client, proxy_get_string,
|
|
NULL, NULL, context);
|
|
|
|
g_assert(!g_dbus_proxy_get_property(context->proxy, "String", &iter));
|
|
}
|
|
|
|
static void proxy_force_disconnect(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
DBusConnection *conn = context->data;
|
|
|
|
tester_debug("proxy %s found", g_dbus_proxy_get_interface(proxy));
|
|
|
|
g_assert(g_dbus_proxy_set_removed_watch(proxy, proxy_removed, context));
|
|
|
|
context->timeout_source = g_timeout_add_seconds(2, timeout_test,
|
|
context);
|
|
|
|
g_dbus_detach_object_manager(conn);
|
|
|
|
g_dbus_unregister_interface(conn, SERVICE_PATH, SERVICE_NAME1);
|
|
|
|
dbus_connection_flush(conn);
|
|
dbus_connection_close(conn);
|
|
dbus_connection_unref(conn);
|
|
context->data = NULL;
|
|
}
|
|
|
|
static void client_force_disconnect(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
DBusConnection *conn;
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
conn = g_dbus_setup_private(DBUS_BUS_SESSION, SERVICE_NAME1, NULL);
|
|
g_assert(conn != NULL);
|
|
|
|
/* Avoid D-Bus library calling _exit() before next test finishes. */
|
|
dbus_connection_set_exit_on_disconnect(conn, FALSE);
|
|
g_dbus_attach_object_manager(conn);
|
|
context->data = conn;
|
|
|
|
g_dbus_register_interface(conn, SERVICE_PATH, SERVICE_NAME1,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME1, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_force_disconnect, NULL, NULL,
|
|
context);
|
|
}
|
|
|
|
static void client_ready_watch(GDBusClient *client, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
context->client_ready = TRUE;
|
|
}
|
|
|
|
static void proxy_added(GDBusProxy *proxy, void *user_data)
|
|
{
|
|
struct context *context = user_data;
|
|
|
|
/*
|
|
* Proxy added callback should not be called after Client ready
|
|
* watch. Ready means that all objects has been reported to the
|
|
* upper-layer.
|
|
*/
|
|
g_assert(context->client_ready == FALSE);
|
|
|
|
destroy_context(context);
|
|
}
|
|
|
|
static void client_ready(const void *data)
|
|
{
|
|
struct context *context = create_context();
|
|
static const GDBusPropertyTable string_properties[] = {
|
|
{ "String", "s", get_string, set_string, string_exists },
|
|
{ },
|
|
};
|
|
|
|
if (context == NULL)
|
|
return;
|
|
|
|
g_dbus_register_interface(context->dbus_conn,
|
|
SERVICE_PATH, SERVICE_NAME,
|
|
methods, signals, string_properties,
|
|
context, NULL);
|
|
|
|
context->dbus_client = g_dbus_client_new(context->dbus_conn,
|
|
SERVICE_NAME, SERVICE_PATH);
|
|
|
|
g_dbus_client_set_ready_watch(context->dbus_client, client_ready_watch,
|
|
context);
|
|
g_dbus_client_set_proxy_handlers(context->dbus_client,
|
|
proxy_added, NULL, NULL, context);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
tester_init(&argc, &argv);
|
|
|
|
tester_add("/gdbus/simple_client", NULL, NULL, simple_client, NULL);
|
|
|
|
tester_add("/gdbus/client_connect_disconnect", NULL, NULL,
|
|
client_connect_disconnect, NULL);
|
|
|
|
tester_add("/gdbus/client_get_string_property", NULL, NULL,
|
|
client_get_string_property, NULL);
|
|
|
|
tester_add("/gdbus/client_get_boolean_property", NULL, NULL,
|
|
client_get_boolean_property, NULL);
|
|
|
|
tester_add("/gdbus/client_get_uint64_property", NULL, NULL,
|
|
client_get_uint64_property, NULL);
|
|
|
|
tester_add("/gdbus/client_get_array_property", NULL, NULL,
|
|
client_get_array_property, NULL);
|
|
|
|
tester_add("/gdbus/client_get_dict_property", NULL, NULL,
|
|
client_get_dict_property, NULL);
|
|
|
|
tester_add("/gdbus/client_set_string_property", NULL, NULL,
|
|
client_set_string_property, NULL);
|
|
|
|
tester_add("/gdbus/client_string_changed", NULL, NULL,
|
|
client_string_changed, NULL);
|
|
|
|
tester_add("/gdbus/client_check_order", NULL, NULL, client_check_order,
|
|
NULL);
|
|
|
|
tester_add("/gdbus/client_proxy_removed", NULL, NULL,
|
|
client_proxy_removed, NULL);
|
|
|
|
tester_add("/gdbus/client_no_object_manager", NULL, NULL,
|
|
client_no_object_manager, NULL);
|
|
|
|
tester_add("/gdbus/client_force_disconnect", NULL, NULL,
|
|
client_force_disconnect, NULL);
|
|
|
|
tester_add("/gdbus/client_ready", NULL, NULL, client_ready, NULL);
|
|
|
|
return tester_run();
|
|
}
|