| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include "gdbus/gdbus.h"
- #include "src/shared/tester.h"
- #include "emulator/hciemu.h"
- static DBusConnection *dbus_conn = NULL;
- static GDBusClient *dbus_client = NULL;
- static GDBusProxy *adapter_proxy = NULL;
- static struct hciemu *hciemu_stack = NULL;
- static void connect_handler(DBusConnection *connection, void *user_data)
- {
- tester_print("Connected to daemon");
- hciemu_stack = hciemu_new(HCIEMU_TYPE_BREDRLE);
- }
- static void disconnect_handler(DBusConnection *connection, void *user_data)
- {
- tester_print("Disconnected from daemon");
- dbus_connection_unref(dbus_conn);
- dbus_conn = NULL;
- tester_teardown_complete();
- }
- static gboolean compare_string_property(GDBusProxy *proxy, const char *name,
- const char *value)
- {
- DBusMessageIter iter;
- const char *str;
- if (g_dbus_proxy_get_property(proxy, name, &iter) == FALSE)
- return FALSE;
- if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
- return FALSE;
- dbus_message_iter_get_basic(&iter, &str);
- return g_str_equal(str, value);
- }
- static void proxy_added(GDBusProxy *proxy, void *user_data)
- {
- const char *interface;
- interface = g_dbus_proxy_get_interface(proxy);
- if (g_str_equal(interface, "org.bluez.Adapter1") == TRUE) {
- if (compare_string_property(proxy, "Address",
- hciemu_get_address(hciemu_stack)) == TRUE) {
- adapter_proxy = proxy;
- tester_print("Found adapter");
- tester_setup_complete();
- }
- }
- }
- static void proxy_removed(GDBusProxy *proxy, void *user_data)
- {
- const char *interface;
- interface = g_dbus_proxy_get_interface(proxy);
- if (g_str_equal(interface, "org.bluez.Adapter1") == TRUE) {
- if (adapter_proxy == proxy) {
- adapter_proxy = NULL;
- tester_print("Adapter removed");
- g_dbus_client_unref(dbus_client);
- dbus_client = NULL;
- }
- }
- }
- static void test_setup(const void *test_data)
- {
- dbus_conn = g_dbus_setup_private(DBUS_BUS_SYSTEM, NULL, NULL);
- dbus_client = g_dbus_client_new(dbus_conn, "org.bluez", "/org/bluez");
- g_dbus_client_set_connect_watch(dbus_client, connect_handler, NULL);
- g_dbus_client_set_disconnect_watch(dbus_client,
- disconnect_handler, NULL);
- g_dbus_client_set_proxy_handlers(dbus_client, proxy_added,
- proxy_removed, NULL, NULL);
- }
- static void test_run(const void *test_data)
- {
- tester_test_passed();
- }
- static void test_teardown(const void *test_data)
- {
- hciemu_unref(hciemu_stack);
- hciemu_stack = NULL;
- }
- int main(int argc, char *argv[])
- {
- tester_init(&argc, &argv);
- tester_add("Adapter setup", NULL, test_setup, test_run, test_teardown);
- return tester_run();
- }
|