Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
aa3640a4
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
aa3640a4
编写于
5月 27, 2023
作者:
Z
zhangfuzhi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
电话服务补充接口覆盖用例
Signed-off-by:
N
zhangfuzhi
<
zhangfuzhi1@huawei.com
>
上级
144fd02c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
168 addition
and
5 deletion
+168
-5
telephony/telephonyjstest/call_manager/call_manager_ims2_call/src/main/js/test/CallManageAll.test.js
..._manager_ims2_call/src/main/js/test/CallManageAll.test.js
+4
-0
telephony/telephonyjstest/netmanager_socket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
...ket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
+129
-5
telephony/telephonyjstest/sms_mms/sms_mms_error/src/main/js/test/SmsMmsError.test.js
...ms_mms/sms_mms_error/src/main/js/test/SmsMmsError.test.js
+35
-0
未找到文件。
telephony/telephonyjstest/call_manager/call_manager_ims2_call/src/main/js/test/CallManageAll.test.js
浏览文件 @
aa3640a4
...
...
@@ -107,6 +107,10 @@ export default function CallManageImsCall() {
done
();
return
;
}
expect
(
call
.
CallState
.
CALL_STATE_UNKNOWN
).
assertEqual
(
-
1
);
expect
(
call
.
CallState
.
CALL_STATE_IDLE
).
assertEqual
(
0
);
expect
(
call
.
CallState
.
CALL_STATE_RINGING
).
assertEqual
(
1
);
expect
(
call
.
CallState
.
CALL_STATE_OFFHOOK
).
assertEqual
(
2
);
console
.
log
(
"
Telephony_CallManager_getCallState_Async_0100 : data =
"
+
JSON
.
stringify
(
data
));
done
();
});
...
...
telephony/telephonyjstest/netmanager_socket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
浏览文件 @
aa3640a4
// @ts-nocheck
/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the 'License')
...
...
@@ -13,7 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { describe, it, expect, beforeAll, afterAll
, afterEach, beforeEach } from 'hypium/index
';
import { describe, it, expect, beforeAll, afterAll
} from '@ohos/hypium
';
import socket from "@ohos.net.socket";
let sendData = "hello!";
...
...
@@ -89,7 +88,6 @@ export default function networkManagerSocketTest() {
expect(options.secureOptions.useRemoteCipherPrefer != undefined).assertEqual(true);
expect(options.secureOptions.signatureAlgorithms != undefined).assertEqual(true);
expect(options.secureOptions.cipherSuite != undefined).assertEqual(true);
expect(socket.X509CertRawData == undefined).assertEqual(true);
if (err == undefined) {
expect().assertFail();
done();
...
...
@@ -157,12 +155,12 @@ export default function networkManagerSocketTest() {
*/
it('Telephony_NetworkManager_getCertificate_Async_0100', 0, async function (done) {
instance = socket.constructTLSSocketInstance()
instance.getCertificate((err,
d
ata) => {
instance.getCertificate((err,
X509CertRawD
ata) => {
if (err == undefined) {
expect().assertFail();
done();
} else {
expect(
d
ata).assertEqual(undefined);
expect(
X509CertRawD
ata).assertEqual(undefined);
expect(err != undefined).assertEqual(true);
done();
}
...
...
@@ -363,5 +361,131 @@ export default function networkManagerSocketTest() {
done();
})
})
/**
* @tc.number Telephony_TLSSocket_on_message_0100
* @tc.name Test on_message interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_on_message_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
tls.on('message', value => {
console.log('message: ' + JSON.stringify(value.message));
console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
});
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
/**
* @tc.number Telephony_TLSSocket_off_message_0100
* @tc.name Test off_message interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_off_message_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
let callback = value => {
console.log('message: ' + JSON.stringify(value.message));
console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
}
tls.on('message', callback);
tls.off('message', callback);
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
/**
* @tc.number Telephony_TLSSocket_on_connect_on_close_0100
* @tc.name Test on_connect on_close interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_on_connect_on_close_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
tls.on('connect', () => {
console.log("on connect success");
});
tls.on('close', () => {
console.log("on close success");
});
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
/**
* @tc.number Telephony_TLSSocket_off_connect_off_close_0100
* @tc.name Test off_connect off_close interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_off_connect_off_close_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
let callback1 = () => {
console.log("on connect success");
}
tls.on('connect', callback1);
tls.off('connect', callback1);
tls.off('connect');
let callback2 = () => {
console.log("on close success");
}
tls.on('close', callback2);
tls.off('close', callback2);
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
/**
* @tc.number Telephony_TLSSocket_on_error_0100
* @tc.name Test on_error interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_on_error_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
tls.on('error', err => {
console.log("on error, err:" + JSON.stringify(err));
});
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
/**
* @tc.number Telephony_TLSSocket_off_error_0100
* @tc.name Test off_error interface
* @tc.desc Function test
*/
it('Telephony_TLSSocket_off_error_0100', 0, async function (done) {
try {
let tls = socket.constructTLSSocketInstance();
let callback = err => {
console.log("on error, err:" + JSON.stringify(err));
}
tls.on('error', callback);
tls.off('error', callback);
done();
} catch (err) {
expect(true).assertFalse();
done();
}
})
})
}
\ No newline at end of file
telephony/telephonyjstest/sms_mms/sms_mms_error/src/main/js/test/SmsMmsError.test.js
浏览文件 @
aa3640a4
...
...
@@ -118,5 +118,40 @@ describe('SmsMmsErrorTest', function () {
}
});
/**
* @tc.number Telephony_SmsMms_sendMessage_Promise_0100
* @tc.name Telephony_SmsMms_sendMessage_Promise_0100
* @tc.desc Function test
*/
it
(
'
Telephony_SmsMms_sendMessage_Promise_0100
'
,
0
,
async
function
(
done
)
{
try
{
let
sendCallback
=
function
(
err
,
data
)
{
expect
(
data
.
isLastPart
).
assertEqual
(
false
);
console
.
log
(
`sendCallback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
}
let
deliveryCallback
=
function
(
err
,
data
)
{
console
.
log
(
`deliveryCallback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
}
let
slotId
=
0
;
let
content
=
'
短信内容
'
;
let
destinationHost
=
'
10086
'
;
let
serviceCenter
=
''
;
let
destinationPort
=
1000
;
let
options
=
{
slotId
,
content
,
destinationHost
,
serviceCenter
,
destinationPort
,
sendCallback
,
deliveryCallback
};
sms
.
sendMessage
(
options
);
done
();
}
catch
(
err
)
{
expect
(
true
).
assertFalse
();
done
();
}
});
});
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录