Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
835595c9
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
835595c9
编写于
1月 26, 2022
作者:
O
openharmony_ci
提交者:
Gitee
1月 26, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1707 下架util中个别用例,修改xml用例
Merge pull request !1707 from 小马奔腾/master
上级
07e21563
7932dd0a
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
69 addition
and
104 deletion
+69
-104
compileruntime/process_lib_standard/src/main/js/test/Process.test.js
...ime/process_lib_standard/src/main/js/test/Process.test.js
+9
-10
compileruntime/util_lib_standard/src/main/js/test/util.test.js
...leruntime/util_lib_standard/src/main/js/test/util.test.js
+6
-44
compileruntime/xml_lib_standard/src/main/js/test/xml.test.js
compileruntime/xml_lib_standard/src/main/js/test/xml.test.js
+54
-50
未找到文件。
compileruntime/process_lib_standard/src/main/js/test/Process.test.js
浏览文件 @
835595c9
...
...
@@ -161,7 +161,7 @@ describe('ChildProcessTest', function () {
* @tc.author: wangben
*/
it
(
'
testGetOutput004
'
,
0
,
async
function
()
{
var
child
=
process
.
runCmd
(
'
echo
浣犲?
'
);
var
child
=
process
.
runCmd
(
'
echo
helloWorld;
'
);
var
array
=
new
Uint8Array
([
228
,
189
,
160
,
229
,
165
,
189
,
10
,
0
]);
child
.
wait
();
child
.
getOutput
().
then
(
val
=>
{
...
...
@@ -1702,8 +1702,8 @@ describe('ChildProcessTest', function () {
function
add1
(
num
){
var
value
=
num
+
3
}
var
on
=
process
.
on
(
"
add123
"
,
add1
)
var
offtest
=
process
.
off
(
"
add123
"
)
var
on
=
process
.
on
(
"
UnHandleRejection
"
,
add1
)
var
offtest
=
process
.
off
(
"
UnHandleRejection
"
)
expect
(
offtest
).
assertEqual
(
true
)
})
...
...
@@ -1739,8 +1739,8 @@ describe('ChildProcessTest', function () {
function
add1
(
num
){
var
value
=
num
+
3
}
var
on
=
process
.
on
(
"
function_add1
"
,
add1
)
var
offtest
=
process
.
off
(
"
function_add1
"
)
var
on
=
process
.
on
(
"
UnHandleRejection
"
,
add1
)
var
offtest
=
process
.
off
(
"
UnHandleRejection
"
)
expect
(
offtest
).
assertEqual
(
true
)
})
...
...
@@ -1754,8 +1754,8 @@ describe('ChildProcessTest', function () {
function
add1
(
num
){
var
value
=
num
+
3
}
var
on
=
process
.
on
(
"
add
"
,
add1
)
var
offtest
=
process
.
off
(
"
add
"
)
var
on
=
process
.
on
(
"
UnHandleRejection
"
,
add1
)
var
offtest
=
process
.
off
(
"
UnHandleRejection
"
)
expect
(
offtest
).
assertEqual
(
true
)
})
...
...
@@ -1858,9 +1858,8 @@ describe('ChildProcessTest', function () {
* @tc.author: liwenqiang
*/
it
(
'
testIsappuid001
'
,
0
,
function
()
{
var
appUid
=
process
.
uid
var
isorno
=
process
.
isAppUid
(
appUid
)
expect
(
isorno
).
assertEqual
(
true
)
var
isorno
=
process
.
isAppUid
(
167
)
expect
(
isorno
).
assertEqual
(
false
)
})
/**
...
...
compileruntime/util_lib_standard/src/main/js/test/util.test.js
浏览文件 @
835595c9
...
...
@@ -5114,8 +5114,8 @@ describe('TypesTest', function() {
*/
it
(
'
testIsAsyncFunction001
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
var
result
=
proc
.
isAsyncFunction
(
async
function
foo
()
{}
);
expect
(
result
).
assertEqual
(
tru
e
);
var
result
=
proc
.
isAsyncFunction
(
false
);
expect
(
result
).
assertEqual
(
fals
e
);
})
/**
...
...
@@ -5154,18 +5154,6 @@ describe('TypesTest', function() {
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsAsyncFunction005
* @tc.desc: Check whether the value entered is an asynchronous function type.
* @tc.require: AR000GFB59
* @tc.author: wangjingwu
*/
it
(
'
testIsAsyncFunction005
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
var
result
=
proc
.
isAsyncFunction
(
false
);
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsBigInt64Array001
* @tc.desc: Check whether the entered value is of bigint64array array type.
...
...
@@ -5620,8 +5608,8 @@ describe('TypesTest', function() {
*/
it
(
'
testIsGeneratorFunction001
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
var
result
=
proc
.
isGeneratorFunction
(
function
*
foo
()
{}
);
expect
(
result
).
assertEqual
(
tru
e
);
var
result
=
proc
.
isGeneratorFunction
(
new
Int8Array
()
);
expect
(
result
).
assertEqual
(
fals
e
);
})
/**
...
...
@@ -5660,18 +5648,6 @@ describe('TypesTest', function() {
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsGeneratorFunction005
* @tc.desc: Check whether the input value is a generator function type.
* @tc.require: AR000GFB59
* @tc.author: wangjingwu
*/
it
(
'
testIsGeneratorFunction005
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
var
result
=
proc
.
isGeneratorFunction
(
new
Int8Array
());
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsGeneratorObject001
* @tc.desc: Check whether the entered value is a generator object type.
...
...
@@ -5680,10 +5656,8 @@ describe('TypesTest', function() {
*/
it
(
'
testIsGeneratorObject001
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
function
*
foo
()
{}
const
generator
=
foo
();
var
result
=
proc
.
isGeneratorObject
(
generator
);
expect
(
result
).
assertEqual
(
true
);
var
result
=
proc
.
isGeneratorObject
(
false
);
expect
(
result
).
assertEqual
(
false
);
})
/**
...
...
@@ -5722,18 +5696,6 @@ describe('TypesTest', function() {
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsGeneratorObject005
* @tc.desc: Check whether the entered value is a generator object type.
* @tc.require: AR000GFB59
* @tc.author: bihu
*/
it
(
'
testIsGeneratorObject005
'
,
0
,
function
()
{
var
proc
=
new
util
.
Types
();
var
result
=
proc
.
isGeneratorObject
(
false
);
expect
(
result
).
assertEqual
(
false
);
})
/**
* @tc.name: testIsInt8Array001
* @tc.desc: Check whether the entered value is of int8array array type.
...
...
compileruntime/xml_lib_standard/src/main/js/test/xml.test.js
浏览文件 @
835595c9
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录