/* * Copyright 2020 HIMSA II K/S - www.himsa.dk. * Represented by EHIMA - www.ehima.com * * 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 #include #include #include "base/bind_helpers.h" #include "btm_api.h" #include "l2c_api.h" #include "mock_btif_storage.h" #include "mock_btm_api_layer.h" #include "mock_controller.h" #include "mock_eatt.h" #include "mock_gatt_layer.h" #include "mock_l2cap_layer.h" using testing::_; using testing::DoAll; using testing::MockFunction; using testing::NiceMock; using testing::NotNull; using testing::Return; using testing::SaveArg; using testing::SaveArgPointee; using testing::StrictMock; using bluetooth::eatt::EattChannel; using bluetooth::eatt::EattChannelState; #define BLE_GATT_SVR_SUP_FEAT_EATT_BITMASK 0x01 /* Needed for testing context */ static tGATT_TCB test_tcb; void btif_storage_add_eatt_supported(const RawAddress& addr) { return; } void gatt_data_process(tGATT_TCB& tcb, uint16_t cid, BT_HDR* p_buf) { return; } tGATT_TCB* gatt_find_tcb_by_addr(const RawAddress& bda, tBT_TRANSPORT transport) { LOG(INFO) << __func__; return &test_tcb; } namespace { const RawAddress test_address({0x11, 0x11, 0x11, 0x11, 0x11, 0x11}); class EattTest : public testing::Test { protected: void ConnectDeviceEattSupported(int num_of_accepted_connections) { ON_CALL(gatt_interface_, ClientReadSupportedFeatures) .WillByDefault( [](const RawAddress& addr, base::OnceCallback cb) { std::move(cb).Run(addr, BLE_GATT_SVR_SUP_FEAT_EATT_BITMASK); return true; }); ON_CALL(gatt_interface_, GetEattSupport) .WillByDefault([](const RawAddress& addr) { return true; }); std::vector test_local_cids{61, 62, 63, 64, 65}; EXPECT_CALL(l2cap_interface_, ConnectCreditBasedReq(BT_PSM_EATT, test_address, _)) .WillOnce(Return(test_local_cids)); eatt_instance_->Connect(test_address); int i = 0; for (uint16_t cid : test_local_cids) { EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel != nullptr); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_PENDING); if (i < num_of_accepted_connections) { l2cap_app_info_.pL2CA_CreditBasedConnectCfm_Cb( test_address, cid, EATT_MIN_MTU_MPS, L2CAP_CONN_OK); connected_cids_.push_back(cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); } else { l2cap_app_info_.pL2CA_Error_Cb(cid, L2CAP_CONN_NO_RESOURCES); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel == nullptr); } i++; } ASSERT_TRUE(test_tcb.eatt == num_of_accepted_connections); } void DisconnectEattByPeer(void) { for (uint16_t cid : connected_cids_) l2cap_app_info_.pL2CA_DisconnectInd_Cb(cid, true); ASSERT_TRUE(test_tcb.eatt == 0); } void DisconnectEattDevice(std::vector cids) { EXPECT_CALL(l2cap_interface_, DisconnectRequest(_)).Times(cids.size()); eatt_instance_->Disconnect(test_address); ASSERT_TRUE(test_tcb.eatt == 0); } void SetUp() override { bluetooth::l2cap::SetMockInterface(&l2cap_interface_); bluetooth::manager::SetMockBtmApiInterface(&btm_api_interface_); bluetooth::manager::SetMockBtifStorageInterface(&btif_storage_interface_); bluetooth::gatt::SetMockGattInterface(&gatt_interface_); controller::SetMockControllerInterface(&controller_interface); EXPECT_CALL(l2cap_interface_, RegisterLECoc(BT_PSM_EATT, _, _)) .WillOnce(DoAll(SaveArg<1>(&l2cap_app_info_), Return(BT_PSM_EATT))); ON_CALL(btif_storage_interface_, LoadBondedEatt).WillByDefault([]() { return; }); hci_role_ = HCI_ROLE_CENTRAL; ON_CALL(l2cap_interface_, GetBleConnRole(_)) .WillByDefault(DoAll(Return(hci_role_))); ON_CALL(controller_interface, GetAclDataSizeBle()) .WillByDefault(Return(128)); eatt_instance_ = EattExtension::GetInstance(); eatt_instance_->Start(); Test::SetUp(); } void TearDown() override { EXPECT_CALL(l2cap_interface_, DeregisterLECoc(BT_PSM_EATT)).Times(1); eatt_instance_->Stop(); eatt_instance_ = nullptr; hci_role_ = 0; connected_cids_.clear(); bluetooth::gatt::SetMockGattInterface(nullptr); bluetooth::l2cap::SetMockInterface(nullptr); bluetooth::manager::SetMockBtifStorageInterface(nullptr); bluetooth::manager::SetMockBtmApiInterface(nullptr); controller::SetMockControllerInterface(nullptr); Test::TearDown(); } bluetooth::manager::MockBtifStorageInterface btif_storage_interface_; bluetooth::manager::MockBtmApiInterface btm_api_interface_; bluetooth::l2cap::MockL2capInterface l2cap_interface_; bluetooth::gatt::MockGattInterface gatt_interface_; controller::MockControllerInterface controller_interface; tL2CAP_APPL_INFO l2cap_app_info_; EattExtension* eatt_instance_; std::vector connected_cids_; uint8_t hci_role_ = HCI_ROLE_CENTRAL; }; TEST_F(EattTest, ConnectSucceed) { ConnectDeviceEattSupported(1); DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, IncomingEattConnectionByUnknownDevice) { std::vector incoming_cids{71, 72, 73, 74, 75}; EXPECT_CALL(l2cap_interface_, ConnectCreditBasedRsp(test_address, 1, incoming_cids, L2CAP_CONN_NO_RESOURCES, _)) .WillOnce(Return(true)); l2cap_app_info_.pL2CA_CreditBasedConnectInd_Cb( test_address, incoming_cids, BT_PSM_EATT, EATT_MIN_MTU_MPS, 1); } TEST_F(EattTest, IncomingEattConnectionByKnownDevice) { hci_role_ = HCI_ROLE_PERIPHERAL; ON_CALL(gatt_interface_, ClientReadSupportedFeatures) .WillByDefault( [](const RawAddress& addr, base::OnceCallback cb) { std::move(cb).Run(addr, BLE_GATT_SVR_SUP_FEAT_EATT_BITMASK); return true; }); ON_CALL(gatt_interface_, GetEattSupport) .WillByDefault([](const RawAddress& addr) { return true; }); eatt_instance_->Connect(test_address); std::vector incoming_cids{71, 72, 73, 74, 75}; EXPECT_CALL( l2cap_interface_, ConnectCreditBasedRsp(test_address, 1, incoming_cids, L2CAP_CONN_OK, _)) .WillOnce(Return(true)); l2cap_app_info_.pL2CA_CreditBasedConnectInd_Cb( test_address, incoming_cids, BT_PSM_EATT, EATT_MIN_MTU_MPS, 1); DisconnectEattDevice(incoming_cids); hci_role_ = HCI_ROLE_CENTRAL; } TEST_F(EattTest, ReconnectInitiatedByRemoteSucceed) { ConnectDeviceEattSupported(1); DisconnectEattDevice(connected_cids_); std::vector incoming_cids{71, 72, 73, 74, 75}; EXPECT_CALL( l2cap_interface_, ConnectCreditBasedRsp(test_address, 1, incoming_cids, L2CAP_CONN_OK, _)) .WillOnce(Return(true)); l2cap_app_info_.pL2CA_CreditBasedConnectInd_Cb( test_address, incoming_cids, BT_PSM_EATT, EATT_MIN_MTU_MPS, 1); DisconnectEattDevice(incoming_cids); } TEST_F(EattTest, ConnectSucceedMultipleChannels) { ConnectDeviceEattSupported(5); DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ConnectFailedEattNotSupported) { ON_CALL(gatt_interface_, ClientReadSupportedFeatures) .WillByDefault( [](const RawAddress& addr, base::OnceCallback cb) { std::move(cb).Run(addr, 0); return true; }); ON_CALL(gatt_interface_, GetEattSupport) .WillByDefault([](const RawAddress& addr) { return false; }); EXPECT_CALL(l2cap_interface_, ConnectCreditBasedReq(BT_PSM_EATT, test_address, _)) .Times(0); eatt_instance_->Connect(test_address); ASSERT_TRUE(eatt_instance_->IsEattSupportedByPeer(test_address) == false); } TEST_F(EattTest, ConnectFailedSlaveOnTheLink) { EXPECT_CALL(l2cap_interface_, ConnectCreditBasedReq(BT_PSM_EATT, test_address, _)) .Times(0); hci_role_ = HCI_ROLE_PERIPHERAL; eatt_instance_->Connect(test_address); /* Back to default btm role */ hci_role_ = HCI_ROLE_CENTRAL; } TEST_F(EattTest, DisonnectByPeerSucceed) { ConnectDeviceEattSupported(2); uint16_t cid = connected_cids_[0]; EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); DisconnectEattByPeer(); channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel == nullptr); } TEST_F(EattTest, ReconfigAllSucceed) { ConnectDeviceEattSupported(3); std::vector cids; EXPECT_CALL(l2cap_interface_, ReconfigCreditBasedConnsReq(_, _, _)) .WillOnce(DoAll(SaveArg<1>(&cids), Return(true))); uint16_t new_mtu = 300; eatt_instance_->ReconfigureAll(test_address, new_mtu); ASSERT_TRUE(cids.size() == connected_cids_.size()); tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_OK, .mtu = new_mtu}; for (uint16_t cid : cids) { l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cid, true, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->rx_mtu_ == new_mtu); } DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ReconfigAllFailed) { ConnectDeviceEattSupported(4); std::vector cids; EXPECT_CALL(l2cap_interface_, ReconfigCreditBasedConnsReq(_, _, _)) .WillOnce(DoAll(SaveArg<1>(&cids), Return(true))); uint16_t new_mtu = 300; eatt_instance_->ReconfigureAll(test_address, new_mtu); ASSERT_TRUE(cids.size() == connected_cids_.size()); tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_FAILED_NO_REASON, .mtu = new_mtu}; for (uint16_t cid : cids) { l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cid, true, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->rx_mtu_ != new_mtu); } DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ReconfigSingleSucceed) { ConnectDeviceEattSupported(2); std::vector cids; EXPECT_CALL(l2cap_interface_, ReconfigCreditBasedConnsReq(_, _, _)) .WillOnce(DoAll(SaveArg<1>(&cids), Return(true))); uint16_t new_mtu = 300; eatt_instance_->Reconfigure(test_address, connected_cids_[1], new_mtu); ASSERT_TRUE(cids.size() == 1); tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_OK, .mtu = new_mtu}; auto it = std::find(connected_cids_.begin(), connected_cids_.end(), cids[0]); ASSERT_TRUE(it != connected_cids_.end()); l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cids[0], true, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cids[0]); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->rx_mtu_ == new_mtu); DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ReconfigSingleFailed) { ConnectDeviceEattSupported(2); std::vector cids; EXPECT_CALL(l2cap_interface_, ReconfigCreditBasedConnsReq(_, _, _)) .WillOnce(DoAll(SaveArg<1>(&cids), Return(true))); uint16_t new_mtu = 300; eatt_instance_->ReconfigureAll(test_address, new_mtu); ASSERT_TRUE(cids.size() == connected_cids_.size()); tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_FAILED_NO_REASON, .mtu = new_mtu}; auto it = std::find(connected_cids_.begin(), connected_cids_.end(), cids[0]); ASSERT_TRUE(it != connected_cids_.end()); l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cids[0], true, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cids[0]); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->rx_mtu_ != new_mtu); DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ReconfigPeerSucceed) { ConnectDeviceEattSupported(3); uint16_t new_mtu = 300; tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_OK, .mtu = new_mtu}; for (uint16_t cid : connected_cids_) { l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cid, false, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->tx_mtu_ == new_mtu); } DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, ReconfigPeerFailed) { ConnectDeviceEattSupported(2); uint16_t new_mtu = 300; tL2CAP_LE_CFG_INFO cfg = {.result = L2CAP_CFG_FAILED_NO_REASON, .mtu = new_mtu}; for (uint16_t cid : connected_cids_) { l2cap_app_info_.pL2CA_CreditBasedReconfigCompleted_Cb(test_address, cid, false, &cfg); EattChannel* channel = eatt_instance_->FindEattChannelByCid(test_address, cid); ASSERT_TRUE(channel->state_ == EattChannelState::EATT_CHANNEL_OPENED); ASSERT_TRUE(channel->tx_mtu_ != new_mtu); } DisconnectEattDevice(connected_cids_); } TEST_F(EattTest, DoubleDisconnect) { ConnectDeviceEattSupported(1); DisconnectEattDevice(connected_cids_); /* Force second disconnect */ eatt_instance_->Disconnect(test_address); } } // namespace