mirror of
https://github.com/openharmony/device_manager.git
synced 2026-06-30 21:47:56 -04:00
686a5abbc2
Signed-off-by: renguang1116 <renguang@huawei.com>
710 lines
22 KiB
C++
710 lines
22 KiB
C++
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* 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 "UTTest_softbus_connector.h"
|
|
|
|
#include <securec.h>
|
|
#include <unistd.h>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
#include <thread>
|
|
|
|
#include "dm_anonymous.h"
|
|
#include "dm_constants.h"
|
|
#include "dm_device_info.h"
|
|
#include "dm_log.h"
|
|
#include "ipc_notify_auth_result_req.h"
|
|
#include "ipc_notify_device_state_req.h"
|
|
#include "ipc_notify_device_found_req.h"
|
|
#include "ipc_notify_discover_result_req.h"
|
|
#include "ipc_notify_verify_auth_result_req.h"
|
|
#include "parameter.h"
|
|
#include "system_ability_definition.h"
|
|
|
|
namespace OHOS {
|
|
namespace DistributedHardware {
|
|
void SoftbusConnectorTest::SetUp()
|
|
{
|
|
}
|
|
void SoftbusConnectorTest::TearDown()
|
|
{
|
|
}
|
|
void SoftbusConnectorTest::SetUpTestCase()
|
|
{
|
|
}
|
|
void SoftbusConnectorTest::TearDownTestCase()
|
|
{
|
|
}
|
|
|
|
namespace {
|
|
std::shared_ptr<HiChainConnector> hiChainConnector = std::make_shared<HiChainConnector>();
|
|
std::shared_ptr<DeviceManagerServiceListener> listener = std::make_shared<DeviceManagerServiceListener>();
|
|
std::shared_ptr<SoftbusConnector> softbusConnector = std::make_shared<SoftbusConnector>();
|
|
std::shared_ptr<SoftbusListener> softbusListener = std::make_shared<SoftbusListener>();
|
|
std::shared_ptr<DmDeviceStateManager> deviceStateMgr =
|
|
std::make_shared<DmDeviceStateManager>(softbusConnector, listener, hiChainConnector);
|
|
std::shared_ptr<DmDiscoveryManager> discoveryMgr = std::make_shared<DmDiscoveryManager>(softbusConnector, listener);
|
|
/**
|
|
* @tc.name: DeviceOnLine_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, DeviceOnLine_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "123";
|
|
DmDeviceInfo info;
|
|
strcpy_s(info.deviceId, DM_MAX_DEVICE_ID_LEN, "123");
|
|
deviceStateMgr->RegisterSoftbusStateCallback();
|
|
DeviceOnLine(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
ret = true;
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
SoftbusConnector::stateCallbackMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: DeviceOnLine_002
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, DeviceOnLine_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "123";
|
|
DmDeviceInfo info;
|
|
strcpy_s(info.deviceId, DM_MAX_DEVICE_ID_LEN, "123");
|
|
DeviceOnLine(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
ret = true;
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
SoftbusConnector::stateCallbackMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: DeviceOffLine_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, DeviceOffLine_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "123";
|
|
DmDeviceInfo info;
|
|
strcpy_s(info.deviceId, DM_MAX_DEVICE_ID_LEN, "123");
|
|
deviceStateMgr->RegisterSoftbusStateCallback();
|
|
DeviceOffLine(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
ret = true;
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
SoftbusConnector::stateCallbackMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: DeviceOffLine_002
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, DeviceOffLine_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "123";
|
|
DmDeviceInfo info;
|
|
strcpy_s(info.deviceId, DM_MAX_DEVICE_ID_LEN, "123");
|
|
DeviceOffLine(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
ret = true;
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
SoftbusConnector::stateCallbackMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: SoftbusConnector_001
|
|
* @tc.desc: set SoftbusConnector to new a pointer ,and the pointer nou equal nullptr
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, SoftbusConnector_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::shared_ptr<SoftbusConnector> m_SoftbusConnector = std::make_shared<SoftbusConnector>();
|
|
ASSERT_NE(m_SoftbusConnector, nullptr);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: SoftbusConnector_002
|
|
* @tc.desc: set SoftbusConnector to new a pointer ,and the pointer nou equal nullptr,and delete it
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, SoftbusConnector_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::shared_ptr<SoftbusConnector> m_SoftbusConnector = std::make_shared<SoftbusConnector>();
|
|
m_SoftbusConnector.reset();
|
|
EXPECT_EQ(m_SoftbusConnector, nullptr);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: RegisterSoftbusDiscoveryCallback_001
|
|
* @tc.desc: set pkgName = "com.ohos.helloworld";call RegisterSoftbusDiscoveryCallback function to corrort ,return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, RegisterSoftbusDiscoveryCallback_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
int ret1 = softbusConnector->RegisterSoftbusDiscoveryCallback(
|
|
pkgName, std::shared_ptr<ISoftbusDiscoveryCallback>(discoveryMgr));
|
|
int ret = SoftbusConnector::discoveryCallbackMap_.count(pkgName);
|
|
EXPECT_EQ(ret1, DM_OK);
|
|
EXPECT_EQ(ret, 1);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: UnRegisterSoftbusDiscoveryCallback_001
|
|
* @tc.desc: set pkgName = "com.ohos.helloworld";call UnRegisterSoftbusDiscoveryCallback function to corrort ,return
|
|
* DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, UnRegisterSoftbusDiscoveryCallback_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
int ret = softbusConnector->UnRegisterSoftbusDiscoveryCallback(pkgName);
|
|
int ret1 = SoftbusConnector::discoveryCallbackMap_.count(pkgName);
|
|
EXPECT_EQ(ret1, 0);
|
|
EXPECT_EQ(ret, DM_OK);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: RegisterSoftbusStateCallback_001
|
|
* @tc.desc: set pkgName = "com.ohos.helloworld";call UnRegisterSoftbusStateCallback function to corrort ,return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, RegisterSoftbusStateCallback_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
int ret = softbusConnector->RegisterSoftbusStateCallback(
|
|
pkgName, std::shared_ptr<ISoftbusStateCallback>(deviceStateMgr));
|
|
int ret1 = SoftbusConnector::discoveryCallbackMap_.count(pkgName);
|
|
EXPECT_EQ(ret1, DM_OK);
|
|
EXPECT_EQ(ret, 0);
|
|
softbusConnector->UnRegisterSoftbusStateCallback(pkgName);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: UnRegisterSoftbusStateCallback_001
|
|
* @tc.desc: set pkgName = "com.ohos.helloworld";call UnRegisterSoftbusStateCallback function to corrort ,return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, UnRegisterSoftbusStateCallback_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
int ret = softbusConnector->UnRegisterSoftbusStateCallback(pkgName);
|
|
int ret1 = SoftbusConnector::stateCallbackMap_.count(pkgName);
|
|
EXPECT_EQ(ret1, 0);
|
|
EXPECT_EQ(ret, DM_OK);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetTrustedDeviceList_001
|
|
* @tc.desc: create GetAllNodeDeviceInfo not equal 0, and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetTrustedDeviceList_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::vector<DmDeviceInfo> deviceInfoList;
|
|
int ret = softbusListener->GetTrustedDeviceList(deviceInfoList);
|
|
EXPECT_EQ(ret, DM_OK);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetLocalDeviceInfo_001
|
|
* @tc.desc: set pkgName to com.softbus.test,define deviceInfo,and return DM_OK.
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetLocalDeviceInfo_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string pkgName = "com.softbus.test";
|
|
DmDeviceInfo deviceInfo;
|
|
int ret = softbusListener->GetLocalDeviceInfo(deviceInfo);
|
|
EXPECT_EQ(ret, DM_OK);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: StartDiscovery_001
|
|
* @tc.desc: get StartDiscovery to wroing master and return ERR_DM_DISCOVERY_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, StartDiscovery_001, testing::ext::TestSize.Level0)
|
|
{
|
|
DmSubscribeInfo dmSubscribeInfo;
|
|
int ret = softbusConnector->StartDiscovery(dmSubscribeInfo);
|
|
EXPECT_EQ(ret, ERR_DM_DISCOVERY_FAILED);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: StopDiscovery_001
|
|
* @tc.desc: get StartDiscovery to wroing master and return ERR_DM_DISCOVERY_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, StopDiscovery_001, testing::ext::TestSize.Level0)
|
|
{
|
|
uint16_t subscribeId = static_cast<uint16_t>(123456);
|
|
int ret = softbusConnector->StopDiscovery(subscribeId);
|
|
EXPECT_NE(ret, 0);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetUdidByNetworkId_001
|
|
* @tc.desc: get StartDiscovery to wroing master and return ERR_DM_DISCOVERY_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetUdidByNetworkId_001, testing::ext::TestSize.Level0)
|
|
{
|
|
const char *networkId = "123456";
|
|
std::string udid;
|
|
int ret = softbusConnector->GetUdidByNetworkId(networkId, udid);
|
|
EXPECT_NE(ret, 0);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetUuidByNetworkId_001
|
|
* @tc.desc: get StartDiscovery to wroing master and return ERR_DM_DISCOVERY_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetUuidByNetworkId_001, testing::ext::TestSize.Level0)
|
|
{
|
|
const char *networkId = "123456";
|
|
std::string udid;
|
|
int ret = softbusConnector->GetUdidByNetworkId(networkId, udid);
|
|
EXPECT_NE(ret, 0);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: IsDeviceOnLine_001
|
|
* @tc.desc: set deviceId = "12333";,and return false
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, IsDeviceOnLine_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "12333";
|
|
bool ret = softbusConnector->IsDeviceOnLine(deviceId);
|
|
EXPECT_EQ(ret, false);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: IsDeviceOnLine_002
|
|
* @tc.desc:
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, IsDeviceOnLine_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "145677";
|
|
NodeBasicInfo info;
|
|
strcpy_s(info.networkId, DM_MAX_DEVICE_ID_LEN, "145677");
|
|
bool ret = softbusConnector->IsDeviceOnLine(deviceId);
|
|
EXPECT_EQ(ret, false);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetSoftbusSession_001
|
|
* @tc.desc: set SoftbusConnector to new a pointer ,and the pointer nou equal nullptr,and delete it
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetSoftbusSession_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::shared_ptr<SoftbusSession> softSession = softbusConnector->GetSoftbusSession();
|
|
EXPECT_NE(softSession, nullptr);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetSoftbusSession_001
|
|
* @tc.desc: set SoftbusConnector to new a pointer ,and the pointer nou equal nullptr,and delete it
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, HaveDeviceInMap_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "12345678";
|
|
SoftbusConnector::discoveryDeviceInfoMap_[deviceId];
|
|
bool ret = softbusConnector->HaveDeviceInMap(deviceId);
|
|
EXPECT_EQ(ret, true);
|
|
SoftbusConnector::discoveryDeviceInfoMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetSoftbusSession_001
|
|
* @tc.desc: set SoftbusConnector to new a pointer ,and the pointer nou equal nullptr,and delete it
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, HaveDeviceInMap_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "12345678";
|
|
bool ret = softbusConnector->HaveDeviceInMap(deviceId);
|
|
EXPECT_EQ(ret, false);
|
|
SoftbusConnector::discoveryDeviceInfoMap_.clear();
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectionIpAddress_001
|
|
* @tc.desc: set deviceId null,and return ERR_DM_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectionIpAddress_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId;
|
|
std::string ipAddress = "123456";
|
|
int ret = softbusConnector->GetConnectionIpAddress(deviceId, ipAddress);
|
|
EXPECT_EQ(ret, ERR_DM_FAILED);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectionIpAddress_002
|
|
* @tc.desc: set some corrort para,and return ERR_DM_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectionIpAddress_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "213456";
|
|
std::string ipAddress = "123456";
|
|
int ret = softbusConnector->GetConnectionIpAddress(deviceId, ipAddress);
|
|
EXPECT_EQ(ret, ERR_DM_FAILED);
|
|
}
|
|
/**
|
|
* @tc.name: GetConnectionIpAddress_003
|
|
* @tc.desc: set deviceInfo.addrNum = -1;go to second master and return ERR_DM_FAILED
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectionIpAddress_003, testing::ext::TestSize.Level0)
|
|
{
|
|
DeviceInfo deviceInfo;
|
|
deviceInfo.addrNum = -1;
|
|
std::string ipAddress;
|
|
std::string deviceId = "3338848";
|
|
int ret = softbusConnector->GetConnectionIpAddress(deviceId, ipAddress);
|
|
EXPECT_EQ(ret, ERR_DM_FAILED);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectAddrByType_001
|
|
* @tc.desc: set deviceInfo'pointer null, go to first master,and return nullptr
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectAddrByType_001, testing::ext::TestSize.Level0)
|
|
{
|
|
ConnectionAddrType type;
|
|
type = CONNECTION_ADDR_MAX;
|
|
ConnectionAddr *p = nullptr;
|
|
ConnectionAddr *ret = softbusConnector->GetConnectAddrByType(nullptr, type);
|
|
EXPECT_EQ(p, ret);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectAddrByType_002
|
|
* @tc.desc:set deviceInfo to some corrort para,and return nullptr
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectAddrByType_002, testing::ext::TestSize.Level0)
|
|
{
|
|
DeviceInfo deviceInfo;
|
|
deviceInfo.addrNum = 1;
|
|
ConnectionAddrType type;
|
|
type = CONNECTION_ADDR_BR;
|
|
ConnectionAddr *p = nullptr;
|
|
ConnectionAddr *ret = softbusConnector->GetConnectAddrByType(&deviceInfo, type);
|
|
EXPECT_EQ(ret, p);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectAddr_001
|
|
* @tc.desc: set deviceId to null,and return nullptr
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectAddr_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId;
|
|
std::string connectAddr;
|
|
ConnectionAddr *ret = softbusConnector->GetConnectAddr(deviceId, connectAddr);
|
|
EXPECT_EQ(ret, nullptr);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: GetConnectAddr_002
|
|
* @tc.desc:set deviceId nit null set deviceInfo.addrNum = -1; and return nullptr
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, GetConnectAddr_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "123345";
|
|
std::string connectAddr;
|
|
DeviceInfo deviceInfo;
|
|
deviceInfo.addrNum = -1;
|
|
ConnectionAddr *ret = softbusConnector->GetConnectAddr(deviceId, connectAddr);
|
|
EXPECT_EQ(ret, nullptr);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: CovertNodeBasicInfoToDmDevice_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, CovertNodeBasicInfoToDmDevice_001, testing::ext::TestSize.Level0)
|
|
{
|
|
NodeBasicInfo nodeBasicInfo;
|
|
DmDeviceInfo dmDeviceInfo;
|
|
int ret = softbusListener->CovertNodeBasicInfoToDmDevice(nodeBasicInfo, dmDeviceInfo);
|
|
EXPECT_EQ(ret, DM_OK);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: CovertNodeBasicInfoToDmDevice_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, CovertDeviceInfoToDmDevice_001, testing::ext::TestSize.Level0)
|
|
{
|
|
DeviceInfo deviceInfo = {
|
|
.devId = "123456",
|
|
.devType = (DeviceType)1,
|
|
.devName = "11111"
|
|
};
|
|
DmDeviceInfo dm;
|
|
DmDeviceInfo dm_1 = {
|
|
.deviceId = "123456",
|
|
.deviceName = "11111",
|
|
.deviceTypeId = 1
|
|
};
|
|
softbusConnector->CovertDeviceInfoToDmDevice(deviceInfo, dm);
|
|
bool ret = false;
|
|
if (strcmp(dm.deviceId, dm_1.deviceId) == 0) {
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftBusDeviceOnline_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftBusDeviceOnline_001, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "123456";
|
|
SoftbusConnector::discoveryDeviceInfoMap_[deviceId];
|
|
NodeBasicInfo *info = nullptr;
|
|
softbusListener->OnSoftBusDeviceOnline(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftBusDeviceOnline_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftBusDeviceOnline_002, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "123456";
|
|
NodeBasicInfo info = {
|
|
.networkId = "123456",
|
|
.deviceName = "123456",
|
|
.deviceTypeId = 1
|
|
};
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
softbusConnector->RegisterSoftbusStateCallback(
|
|
pkgName, std::shared_ptr<ISoftbusStateCallback>(deviceStateMgr));
|
|
softbusListener->OnSoftBusDeviceOnline(&info);
|
|
sleep(1);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
softbusConnector->UnRegisterSoftbusStateCallback(pkgName);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftBusDeviceOnline_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftBusDeviceOnline_003, testing::ext::TestSize.Level0)
|
|
{
|
|
std::string deviceId = "123456";
|
|
NodeBasicInfo info = {
|
|
.networkId = "123456",
|
|
.deviceName = "123456",
|
|
.deviceTypeId = 1
|
|
};
|
|
std::string oldName = DM_PKG_NAME;
|
|
std::string DM_PKG_NAME = "com.ohos.test";
|
|
softbusListener->OnSoftBusDeviceOnline(&info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
DM_PKG_NAME = oldName;
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftbusDeviceOffline_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftbusDeviceOffline_001, testing::ext::TestSize.Level0)
|
|
{
|
|
NodeBasicInfo *info = nullptr;
|
|
softbusListener->OnSoftbusDeviceOffline(info);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftbusDeviceOffline_002
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftbusDeviceOffline_002, testing::ext::TestSize.Level0)
|
|
{
|
|
NodeBasicInfo info = {
|
|
.networkId = "123456",
|
|
.deviceName = "123456",
|
|
.deviceTypeId = 1
|
|
};
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
softbusConnector->RegisterSoftbusStateCallback(
|
|
pkgName, std::shared_ptr<ISoftbusStateCallback>(deviceStateMgr));
|
|
softbusListener->OnSoftbusDeviceOffline(&info);
|
|
sleep(1);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
softbusConnector->UnRegisterSoftbusStateCallback(pkgName);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftbusDeviceFound_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftbusDeviceFound_001, testing::ext::TestSize.Level0)
|
|
{
|
|
DeviceInfo *device = nullptr;
|
|
softbusConnector->OnSoftbusDeviceFound(device);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, false);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftbusDiscoveryFailed_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftbusDiscoveryFailed_001, testing::ext::TestSize.Level0)
|
|
{
|
|
int32_t subscribeId= 123456;
|
|
DiscoveryFailReason failReason = (DiscoveryFailReason)1;
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
softbusConnector->RegisterSoftbusDiscoveryCallback(
|
|
pkgName, std::shared_ptr<ISoftbusDiscoveryCallback>(discoveryMgr));
|
|
softbusConnector->OnSoftbusDiscoveryFailed(subscribeId, failReason);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
softbusConnector->UnRegisterSoftbusDiscoveryCallback(pkgName);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: OnSoftbusDiscoverySuccess_001
|
|
* @tc.desc: go to the corrort case and return DM_OK
|
|
* @tc.type: FUNC
|
|
* @tc.require: AR000GHSJK
|
|
*/
|
|
HWTEST_F(SoftbusConnectorTest, OnSoftbusDiscoverySuccess_001, testing::ext::TestSize.Level0)
|
|
{
|
|
int32_t subscribeId= 123456;
|
|
std::string pkgName = "com.ohos.helloworld";
|
|
softbusConnector->RegisterSoftbusDiscoveryCallback(
|
|
pkgName, std::shared_ptr<ISoftbusDiscoveryCallback>(discoveryMgr));
|
|
softbusConnector->OnSoftbusDiscoverySuccess(subscribeId);
|
|
bool ret = false;
|
|
if (listener->ipcServerListener_.req_ != nullptr) {
|
|
listener->ipcServerListener_.req_ = nullptr;
|
|
ret = true;
|
|
}
|
|
EXPECT_EQ(ret, true);
|
|
softbusConnector->UnRegisterSoftbusDiscoveryCallback(pkgName);
|
|
}
|
|
} // namespace
|
|
} // namespace DistributedHardware
|
|
} // namespace OHOS-
|