1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/floss/floss_dbus_manager.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "base/test/test_future.h"
#include "device/bluetooth/floss/floss_dbus_client.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace floss {
namespace {
// This has to be different from FlossDBusManager::Get()->active_adapter_;
const int kMockAdapterIndex = 1;
} // namespace
using testing::DoAll;
class FlossDBusManagerTest : public testing::Test {
public:
FlossDBusManagerTest() = default;
void SetUp() override { FlossDBusManager::InitializeFake(); }
void TearDown() override { FlossDBusManager::Shutdown(); }
void SwitchAdapterOnTest() {
base::test::TestFuture<void> ready;
FlossDBusManager::Get()->SwitchAdapter(kMockAdapterIndex,
ready.GetCallback());
// Callback is not called since not all clients interface are present
EXPECT_FALSE(ready.IsReady());
PresentAllClients();
// Callback is called since all clients interface are present
EXPECT_TRUE(ready.Wait());
}
void SwitchAdapterOnTimeoutTest() {
base::test::TestFuture<void> ready;
FlossDBusManager::Get()->SwitchAdapter(kMockAdapterIndex,
ready.GetCallback());
// Callback is not called since not all clients interface are present
EXPECT_FALSE(ready.IsReady());
TriggerClientInitializerTimeout();
// Callback is called because of timeout
EXPECT_TRUE(ready.Wait());
}
void SwitchAdapterOnPartiallyPresentTimeoutTest() {
base::test::TestFuture<void> ready;
FlossDBusManager::Get()->SwitchAdapter(kMockAdapterIndex,
ready.GetCallback());
// Callback is not called since not all clients interface are present
EXPECT_FALSE(ready.IsReady());
PresentAllClientsExceptForGatt();
// Callback is not called since not all clients interface are present
EXPECT_FALSE(ready.IsReady());
TriggerClientInitializerTimeout();
// Callback is called because of timeout
EXPECT_TRUE(ready.Wait());
// If the client API is present later, we shouldn't crash.
PresentGattClient();
base::RunLoop().RunUntilIdle();
}
void SwitchAdapterOffTest() {
base::test::TestFuture<void> ready;
FlossDBusManager::Get()->SwitchAdapter(FlossDBusManager::kInvalidAdapter,
ready.GetCallback());
// Callback should be called immediately.
EXPECT_TRUE(ready.Wait());
UnpresentAllClients();
}
protected:
void PresentAllClients() {
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kAdapterInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateLoggingPath(kMockAdapterIndex),
kAdapterLoggingInterface);
#if BUILDFLAG(IS_CHROMEOS)
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdminPath(kMockAdapterIndex), kAdminInterface);
#endif
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateBatteryManagerPath(kMockAdapterIndex),
kBatteryManagerInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateBluetoothTelephonyPath(kMockAdapterIndex),
kBluetoothTelephonyInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateGattPath(kMockAdapterIndex), kGattInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kSocketManagerInterface);
}
void PresentAllClientsExceptForGatt() {
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kAdapterInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateLoggingPath(kMockAdapterIndex),
kAdapterLoggingInterface);
#if BUILDFLAG(IS_CHROMEOS)
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdminPath(kMockAdapterIndex), kAdminInterface);
#endif
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateBatteryManagerPath(kMockAdapterIndex),
kBatteryManagerInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateBluetoothTelephonyPath(kMockAdapterIndex),
kBluetoothTelephonyInterface);
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kSocketManagerInterface);
}
void PresentGattClient() {
FlossDBusManager::Get()->ObjectAdded(
FlossDBusClient::GenerateGattPath(kMockAdapterIndex), kGattInterface);
}
void UnpresentAllClients() {
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kAdapterInterface);
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateLoggingPath(kMockAdapterIndex),
kAdapterLoggingInterface);
#if BUILDFLAG(IS_CHROMEOS)
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateAdminPath(kMockAdapterIndex), kAdminInterface);
#endif
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateBatteryManagerPath(kMockAdapterIndex),
kBatteryManagerInterface);
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateBluetoothTelephonyPath(kMockAdapterIndex),
kBluetoothTelephonyInterface);
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateGattPath(kMockAdapterIndex), kGattInterface);
FlossDBusManager::Get()->ObjectRemoved(
FlossDBusClient::GenerateAdapterPath(kMockAdapterIndex),
kSocketManagerInterface);
}
void TriggerClientInitializerTimeout() {
task_environment_.FastForwardBy(
base::Milliseconds(FlossDBusManager::kClientReadyTimeoutMs));
}
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
// Make sure callback is called after all clients API present
TEST_F(FlossDBusManagerTest, AllClientsReadyBeforeTimeout) {
SwitchAdapterOnTest();
}
// Make sure callback is not called until timeout
TEST_F(FlossDBusManagerTest, NotAllClientsReadyBeforeTimeout) {
SwitchAdapterOnPartiallyPresentTimeoutTest();
}
// Make sure callback is called immediately after switch adapter off.
TEST_F(FlossDBusManagerTest, AdapterOffCallImmediately) {
SwitchAdapterOnTest();
SwitchAdapterOffTest();
}
// Make sure callback is called correctly after an adapter power cycle.
TEST_F(FlossDBusManagerTest, RestartAdapterClientPresent) {
SwitchAdapterOnTest();
SwitchAdapterOffTest();
SwitchAdapterOnTest();
}
// Make sure callback is called correctly after an adapter power cycle.
TEST_F(FlossDBusManagerTest, RestartAdapterTriggerTimeout) {
SwitchAdapterOnTest();
SwitchAdapterOffTest();
SwitchAdapterOnTimeoutTest();
}
} // namespace floss
|