#include "device/bluetooth/bluez/bluetooth_adapter_bluez.h"
#include "base/run_loop.h"
#include "base/test/mock_callback.h"
#include "base/test/task_environment.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
#include "device/bluetooth/dbus/bluetooth_adapter_client.h"
#include "device/bluetooth/dbus/bluez_dbus_manager.h"
#include "device/bluetooth/dbus/fake_bluetooth_adapter_client.h"
#include "device/bluetooth/dbus/fake_bluetooth_agent_manager_client.h"
#include "device/bluetooth/dbus/fake_bluetooth_device_client.h"
#include "device/bluetooth/dbus/fake_bluetooth_profile_manager_client.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace bluez {
class BluetoothAdapterBlueZTest : public testing::Test { … };
#if BUILDFLAG(IS_CHROMEOS_ASH)
TEST_F(BluetoothAdapterBlueZTest, UpdateName) {
std::string default_name = adapter_->GetName();
std::string test_name = "Test Name";
base::MockCallback<base::OnceClosure> error_callback;
EXPECT_CALL(error_callback, Run()).Times(0);
base::RunLoop run_loop;
adapter_->SetName(test_name, run_loop.QuitClosure(), error_callback.Get());
run_loop.Run();
EXPECT_EQ(test_name, adapter_->GetName());
adapter_->SetStandardChromeOSAdapterName();
EXPECT_EQ(default_name, adapter_->GetName());
}
#endif
TEST_F(BluetoothAdapterBlueZTest, SetDiscoverable) { … }
}