Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
df080629
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,发现更多精彩内容 >>
提交
df080629
编写于
11月 27, 2021
作者:
O
openharmony_ci
提交者:
Gitee
11月 27, 2021
浏览文件
操作
浏览文件
下载
差异文件
!1220 Wantagent flag and expect Fix
Merge pull request !1220 from blackleon/1127_master_two
上级
a3c5ad19
bd87adee
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
221 addition
and
1 deletion
+221
-1
notification/ans_standard/publish_test/wantagent/wantagent1/entry/src/main/js/test/WantAgent.test.js
...agent/wantagent1/entry/src/main/js/test/WantAgent.test.js
+221
-1
未找到文件。
notification/ans_standard/publish_test/wantagent/wantagent1/entry/src/main/js/test/WantAgent.test.js
浏览文件 @
df080629
...
...
@@ -27,7 +27,7 @@ describe('ActsAnsWantAgentOneTest', function () {
* @tc.desc: verify the function of getWantAgent(OperationType.START_ABILITY)
*/
it
(
'
ACTS_SetWant_0100
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----
scene_test_callback_1
----
'
);
console
.
info
(
'
----
ACTS_SetWant_0100 start
----
'
);
var
agentInfo
=
{
wants
:
[
{
...
...
@@ -70,6 +70,14 @@ describe('ActsAnsWantAgentOneTest', function () {
if
(
err
.
code
==
0
)
{
console
.
info
(
'
----trigger success!----
'
);
console
.
info
(
'
== trigger data
'
+
JSON
.
stringify
(
data
)
);
expect
(
data
.
finalCode
).
assertEqual
(
0
);
expect
(
data
.
finalData
).
assertEqual
(
""
);
expect
(
data
.
want
.
deviceId
).
assertEqual
(
""
);
expect
(
data
.
want
.
bundleName
).
assertEqual
(
"
com.neu.WantAgentTest1
"
);
expect
(
data
.
want
.
abilityName
).
assertEqual
(
"
com.example.test.MainAbility
"
);
expect
(
data
.
want
.
uri
).
assertEqual
(
"
key={true,true,false}
"
);
expect
(
JSON
.
stringify
(
data
.
want
.
entities
)).
assertEqual
(
JSON
.
stringify
([
"
entity1
"
]));
expect
(
data
.
want
.
action
).
assertEqual
(
"
action1
"
);
}
else
{
console
.
info
(
'
----trigger failed!----
'
);
console
.
info
(
'
== trigger data
'
+
JSON
.
stringify
(
data
)
);
...
...
@@ -92,5 +100,217 @@ describe('ActsAnsWantAgentOneTest', function () {
console
.
info
(
'
----getWantAgent after----
'
);
})
/*
* @tc.number: ACTS_SetWant_0200
* @tc.name: getWantAgent(OperationType.START_ABILITY)
* @tc.desc: verify the function of getWantAgent(OperationType.START_ABILITY)[ONE_TIME_FLAG]
*/
it
(
'
ACTS_SetWant_0200
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----ACTS_SetWant_0200 start----
'
);
var
agentInfo
=
{
wants
:
[
{
deviceId
:
""
,
bundleName
:
"
com.neu.WantAgentTest1
"
,
abilityName
:
"
com.example.test.MainAbility
"
,
action
:
"
action1
"
,
entities
:
[
"
entity1
"
],
type
:
"
MIMETYPE
"
,
uri
:
"
key={true,true,false}
"
,
parameters
:
{
mykey0
:
2222
,
mykey1
:
[
1
,
2
,
3
],
mykey2
:
"
[1, 2, 3]
"
,
mykey3
:
"
ssssssssssssssssssssssssss
"
,
mykey4
:
[
false
,
true
,
false
],
mykey5
:
[
"
qqqqq
"
,
"
wwwwww
"
,
"
aaaaaaaaaaaaaaaaa
"
],
mykey6
:
true
,
}
},
],
operationType
:
OperationType
.
START_ABILITY
,
requestCode
:
0
,
wantAgentFlags
:[
Flags
.
ONE_TIME_FLAG
]
}
console
.
info
(
'
----getWantAgent before----
'
);
await
wantAgent
.
getWantAgent
(
agentInfo
,
(
err
,
data
)
=>
{
if
(
err
.
code
==
0
)
{
WantAgent
=
data
;
console
.
info
(
'
----getWantAgent success!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
else
{
console
.
info
(
'
----getWantAgent failed!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
done
();
}
);
console
.
info
(
'
----getWantAgent after----
'
);
})
/*
* @tc.number: ACTS_SetWant_0300
* @tc.name: getWantAgent(OperationType.START_ABILITY)
* @tc.desc: verify the function of getWantAgent(OperationType.START_ABILITY)[NO_BUILD_FLAG]
*/
it
(
'
ACTS_SetWant_0300
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----ACTS_SetWant_0300 start----
'
);
var
agentInfo
=
{
wants
:
[
{
deviceId
:
""
,
bundleName
:
"
com.neu.WantAgentTest1
"
,
abilityName
:
"
com.example.test.MainAbility
"
,
action
:
"
action1
"
,
entities
:
[
"
entity1
"
],
type
:
"
MIMETYPE
"
,
uri
:
"
key={true,true,false}
"
,
parameters
:
{
mykey0
:
2222
,
mykey1
:
[
1
,
2
,
3
],
mykey2
:
"
[1, 2, 3]
"
,
mykey3
:
"
ssssssssssssssssssssssssss
"
,
mykey4
:
[
false
,
true
,
false
],
mykey5
:
[
"
qqqqq
"
,
"
wwwwww
"
,
"
aaaaaaaaaaaaaaaaa
"
],
mykey6
:
true
,
}
},
],
operationType
:
OperationType
.
START_ABILITY
,
requestCode
:
0
,
wantAgentFlags
:[
Flags
.
NO_BUILD_FLAG
]
}
console
.
info
(
'
----getWantAgent before----
'
);
await
wantAgent
.
getWantAgent
(
agentInfo
,
(
err
,
data
)
=>
{
if
(
err
.
code
==
0
)
{
WantAgent
=
data
;
console
.
info
(
'
----getWantAgent success!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
else
{
console
.
info
(
'
----getWantAgent failed!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
done
();
}
);
console
.
info
(
'
----getWantAgent after----
'
);
})
/*
* @tc.number: ACTS_SetWant_0400
* @tc.name: getWantAgent(OperationType.START_ABILITY)
* @tc.desc: verify the function of getWantAgent(OperationType.START_ABILITY)[CANCEL_PRESENT_FLAG]
*/
it
(
'
ACTS_SetWant_0400
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----ACTS_SetWant_0400 start----
'
);
var
agentInfo
=
{
wants
:
[
{
deviceId
:
""
,
bundleName
:
"
com.neu.WantAgentTest1
"
,
abilityName
:
"
com.example.test.MainAbility
"
,
action
:
"
action1
"
,
entities
:
[
"
entity1
"
],
type
:
"
MIMETYPE
"
,
uri
:
"
key={true,true,false}
"
,
parameters
:
{
mykey0
:
2222
,
mykey1
:
[
1
,
2
,
3
],
mykey2
:
"
[1, 2, 3]
"
,
mykey3
:
"
ssssssssssssssssssssssssss
"
,
mykey4
:
[
false
,
true
,
false
],
mykey5
:
[
"
qqqqq
"
,
"
wwwwww
"
,
"
aaaaaaaaaaaaaaaaa
"
],
mykey6
:
true
,
}
},
],
operationType
:
OperationType
.
START_ABILITY
,
requestCode
:
0
,
wantAgentFlags
:[
Flags
.
CANCEL_PRESENT_FLAG
]
}
console
.
info
(
'
----getWantAgent before----
'
);
await
wantAgent
.
getWantAgent
(
agentInfo
,
(
err
,
data
)
=>
{
if
(
err
.
code
==
0
)
{
WantAgent
=
data
;
console
.
info
(
'
----getWantAgent success!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
else
{
console
.
info
(
'
----getWantAgent failed!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
done
();
}
);
console
.
info
(
'
----getWantAgent after----
'
);
})
/*
* @tc.number: ACTS_SetWant_0500
* @tc.name: getWantAgent(OperationType.START_ABILITY)
* @tc.desc: verify the function of getWantAgent(OperationType.START_ABILITY)[CONSTANT_FLAG]
*/
it
(
'
ACTS_SetWant_0500
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----ACTS_SetWant_0500 start----
'
);
var
agentInfo
=
{
wants
:
[
{
deviceId
:
""
,
bundleName
:
"
com.neu.WantAgentTest1
"
,
abilityName
:
"
com.example.test.MainAbility
"
,
action
:
"
action1
"
,
entities
:
[
"
entity1
"
],
type
:
"
MIMETYPE
"
,
uri
:
"
key={true,true,false}
"
,
parameters
:
{
mykey0
:
2222
,
mykey1
:
[
1
,
2
,
3
],
mykey2
:
"
[1, 2, 3]
"
,
mykey3
:
"
ssssssssssssssssssssssssss
"
,
mykey4
:
[
false
,
true
,
false
],
mykey5
:
[
"
qqqqq
"
,
"
wwwwww
"
,
"
aaaaaaaaaaaaaaaaa
"
],
mykey6
:
true
,
}
},
],
operationType
:
OperationType
.
START_ABILITY
,
requestCode
:
0
,
wantAgentFlags
:[
Flags
.
CONSTANT_FLAG
]
}
console
.
info
(
'
----getWantAgent before----
'
);
await
wantAgent
.
getWantAgent
(
agentInfo
,
(
err
,
data
)
=>
{
if
(
err
.
code
==
0
)
{
WantAgent
=
data
;
console
.
info
(
'
----getWantAgent success!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
else
{
console
.
info
(
'
----getWantAgent failed!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
}
done
();
}
);
console
.
info
(
'
----getWantAgent after----
'
);
})
})
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录