Files
device_manager/test/unittest/UTTest_ipc_server_client_proxy.cpp
T
renguang1116 686a5abbc2 【需求】DM服务开机内存优化
Signed-off-by: renguang1116 <renguang@huawei.com>
2022-06-28 17:35:29 +08:00

196 lines
6.6 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_ipc_server_client_proxy.h"
#include <unistd.h>
#include "dm_device_info.h"
#include "ipc_remote_broker.h"
#include "iremote_object.h"
#include "iservice_registry.h"
#include "system_ability_definition.h"
#include "ipc_client_manager.h"
#include "ipc_set_useroperation_req.h"
#include "ipc_notify_device_state_req.h"
#include "ipc_rsp.h"
#include "ipc_notify_device_found_req.h"
#include "ipc_notify_discover_result_req.h"
#include "dm_constants.h"
namespace OHOS {
namespace DistributedHardware {
void IpcServerClientProxyTest::SetUp()
{
}
void IpcServerClientProxyTest::TearDown()
{
}
void IpcServerClientProxyTest::SetUpTestCase()
{
}
void IpcServerClientProxyTest::TearDownTestCase()
{
}
namespace {
/**
* @tc.name: SendCmd_001
* @tc.desc: 1. set cmdCode not null
* 2. set remoteObject nullptr
* 3. call IpcServerClientProxy SendCmd
* 4. check ret is DEVICEMANAGER_NULLPTR
* @tc.type: FUNC
* @tc.require: AR000GHSJK
*/
HWTEST_F(IpcServerClientProxyTest, SendCmd_001, testing::ext::TestSize.Level0)
{
// 1. set cmdCode not null
int32_t cmdCode = 1;
// 2. set remoteObject nullptr
sptr<IRemoteObject> remoteObject = nullptr;
// 3. call IpcServerClientProxy SendCmd
auto instance = new IpcServerClientProxy(remoteObject);
int ret = instance->SendCmd(cmdCode, nullptr, nullptr);
// 4. check ret is DEVICEMANAGER_NULLPTR
ASSERT_EQ(ret, ERR_DM_POINT_NULL);
}
/**
* @tc.name: SendCmd_002
* @tc.desc: 1. set cmdCode not null
* set pkgName not null
* set action not null
* 2. set remoteObject not nullptr
* set req not null
* set rsp not null
* 3. call IpcServerClientProxy SendCmd with parameter
* 4. check ret is DM_OK
* @tc.type: FUNC
* @tc.require: AR000GHSJK
*/
HWTEST_F(IpcServerClientProxyTest, SendCmd_002, testing::ext::TestSize.Level0)
{
// 1. set cmdCode not null
int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY;
// set pkgName not null
std::string pkgName = "com.ohos.test";
// set action not null
int deviceState = 1;
DmDeviceInfo deviceInfo;
// 2. set remoteObject not nullptr
sptr<IpcClientStub> remoteObject = sptr<IpcClientStub>(new IpcClientStub());
IpcServerStub::GetInstance().RegisterDeviceManagerListener(pkgName, remoteObject);
std::shared_ptr<IpcNotifyDeviceStateReq> req = std::make_shared<IpcNotifyDeviceStateReq>();
std::shared_ptr<IpcRsp> rsp = std::make_shared<IpcRsp>();
// set req not null
req->SetPkgName(pkgName);
// set rsp not null
req->SetDeviceState(deviceState);
req->SetDeviceInfo(deviceInfo);
// 3. call IpcServerClientProxy SendCmd with parameter
int ret = 0;
std::shared_ptr<IpcServerListener> ipcServerListener = std::make_shared<IpcServerListener>();
ret = ipcServerListener->SendRequest(cmdCode, req, rsp);
// 4. check ret is not ERR_DM_FAILED
ASSERT_NE(ret, ERR_DM_FAILED);
}
/**
* @tc.name: SendCmd_003
* @tc.desc: 1. set cmdCode not null
* set pkgName not null
* set action not null
* 2. set remoteObject not nullptr
* set req not null
* set rsp not null
* 3. call IpcServerClientProxy SendCmd with parameter
* 4. check ret is DM_OK
* @tc.type: FUNC
* @tc.require: AR000GHSJK
*/
HWTEST_F(IpcServerClientProxyTest, SendCmd_003, testing::ext::TestSize.Level0)
{
// 1. set cmdCode not null
int32_t cmdCode = SERVER_DEVICE_FOUND;
// set pkgName not null
std::string pkgName = "com.ohos.test";
// set action not null
uint16_t subscribeId = 1;
DmDeviceInfo dmDeviceInfo;
// 2. set remoteObject not nullptr
sptr<IpcClientStub> remoteObject = sptr<IpcClientStub>(new IpcClientStub());
IpcServerStub::GetInstance().RegisterDeviceManagerListener(pkgName, remoteObject);
std::shared_ptr<IpcNotifyDeviceFoundReq> req = std::make_shared<IpcNotifyDeviceFoundReq>();
std::shared_ptr<IpcRsp> rsp = std::make_shared<IpcRsp>();
// set req not null
req->SetPkgName(pkgName);
// set rsp not null
req->SetSubscribeId(subscribeId);
req->SetDeviceInfo(dmDeviceInfo);
// 3. call IpcServerClientProxy SendCmd with parameter
int ret = 0;
std::shared_ptr<IpcServerListener> ipcServerListener = std::make_shared<IpcServerListener>();
ret = ipcServerListener->SendRequest(cmdCode, req, rsp);
// 4. check ret is not ERR_DM_FAILED
ASSERT_NE(ret, ERR_DM_FAILED);
}
/**
* @tc.name: SendCmd_004
* @tc.desc: 1. set cmdCode not null
* set pkgName not null
* set action not null
* 2. set remoteObject not nullptr
* set req not null
* set rsp not null
* 3. call IpcServerClientProxy SendCmd with parameter
* 4. check ret is DM_OK
* @tc.type: FUNC
* @tc.require: AR000GHSJK
*/
HWTEST_F(IpcServerClientProxyTest, SendCmd_004, testing::ext::TestSize.Level0)
{
// 1. set cmdCode not null
int32_t cmdCode = SERVER_DISCOVER_FINISH;
// set pkgName not null
std::string pkgName = "com.ohos.test";
// set action not null
uint16_t subscribeId = 1;
int32_t result = 1;
// 2. set remoteObject not nullptr
sptr<IpcClientStub> remoteObject = sptr<IpcClientStub>(new IpcClientStub());
IpcServerStub::GetInstance().RegisterDeviceManagerListener(pkgName, remoteObject);
std::shared_ptr<IpcNotifyDiscoverResultReq> req = std::make_shared<IpcNotifyDiscoverResultReq>();
std::shared_ptr<IpcRsp> rsp = std::make_shared<IpcRsp>();
// set req not null
req->SetPkgName(pkgName);
// set rsp not null
req->SetSubscribeId(subscribeId);
req->SetResult(result);
// 3. call IpcServerClientProxy SendCmd with parameter
int ret = 0;
std::shared_ptr<IpcServerListener> ipcServerListener = std::make_shared<IpcServerListener>();
ret = ipcServerListener->SendRequest(cmdCode, req, rsp);
// 4. check ret is not ERR_DM_FAILED
ASSERT_NE(ret, ERR_DM_FAILED);
}
} // namespace
} // namespace DistributedHardware
} // namespace OHOS