Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
004feaf4
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看板
提交
004feaf4
编写于
10月 18, 2022
作者:
J
jiangyuan0000
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hidebug getServiceDump xts测试用例同步修改
Signed-off-by:
N
jiangyuan0000
<
jiangyuan29@huawei.com
>
上级
9a8f5bf2
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
51 addition
and
23 deletion
+51
-23
hiviewdfx/hidebugtest/hidebugtestjstest/src/main/js/test/Hidebug.test.js
...ugtest/hidebugtestjstest/src/main/js/test/Hidebug.test.js
+51
-23
未找到文件。
hiviewdfx/hidebugtest/hidebugtestjstest/src/main/js/test/Hidebug.test.js
浏览文件 @
004feaf4
...
...
@@ -14,6 +14,7 @@
*/
import
hidebug
from
'
@ohos.hidebug
'
import
fileio
from
'
@ohos.fileio
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
import
{
describe
,
it
,
expect
}
from
'
@ohos/hypium
'
export
default
function
HidebugJsTest
()
{
...
...
@@ -337,47 +338,74 @@ describe('HidebugJsTest', function () {
*/
it
(
'
DFX_DFR_Hiprofiler_Interface_1100
'
,
0
,
function
()
{
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_1100 Test start*************
'
);
try
{
let
temp
=
hidebug
.
getServiceDump
(
10
);
console
.
info
(
"
ServiceDump is
"
+
temp
);
expect
(
temp
.
indexOf
(
'
Success
'
)
!=-
1
).
assertTrue
();
}
catch
(
error
)
{
expect
().
assertFail
();
}
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
data
)
=>
{
var
path
=
data
+
"
/serviceInfo1.txt
"
let
fd
=
fileio
.
openSync
(
path
,
0o102
,
0o666
)
var
serviceId
=
10
var
args
=
new
Array
(
"
allInfo
"
)
try
{
hidebug
.
getServiceDump
(
serviceId
,
fd
,
args
)
expect
(
true
).
assertTrue
();
}
catch
(
error
)
{
expect
().
assertFail
();
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
}
fileio
.
closeSync
(
fd
);
})
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_1100 Test end*************
'
);
});
/*
* @tc.number : DFX_DFR_Hiprofiler_Interface_0900
* @tc.name : getServiceDump with
abnormal paramete
r
* @tc.name : getServiceDump with
parameter erro
r
* @tc.desc : getServiceDump
*/
it
(
'
DFX_DFR_Hiprofiler_Interface_0900
'
,
0
,
function
()
{
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_0900 Test start*************
'
);
try
{
let
temp
=
hidebug
.
getServiceDump
(
-
1
);
console
.
info
(
"
ServiceDump is
"
+
temp
);
expect
(
temp
==
"
Error: no such system ability service.
"
).
assertTrue
();
}
catch
(
error
)
{
expect
().
assertFail
();
}
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
data
)
=>
{
var
path
=
data
+
"
/serviceInfo2.txt
"
let
fd
=
fileio
.
openSync
(
path
,
0o102
,
0o666
)
var
serviceId
=
10
var
args
=
new
Array
(
"
allInfo
"
)
try
{
hidebug
.
getServiceDump
(
serviceId
)
expect
().
assertFail
();
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
expect
(
error
.
code
==
401
).
assertTrue
();
}
fileio
.
closeSync
(
fd
);
})
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_0900 Test end*************
'
);
});
/*
* @tc.number : DFX_DFR_Hiprofiler_Interface_1000
* @tc.name : getServiceDump with
overlog parameter
* @tc.name : getServiceDump with
check system ability failed
* @tc.desc : getServiceDump
*/
it
(
'
DFX_DFR_Hiprofiler_Interface_1000
'
,
0
,
function
()
{
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_1000 Test start*************
'
);
try
{
let
temp
=
hidebug
.
getServiceDump
(
9007199254740993
);
console
.
info
(
"
ServiceDump is
"
+
temp
);
expect
(
temp
==
"
Error: invalid param
"
).
assertTrue
();
}
catch
(
error
)
{
expect
().
assertFail
();
}
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
data
)
=>
{
var
path
=
data
+
"
/serviceInfo3.txt
"
let
fd
=
fileio
.
openSync
(
path
,
0o102
,
0o666
)
var
serviceId
=
-
10
var
args
=
new
Array
(
"
allInfo
"
)
try
{
hidebug
.
getServiceDump
(
serviceId
,
fd
,
args
)
expect
().
assertFail
();
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
expect
(
error
.
code
==
11400101
).
assertTrue
();
}
fileio
.
closeSync
(
fd
);
})
console
.
log
(
'
************* DFX_DFR_Hiprofiler_Interface_1000 Test end*************
'
);
});
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录