Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
d1cf8c40
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看板
提交
d1cf8c40
编写于
5月 30, 2023
作者:
Z
zhangfuzhi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加用例兼容性
Signed-off-by:
N
zhangfuzhi
<
zhangfuzhi1@huawei.com
>
上级
ff2aad89
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
130 addition
and
5 deletion
+130
-5
telephony/telephonyjstest/netmanager_socket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
...ket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
+130
-5
未找到文件。
telephony/telephonyjstest/netmanager_socket/entry/src/main/ets/test/NetworkManagerSocket.test.ets
浏览文件 @
d1cf8c40
...
...
@@ -13,8 +13,8 @@
* 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 socket from
"@ohos.net.socket"
;
import { describe, it, expect, beforeAll, afterAll
} from '@ohos/hypium
';
import socket from
'@ohos.net.socket'
;
let sendData = "hello!";
let instance = undefined;
...
...
@@ -89,7 +89,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 +156,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 +362,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
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录