blob: cecdc8e47c8f97a32b9dd3cb8ca769fc403e6e27 [file] [log] [blame]
//
// Copyright (C) 2015 Google, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include <base/macros.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "service/adapter.h"
#include "service/hal/fake_bluetooth_gatt_interface.h"
#include "service/low_energy_client.h"
#include "stack/include/bt_types.h"
#include "stack/include/hcidefs.h"
#include "test/mock_adapter.h"
using ::testing::_;
using ::testing::Return;
using ::testing::Pointee;
using ::testing::DoAll;
using ::testing::Invoke;
namespace bluetooth {
namespace {
class MockGattHandler
: public hal::FakeBluetoothGattInterface::TestClientHandler {
public:
MockGattHandler() {
ON_CALL(*this, Scan(false))
.WillByDefault(Return(BT_STATUS_SUCCESS));
}
~MockGattHandler() override = default;
MOCK_METHOD1(RegisterClient, bt_status_t(bt_uuid_t*));
MOCK_METHOD1(UnregisterClient, bt_status_t(int));
MOCK_METHOD1(Scan, bt_status_t(bool));
MOCK_METHOD4(Connect, bt_status_t(int , const bt_bdaddr_t *, bool, int));
MOCK_METHOD3(Disconnect, bt_status_t(int , const bt_bdaddr_t *, int));
MOCK_METHOD7(MultiAdvEnable, bt_status_t(int, int, int, int, int, int, int));
MOCK_METHOD10(
MultiAdvSetInstDataMock,
bt_status_t(bool, bool, bool, int, int, char*, int, char*, int, char*));
MOCK_METHOD1(MultiAdvDisable, bt_status_t(int));
// GMock has macros for up to 10 arguments (11 is really just too many...).
// For now we forward this call to a 10 argument mock, omitting the
// |client_if| argument.
bt_status_t MultiAdvSetInstData(
int /* client_if */,
bool set_scan_rsp, bool include_name,
bool incl_txpower, int appearance,
int manufacturer_len, char* manufacturer_data,
int service_data_len, char* service_data,
int service_uuid_len, char* service_uuid) override {
return MultiAdvSetInstDataMock(
set_scan_rsp, include_name, incl_txpower, appearance,
manufacturer_len, manufacturer_data,
service_data_len, service_data,
service_uuid_len, service_uuid);
}
private:
DISALLOW_COPY_AND_ASSIGN(MockGattHandler);
};
class TestDelegate : public LowEnergyClient::Delegate {
public:
TestDelegate() : scan_result_count_(0), connection_state_count_(0),
last_mtu_(0) {
}
~TestDelegate() override = default;
int scan_result_count() const { return scan_result_count_; }
const ScanResult& last_scan_result() const { return last_scan_result_; }
int connection_state_count() const { return connection_state_count_; }
void OnConnectionState(LowEnergyClient* client, int status,
const char* address, bool connected) {
ASSERT_TRUE(client);
connection_state_count_++;
}
void OnMtuChanged(LowEnergyClient* client, int status, const char* address,
int mtu) {
ASSERT_TRUE(client);
last_mtu_ = mtu;
}
void OnScanResult(LowEnergyClient* client, const ScanResult& scan_result) {
ASSERT_TRUE(client);
scan_result_count_++;
last_scan_result_ = scan_result;
}
private:
int scan_result_count_;
ScanResult last_scan_result_;
int connection_state_count_;
int last_mtu_;
DISALLOW_COPY_AND_ASSIGN(TestDelegate);
};
// Created this class for testing Advertising Data Setting
// It provides a work around in order to verify the arguments
// in the arrays passed to MultiAdvSetInstData due to mocks
// not having an easy way to verify entire arrays
class AdvertiseDataHandler : public MockGattHandler {
public:
AdvertiseDataHandler() : call_count_(0) {}
~AdvertiseDataHandler() override = default;
bt_status_t MultiAdvSetInstData(
int /* client_if */,
bool set_scan_rsp, bool include_name,
bool incl_txpower, int appearance,
int manufacturer_len, char* manufacturer_data,
int service_data_len, char* service_data,
int service_uuid_len, char* service_uuid) override {
call_count_++;
service_data_.assign(
service_data, service_data+service_data_len);
manufacturer_data_.assign(
manufacturer_data, manufacturer_data+manufacturer_len);
uuid_data_.assign(
service_uuid, service_uuid+service_uuid_len);
return BT_STATUS_SUCCESS;
}
const std::vector<uint8_t>& manufacturer_data() const {
return manufacturer_data_;
}
const std::vector<uint8_t>& service_data() const { return service_data_; }
const std::vector<uint8_t>& uuid_data() const { return uuid_data_; }
int call_count() const { return call_count_; }
private:
int call_count_;
std::vector<uint8_t> manufacturer_data_;
std::vector<uint8_t> service_data_;
std::vector<uint8_t> uuid_data_;
};
class LowEnergyClientTest : public ::testing::Test {
public:
LowEnergyClientTest() = default;
~LowEnergyClientTest() override = default;
void SetUp() override {
// Only set |mock_handler_| if a test hasn't set it.
if (!mock_handler_)
mock_handler_.reset(new MockGattHandler());
fake_hal_gatt_iface_ = new hal::FakeBluetoothGattInterface(
std::static_pointer_cast<
hal::FakeBluetoothGattInterface::TestClientHandler>(mock_handler_),
nullptr);
hal::BluetoothGattInterface::InitializeForTesting(fake_hal_gatt_iface_);
ble_factory_.reset(new LowEnergyClientFactory(mock_adapter_));
}
void TearDown() override {
ble_factory_.reset();
hal::BluetoothGattInterface::CleanUp();
}
protected:
hal::FakeBluetoothGattInterface* fake_hal_gatt_iface_;
testing::MockAdapter mock_adapter_;
std::shared_ptr<MockGattHandler> mock_handler_;
std::unique_ptr<LowEnergyClientFactory> ble_factory_;
private:
DISALLOW_COPY_AND_ASSIGN(LowEnergyClientTest);
};
// Used for tests that operate on a pre-registered client.
class LowEnergyClientPostRegisterTest : public LowEnergyClientTest {
public:
LowEnergyClientPostRegisterTest() : next_client_id_(0) {
}
~LowEnergyClientPostRegisterTest() override = default;
void SetUp() override {
LowEnergyClientTest::SetUp();
auto callback = [&](std::unique_ptr<LowEnergyClient> client) {
le_client_ = std::move(client);
};
RegisterTestClient(callback);
}
void TearDown() override {
EXPECT_CALL(*mock_handler_, MultiAdvDisable(_))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(*mock_handler_, UnregisterClient(_))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
le_client_.reset();
LowEnergyClientTest::TearDown();
}
void RegisterTestClient(
const std::function<void(std::unique_ptr<LowEnergyClient> client)>
callback) {
UUID uuid = UUID::GetRandom();
auto api_callback = [&](BLEStatus status, const UUID& in_uuid,
std::unique_ptr<BluetoothInstance> in_client) {
CHECK(in_uuid == uuid);
CHECK(in_client.get());
CHECK(status == BLE_STATUS_SUCCESS);
callback(std::unique_ptr<LowEnergyClient>(
static_cast<LowEnergyClient*>(in_client.release())));
};
EXPECT_CALL(*mock_handler_, RegisterClient(_))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
ble_factory_->RegisterInstance(uuid, api_callback);
bt_uuid_t hal_uuid = uuid.GetBlueDroid();
fake_hal_gatt_iface_->NotifyRegisterClientCallback(
0, next_client_id_++, hal_uuid);
::testing::Mock::VerifyAndClearExpectations(mock_handler_.get());
}
void StartAdvertising() {
ASSERT_FALSE(le_client_->IsAdvertisingStarted());
ASSERT_FALSE(le_client_->IsStartingAdvertising());
ASSERT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_CALL(*mock_handler_, MultiAdvEnable(_, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(*mock_handler_,
MultiAdvSetInstDataMock(_, _, _, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
AdvertiseSettings settings;
AdvertiseData adv, scan_rsp;
ASSERT_TRUE(le_client_->StartAdvertising(
settings, adv, scan_rsp, LowEnergyClient::StatusCallback()));
ASSERT_TRUE(le_client_->IsStartingAdvertising());
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
ASSERT_TRUE(le_client_->IsAdvertisingStarted());
ASSERT_FALSE(le_client_->IsStartingAdvertising());
ASSERT_FALSE(le_client_->IsStoppingAdvertising());
}
void AdvertiseDataTestHelper(AdvertiseData data, std::function<void(BLEStatus)> callback) {
AdvertiseSettings settings;
EXPECT_TRUE(le_client_->StartAdvertising(
settings, data, AdvertiseData(), callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_TRUE(le_client_->StopAdvertising(LowEnergyClient::StatusCallback()));
fake_hal_gatt_iface_->NotifyMultiAdvDisableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
}
protected:
std::unique_ptr<LowEnergyClient> le_client_;
private:
int next_client_id_;
DISALLOW_COPY_AND_ASSIGN(LowEnergyClientPostRegisterTest);
};
TEST_F(LowEnergyClientTest, RegisterInstance) {
EXPECT_CALL(*mock_handler_, RegisterClient(_))
.Times(2)
.WillOnce(Return(BT_STATUS_FAIL))
.WillOnce(Return(BT_STATUS_SUCCESS));
// These will be asynchronously populated with a result when the callback
// executes.
BLEStatus status = BLE_STATUS_SUCCESS;
UUID cb_uuid;
std::unique_ptr<LowEnergyClient> client;
int callback_count = 0;
auto callback = [&](BLEStatus in_status, const UUID& uuid,
std::unique_ptr<BluetoothInstance> in_client) {
status = in_status;
cb_uuid = uuid;
client = std::unique_ptr<LowEnergyClient>(
static_cast<LowEnergyClient*>(in_client.release()));
callback_count++;
};
UUID uuid0 = UUID::GetRandom();
// HAL returns failure.
EXPECT_FALSE(ble_factory_->RegisterInstance(uuid0, callback));
EXPECT_EQ(0, callback_count);
// HAL returns success.
EXPECT_TRUE(ble_factory_->RegisterInstance(uuid0, callback));
EXPECT_EQ(0, callback_count);
// Calling twice with the same UUID should fail with no additional call into
// the stack.
EXPECT_FALSE(ble_factory_->RegisterInstance(uuid0, callback));
::testing::Mock::VerifyAndClearExpectations(mock_handler_.get());
// Call with a different UUID while one is pending.
UUID uuid1 = UUID::GetRandom();
EXPECT_CALL(*mock_handler_, RegisterClient(_))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_TRUE(ble_factory_->RegisterInstance(uuid1, callback));
// Trigger callback with an unknown UUID. This should get ignored.
UUID uuid2 = UUID::GetRandom();
bt_uuid_t hal_uuid = uuid2.GetBlueDroid();
fake_hal_gatt_iface_->NotifyRegisterClientCallback(0, 0, hal_uuid);
EXPECT_EQ(0, callback_count);
// |uuid0| succeeds.
int client_if0 = 2; // Pick something that's not 0.
hal_uuid = uuid0.GetBlueDroid();
fake_hal_gatt_iface_->NotifyRegisterClientCallback(
BT_STATUS_SUCCESS, client_if0, hal_uuid);
EXPECT_EQ(1, callback_count);
ASSERT_TRUE(client.get() != nullptr); // Assert to terminate in case of error
EXPECT_EQ(BLE_STATUS_SUCCESS, status);
EXPECT_EQ(client_if0, client->GetInstanceId());
EXPECT_EQ(uuid0, client->GetAppIdentifier());
EXPECT_EQ(uuid0, cb_uuid);
// The client should unregister itself when deleted.
EXPECT_CALL(*mock_handler_, MultiAdvDisable(client_if0))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(*mock_handler_, UnregisterClient(client_if0))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
client.reset();
::testing::Mock::VerifyAndClearExpectations(mock_handler_.get());
// |uuid1| fails.
int client_if1 = 3;
hal_uuid = uuid1.GetBlueDroid();
fake_hal_gatt_iface_->NotifyRegisterClientCallback(
BT_STATUS_FAIL, client_if1, hal_uuid);
EXPECT_EQ(2, callback_count);
ASSERT_TRUE(client.get() == nullptr); // Assert to terminate in case of error
EXPECT_EQ(BLE_STATUS_FAILURE, status);
EXPECT_EQ(uuid1, cb_uuid);
}
TEST_F(LowEnergyClientPostRegisterTest, StartAdvertisingBasic) {
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
// Use default advertising settings and data.
AdvertiseSettings settings;
AdvertiseData adv_data, scan_rsp;
int callback_count = 0;
BLEStatus last_status = BLE_STATUS_FAILURE;
auto callback = [&](BLEStatus status) {
last_status = status;
callback_count++;
};
EXPECT_CALL(*mock_handler_, MultiAdvEnable(_, _, _, _, _, _, _))
.Times(5)
.WillOnce(Return(BT_STATUS_FAIL))
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
// Stack call returns failure.
EXPECT_FALSE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(0, callback_count);
// Stack call returns success.
EXPECT_TRUE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_TRUE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(0, callback_count);
// Already starting.
EXPECT_FALSE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
// Notify failure.
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_FAIL);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(1, callback_count);
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// Try again.
EXPECT_TRUE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_TRUE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(1, callback_count);
// Success notification should trigger advertise data update.
EXPECT_CALL(*mock_handler_,
MultiAdvSetInstDataMock(
false, // set_scan_rsp
false, // include_name
false, // incl_txpower
_, _, _, _, _, _, _))
.Times(3)
.WillOnce(Return(BT_STATUS_FAIL))
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
// Notify success for enable. The procedure will fail since setting data will
// fail.
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(2, callback_count);
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// Try again.
EXPECT_TRUE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_TRUE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(2, callback_count);
// Notify success for enable. the advertise data call should succeed but
// operation will remain pending.
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_TRUE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(2, callback_count);
// Notify failure from advertising call.
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_FAIL);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(3, callback_count);
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// Try again. Make everything succeed.
EXPECT_TRUE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_TRUE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(3, callback_count);
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(4, callback_count);
EXPECT_EQ(BLE_STATUS_SUCCESS, last_status);
// Already started.
EXPECT_FALSE(le_client_->StartAdvertising(
settings, adv_data, scan_rsp, callback));
}
TEST_F(LowEnergyClientPostRegisterTest, StopAdvertisingBasic) {
AdvertiseSettings settings;
// Not enabled.
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->StopAdvertising(LowEnergyClient::StatusCallback()));
// Start advertising for testing.
StartAdvertising();
int callback_count = 0;
BLEStatus last_status = BLE_STATUS_FAILURE;
auto callback = [&](BLEStatus status) {
last_status = status;
callback_count++;
};
EXPECT_CALL(*mock_handler_, MultiAdvDisable(_))
.Times(3)
.WillOnce(Return(BT_STATUS_FAIL))
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
// Stack call returns failure.
EXPECT_FALSE(le_client_->StopAdvertising(callback));
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(0, callback_count);
// Stack returns success.
EXPECT_TRUE(le_client_->StopAdvertising(callback));
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_TRUE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(0, callback_count);
// Already disabling.
EXPECT_FALSE(le_client_->StopAdvertising(callback));
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_TRUE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(0, callback_count);
// Notify failure.
fake_hal_gatt_iface_->NotifyMultiAdvDisableCallback(
le_client_->GetInstanceId(), BT_STATUS_FAIL);
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(1, callback_count);
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// Try again.
EXPECT_TRUE(le_client_->StopAdvertising(callback));
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_TRUE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(1, callback_count);
// Notify success.
fake_hal_gatt_iface_->NotifyMultiAdvDisableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
EXPECT_EQ(2, callback_count);
EXPECT_EQ(BLE_STATUS_SUCCESS, last_status);
// Already stopped.
EXPECT_FALSE(le_client_->StopAdvertising(callback));
}
TEST_F(LowEnergyClientPostRegisterTest, InvalidAdvertiseData) {
const std::vector<uint8_t> data0{ 0x02, HCI_EIR_FLAGS_TYPE, 0x00 };
const std::vector<uint8_t> data1{
0x04, HCI_EIR_MANUFACTURER_SPECIFIC_TYPE, 0x01, 0x02, 0x00
};
AdvertiseData invalid_adv(data0);
AdvertiseData valid_adv(data1);
AdvertiseSettings settings;
EXPECT_FALSE(le_client_->StartAdvertising(
settings, valid_adv, invalid_adv, LowEnergyClient::StatusCallback()));
EXPECT_FALSE(le_client_->StartAdvertising(
settings, invalid_adv, valid_adv, LowEnergyClient::StatusCallback()));
// Manufacturer data not correctly formatted according to spec. We let the
// stack handle this case.
const std::vector<uint8_t> data2{ 0x01, HCI_EIR_MANUFACTURER_SPECIFIC_TYPE };
AdvertiseData invalid_mfc(data2);
EXPECT_CALL(*mock_handler_, MultiAdvEnable(_, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_TRUE(le_client_->StartAdvertising(
settings, invalid_mfc, valid_adv, LowEnergyClient::StatusCallback()));
}
TEST_F(LowEnergyClientPostRegisterTest, ScanResponse) {
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
EXPECT_FALSE(le_client_->IsStartingAdvertising());
EXPECT_FALSE(le_client_->IsStoppingAdvertising());
AdvertiseSettings settings(
AdvertiseSettings::MODE_LOW_POWER,
base::TimeDelta::FromMilliseconds(300),
AdvertiseSettings::TX_POWER_LEVEL_MEDIUM,
false /* connectable */);
const std::vector<uint8_t> data0;
const std::vector<uint8_t> data1{
0x04, HCI_EIR_MANUFACTURER_SPECIFIC_TYPE, 0x01, 0x02, 0x00
};
int callback_count = 0;
BLEStatus last_status = BLE_STATUS_FAILURE;
auto callback = [&](BLEStatus status) {
last_status = status;
callback_count++;
};
AdvertiseData adv0(data0);
adv0.set_include_tx_power_level(true);
AdvertiseData adv1(data1);
adv1.set_include_device_name(true);
EXPECT_CALL(*mock_handler_,
MultiAdvEnable(le_client_->GetInstanceId(), _, _,
kAdvertisingEventTypeScannable,
_, _, _))
.Times(2)
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(
*mock_handler_,
MultiAdvSetInstDataMock(
false, // set_scan_rsp
false, // include_name
true, // incl_txpower,
_,
0, // 0 bytes
_, _, _, _, _))
.Times(2)
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(
*mock_handler_,
MultiAdvSetInstDataMock(
true, // set_scan_rsp
true, // include_name
false, // incl_txpower,
_,
data1.size() - 2, // Mfc. Specific data field bytes.
_, _, _, _, _))
.Times(2)
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
// Enable success; Adv. data success; Scan rsp. fail.
EXPECT_TRUE(le_client_->StartAdvertising(settings, adv0, adv1, callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_FAIL);
EXPECT_EQ(1, callback_count);
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
EXPECT_FALSE(le_client_->IsAdvertisingStarted());
// Second time everything succeeds.
EXPECT_TRUE(le_client_->StartAdvertising(settings, adv0, adv1, callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
fake_hal_gatt_iface_->NotifyMultiAdvDataCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_EQ(2, callback_count);
EXPECT_EQ(BLE_STATUS_SUCCESS, last_status);
EXPECT_TRUE(le_client_->IsAdvertisingStarted());
}
TEST_F(LowEnergyClientPostRegisterTest, AdvertiseDataParsing) {
// Re-initialize the test with our own custom handler.
TearDown();
std::shared_ptr<AdvertiseDataHandler> adv_handler(new AdvertiseDataHandler());
mock_handler_ = std::static_pointer_cast<MockGattHandler>(adv_handler);
SetUp();
const std::vector<uint8_t> kUUID16BitData{
0x03, HCI_EIR_COMPLETE_16BITS_UUID_TYPE, 0xDE, 0xAD,
};
const std::vector<uint8_t> kUUID32BitData{
0x05, HCI_EIR_COMPLETE_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x02
};
const std::vector<uint8_t> kUUID128BitData{
0x11, HCI_EIR_COMPLETE_128BITS_UUID_TYPE,
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E
};
const std::vector<uint8_t> kMultiUUIDData{
0x11, HCI_EIR_COMPLETE_128BITS_UUID_TYPE,
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E,
0x05, HCI_EIR_COMPLETE_32BITS_UUID_TYPE, 0xDE, 0xAD, 0xBE, 0xEF
};
const std::vector<uint8_t> kServiceData16Bit{
0x05, HCI_EIR_SERVICE_DATA_16BITS_UUID_TYPE, 0xDE, 0xAD, 0xBE, 0xEF
};
const std::vector<uint8_t> kServiceData32Bit{
0x07, HCI_EIR_SERVICE_DATA_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x02, 0xBE, 0xEF
};
const std::vector<uint8_t> kServiceData128Bit{
0x13, HCI_EIR_SERVICE_DATA_128BITS_UUID_TYPE,
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0xBE, 0xEF
};
const std::vector<uint8_t> kMultiServiceData{
0x13, HCI_EIR_SERVICE_DATA_128BITS_UUID_TYPE,
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xBE, 0xEF,
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x05, HCI_EIR_SERVICE_DATA_16BITS_UUID_TYPE, 0xDE, 0xAD, 0xBE, 0xEF
};
const std::vector<uint8_t> kServiceUUIDMatch{
0x05, HCI_EIR_COMPLETE_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x02,
0x07, HCI_EIR_SERVICE_DATA_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x02, 0xBE, 0xEF
};
const std::vector<uint8_t> kServiceUUIDMismatch{
0x05, HCI_EIR_COMPLETE_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x01,
0x07, HCI_EIR_SERVICE_DATA_32BITS_UUID_TYPE, 0xDE, 0xAD, 0x01, 0x02, 0xBE, 0xEF
};
AdvertiseData uuid_16bit_adv(kUUID16BitData);
AdvertiseData uuid_32bit_adv(kUUID32BitData);
AdvertiseData uuid_128bit_adv(kUUID128BitData);
AdvertiseData multi_uuid_adv(kMultiUUIDData);
AdvertiseData service_16bit_adv(kServiceData16Bit);
AdvertiseData service_32bit_adv(kServiceData32Bit);
AdvertiseData service_128bit_adv(kServiceData128Bit);
AdvertiseData multi_service_adv(kMultiServiceData);
AdvertiseData service_uuid_match(kServiceUUIDMatch);
AdvertiseData service_uuid_mismatch(kServiceUUIDMismatch);
AdvertiseSettings settings;
int callback_count = 0;
BLEStatus last_status = BLE_STATUS_FAILURE;
auto callback = [&](BLEStatus status) {
last_status = status;
callback_count++;
};
EXPECT_CALL(*mock_handler_, MultiAdvEnable(_, _, _, _, _, _, _))
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
EXPECT_CALL(*mock_handler_, MultiAdvDisable(_))
.WillRepeatedly(Return(BT_STATUS_SUCCESS));
// Multiple UUID test, should fail due to only one UUID allowed
EXPECT_TRUE(le_client_->StartAdvertising(
settings, multi_uuid_adv, AdvertiseData(), callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_EQ(1, callback_count);
EXPECT_EQ(0, adv_handler->call_count());
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// Multiple Service Data test, should fail due to only one service data allowed
EXPECT_TRUE(le_client_->StartAdvertising(
settings, multi_uuid_adv, AdvertiseData(), callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_EQ(2, callback_count);
EXPECT_EQ(0, adv_handler->call_count());
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
// 16bit uuid test, should succeed with correctly parsed uuid in little-endian
// 128-bit format.
AdvertiseDataTestHelper(uuid_16bit_adv, callback);
EXPECT_EQ(3, callback_count);
EXPECT_EQ(1, adv_handler->call_count());
const std::vector<uint8_t> uuid_16bit_canonical{
0xFB, 0x34, 0x9b, 0x5F, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00,
0xDE, 0xAD, 0x00, 0x00
};
EXPECT_EQ(uuid_16bit_canonical, adv_handler->uuid_data());
// 32bit uuid test, should succeed with correctly parsed uuid
AdvertiseDataTestHelper(uuid_32bit_adv, callback);
EXPECT_EQ(4, callback_count);
EXPECT_EQ(2, adv_handler->call_count());
const std::vector<uint8_t> uuid_32bit_canonical{
0xFB, 0x34, 0x9b, 0x5F, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00,
0xDE, 0xAD, 0x01, 0x02
};
EXPECT_EQ(uuid_32bit_canonical, adv_handler->uuid_data());
// 128bit uuid test, should succeed with correctly parsed uuid
AdvertiseDataTestHelper(uuid_128bit_adv, callback);
EXPECT_EQ(5, callback_count);
EXPECT_EQ(3, adv_handler->call_count());
const std::vector<uint8_t> uuid_128bit{
0xDE, 0xAD, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E
};
EXPECT_EQ(uuid_128bit, adv_handler->uuid_data());
const std::vector<uint8_t> service_data{ 0xBE, 0xEF };
// Service data with 16bit uuid included, should succeed with
// uuid and service data parsed out
AdvertiseDataTestHelper(service_16bit_adv, callback);
EXPECT_EQ(6, callback_count);
EXPECT_EQ(4, adv_handler->call_count());
EXPECT_EQ(service_data, adv_handler->service_data());
EXPECT_EQ(uuid_16bit_canonical, adv_handler->uuid_data());
// Service data with 32bit uuid included, should succeed with
// uuid and service data parsed out
AdvertiseDataTestHelper(service_32bit_adv, callback);
EXPECT_EQ(7, callback_count);
EXPECT_EQ(5, adv_handler->call_count());
EXPECT_EQ(service_data, adv_handler->service_data());
EXPECT_EQ(uuid_32bit_canonical, adv_handler->uuid_data());
// Service data with 128bit uuid included, should succeed with
// uuid and service data parsed out
AdvertiseDataTestHelper(service_128bit_adv, callback);
EXPECT_EQ(8, callback_count);
EXPECT_EQ(6, adv_handler->call_count());
EXPECT_EQ(service_data, adv_handler->service_data());
EXPECT_EQ(uuid_128bit, adv_handler->uuid_data());
// Service data and UUID where the UUID for both match, should succeed.
AdvertiseDataTestHelper(service_uuid_match, callback);
EXPECT_EQ(9, callback_count);
EXPECT_EQ(7, adv_handler->call_count());
EXPECT_EQ(service_data, adv_handler->service_data());
EXPECT_EQ(uuid_32bit_canonical, adv_handler->uuid_data());
// Service data and UUID where the UUID for dont match, should fail
EXPECT_TRUE(le_client_->StartAdvertising(
settings, service_uuid_mismatch, AdvertiseData(), callback));
fake_hal_gatt_iface_->NotifyMultiAdvEnableCallback(
le_client_->GetInstanceId(), BT_STATUS_SUCCESS);
EXPECT_EQ(10, callback_count);
EXPECT_EQ(7, adv_handler->call_count());
EXPECT_EQ(BLE_STATUS_FAILURE, last_status);
}
TEST_F(LowEnergyClientPostRegisterTest, ScanSettings) {
EXPECT_CALL(mock_adapter_, IsEnabled())
.WillOnce(Return(false))
.WillRepeatedly(Return(true));
ScanSettings settings;
std::vector<ScanFilter> filters;
// Adapter is not enabled.
EXPECT_FALSE(le_client_->StartScan(settings, filters));
// TODO(jpawlowski): add tests checking settings and filter parsing when
// implemented
// These should succeed and result in a HAL call
EXPECT_CALL(*mock_handler_, Scan(true))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_TRUE(le_client_->StartScan(settings, filters));
// These should succeed and result in a HAL call
EXPECT_CALL(*mock_handler_, Scan(false))
.Times(1)
.WillOnce(Return(BT_STATUS_SUCCESS));
EXPECT_TRUE(le_client_->StopScan());
::testing::Mock::VerifyAndClearExpectations(mock_handler_.get());
}
TEST_F(LowEnergyClientPostRegisterTest, ScanRecord) {
TestDelegate delegate;
le_client_->SetDelegate(&delegate);
EXPECT_EQ(0, delegate.scan_result_count());
const uint8_t kTestRecord0[] = { 0x02, 0x01, 0x00, 0x00 };
const uint8_t kTestRecord1[] = { 0x00 };
const uint8_t kTestRecord2[] = {
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
0x01, 0x00
};
const bt_bdaddr_t kTestAddress = {
{ 0x01, 0x02, 0x03, 0x0A, 0x0B, 0x0C }
};
const char kTestAddressStr[] = "01:02:03:0A:0B:0C";
const int kTestRssi = 64;
// Scan wasn't started. Result should be ignored.
fake_hal_gatt_iface_->NotifyScanResultCallback(
kTestAddress, kTestRssi, (uint8_t*) kTestRecord0);
EXPECT_EQ(0, delegate.scan_result_count());
// Start a scan session for |le_client_|.
EXPECT_CALL(mock_adapter_, IsEnabled())
.Times(1)
.WillOnce(Return(true));
EXPECT_CALL(*mock_handler_, Scan(_))
.Times(2)
.WillOnce(Return(BT_STATUS_SUCCESS))
.WillOnce(Return(BT_STATUS_SUCCESS));
ScanSettings settings;
std::vector<ScanFilter> filters;
ASSERT_TRUE(le_client_->StartScan(settings, filters));
fake_hal_gatt_iface_->NotifyScanResultCallback(
kTestAddress, kTestRssi, (uint8_t*) kTestRecord0);
EXPECT_EQ(1, delegate.scan_result_count());
EXPECT_EQ(kTestAddressStr, delegate.last_scan_result().device_address());
EXPECT_EQ(kTestRssi, delegate.last_scan_result().rssi());
EXPECT_EQ(3U, delegate.last_scan_result().scan_record().size());
fake_hal_gatt_iface_->NotifyScanResultCallback(
kTestAddress, kTestRssi, (uint8_t*) kTestRecord1);
EXPECT_EQ(2, delegate.scan_result_count());
EXPECT_EQ(kTestAddressStr, delegate.last_scan_result().device_address());
EXPECT_EQ(kTestRssi, delegate.last_scan_result().rssi());
EXPECT_TRUE(delegate.last_scan_result().scan_record().empty());
fake_hal_gatt_iface_->NotifyScanResultCallback(
kTestAddress, kTestRssi, (uint8_t*) kTestRecord2);
EXPECT_EQ(3, delegate.scan_result_count());
EXPECT_EQ(kTestAddressStr, delegate.last_scan_result().device_address());
EXPECT_EQ(kTestRssi, delegate.last_scan_result().rssi());
EXPECT_EQ(62U, delegate.last_scan_result().scan_record().size());
le_client_->SetDelegate(nullptr);
}
MATCHER_P(BitEq, x, std::string(negation ? "isn't" : "is") +
" bitwise equal to " + ::testing::PrintToString(x)) {
static_assert(sizeof(x) == sizeof(arg), "Size mismatch");
return std::memcmp(&arg, &x, sizeof(x)) == 0;
}
TEST_F(LowEnergyClientPostRegisterTest, Connect) {
const bt_bdaddr_t kTestAddress = {
{ 0x01, 0x02, 0x03, 0x0A, 0x0B, 0x0C }
};
const char kTestAddressStr[] = "01:02:03:0A:0B:0C";
const bool kTestDirect = false;
const int connId = 12;
TestDelegate delegate;
le_client_->SetDelegate(&delegate);
// TODO(jpawlowski): NotifyConnectCallback should be called after returning
// success, fix it when it becomes important.
// These should succeed and result in a HAL call
EXPECT_CALL(*mock_handler_, Connect(le_client_->GetInstanceId(),
Pointee(BitEq(kTestAddress)), kTestDirect, BT_TRANSPORT_LE))
.Times(1)
.WillOnce(DoAll(
Invoke([&](int client_id, const bt_bdaddr_t *bd_addr, bool is_direct,
int transport){
fake_hal_gatt_iface_->NotifyConnectCallback(connId, BT_STATUS_SUCCESS,
client_id, *bd_addr);
}),
Return(BT_STATUS_SUCCESS)));
EXPECT_TRUE(le_client_->Connect(kTestAddressStr, kTestDirect));
EXPECT_EQ(1, delegate.connection_state_count());
// TODO(jpawlowski): same as above
// These should succeed and result in a HAL call
EXPECT_CALL(*mock_handler_, Disconnect(le_client_->GetInstanceId(),
Pointee(BitEq(kTestAddress)), connId))
.Times(1)
.WillOnce(DoAll(
Invoke([&](int client_id, const bt_bdaddr_t *bd_addr, int connId){
fake_hal_gatt_iface_->NotifyDisconnectCallback(connId,
BT_STATUS_SUCCESS,
client_id, *bd_addr);
}),
Return(BT_STATUS_SUCCESS)));
EXPECT_TRUE(le_client_->Disconnect(kTestAddressStr));
EXPECT_EQ(2, delegate.connection_state_count());
le_client_->SetDelegate(nullptr);
::testing::Mock::VerifyAndClearExpectations(mock_handler_.get());
}
} // namespace
} // namespace bluetooth