提交 f9232b08 编写于 作者: Y yang-qibo

IPC新增接口用例覆盖

Signed-off-by: Nyang-qibo <yangqibo1@huawei.com>
上级 84d4f463
......@@ -9680,6 +9680,67 @@ export default function actsRpcClientJsTest() {
}
console.info("---------------------end SUB_Softbus_IPC_Compatibility_IPCSkeleton_01700---------------------------");
})
/*
* @tc.number SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800
* @tc.name restoreCallingIdentity Interface flags input parameter boundary value verification
* @tc.desc Function test
* @tc.level 0
*/
it("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800", 0,async function(){
console.info("---------------------start SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800---------------------------");
try{
let id = "";
rpc.IPCSkeleton.restoreCallingIdentity(id);
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800 restoreCallingIdentity is success");
} catch (error) {
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800:error = " + error);
expect(error == null).assertTrue();
}
console.info("---------------------end SUB_Softbus_IPC_Compatibility_IPCSkeleton_01800---------------------------");
});
/*
* @tc.number SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900
* @tc.name restoreCallingIdentity Interface flags input parameter 0 value verification
* @tc.desc Function test
* @tc.level 0
*/
it("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900", 0,async function(){
console.info("---------------------start SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900---------------------------");
try{
let id = 0;
rpc.IPCSkeleton.restoreCallingIdentity(id);
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900 restoreCallingIdentity is success");
} catch (error) {
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900:error = " + error);
expect(error == null).assertTrue();
}
console.info("---------------------end SUB_Softbus_IPC_Compatibility_IPCSkeleton_01900---------------------------");
});
/*
* @tc.number SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000
* @tc.name restoreCallingIdentity Interface flags input parameter null value verification
* @tc.desc Function test
* @tc.level 0
*/
it("SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000", 0,async function(){
console.info("---------------------start SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000---------------------------");
try{
let id = "";
for (let i = 0; i < (40*K - 1); i++){
id += "a";
}
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000 id length is: " + id.length);
rpc.IPCSkeleton.restoreCallingIdentity(id);
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000 restoreCallingIdentity is success");
} catch (error) {
console.info("SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000:error = " + error);
expect(error == null).assertTrue();
}
console.info("---------------------end SUB_Softbus_IPC_Compatibility_IPCSkeleton_02000---------------------------");
});
console.info("-----------------------SUB_Softbus_IPC_Compatibility_MessageParce_Test is end-----------------------");
});
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册