Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
1bab33ec
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,发现更多精彩内容 >>
提交
1bab33ec
编写于
6月 13, 2022
作者:
I
inter515
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改queryAbilityByWant的入参类型
Signed-off-by:
N
inter515
<
ry.renyi@huawei.com
>
上级
b09ae847
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
36 addition
and
48 deletion
+36
-48
appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js
.../entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js
+15
-25
appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js
.../entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js
+21
-23
未找到文件。
appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js
浏览文件 @
1bab33ec
...
@@ -65,11 +65,9 @@ describe('ActsBmsGetBackGroundModes', function () {
...
@@ -65,11 +65,9 @@ describe('ActsBmsGetBackGroundModes', function () {
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
'
action.system.home
'
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
'
entity.system.home
'
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
BUNDLE_NAME5
,
bundleName
:
BUNDLE_NAME5
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_FOUR
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_FOUR
);
if
(
dataInfos
.
length
==
NUM_FOUR
)
{
if
(
dataInfos
.
length
==
NUM_FOUR
)
{
...
@@ -110,11 +108,9 @@ describe('ActsBmsGetBackGroundModes', function () {
...
@@ -110,11 +108,9 @@ describe('ActsBmsGetBackGroundModes', function () {
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
'
action.system.home
'
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
'
entity.system.home
'
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
BUNDLE_NAME6
,
bundleName
:
BUNDLE_NAME6
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_NINE
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_NINE
);
for
(
let
i
=
0
,
len
=
dataInfos
.
length
;
i
<
len
;
i
++
)
{
for
(
let
i
=
0
,
len
=
dataInfos
.
length
;
i
<
len
;
i
++
)
{
...
@@ -132,11 +128,9 @@ describe('ActsBmsGetBackGroundModes', function () {
...
@@ -132,11 +128,9 @@ describe('ActsBmsGetBackGroundModes', function () {
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
'
action.system.home
'
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
'
entity.system.home
'
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
BUNDLE_NAME2
,
bundleName
:
BUNDLE_NAME2
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_TWO
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_TWO
);
if
(
dataInfos
.
length
==
NUM_TWO
)
{
if
(
dataInfos
.
length
==
NUM_TWO
)
{
...
@@ -173,11 +167,9 @@ describe('ActsBmsGetBackGroundModes', function () {
...
@@ -173,11 +167,9 @@ describe('ActsBmsGetBackGroundModes', function () {
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
'
action.system.home
'
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
'
entity.system.home
'
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
BUNDLE_NAME4
,
bundleName
:
BUNDLE_NAME4
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
1
);
expect
(
dataInfos
.
length
).
assertEqual
(
1
);
if
(
dataInfos
.
length
==
1
)
{
if
(
dataInfos
.
length
==
1
)
{
...
@@ -196,11 +188,9 @@ describe('ActsBmsGetBackGroundModes', function () {
...
@@ -196,11 +188,9 @@ describe('ActsBmsGetBackGroundModes', function () {
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
'
action.system.home
'
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
'
entity.system.home
'
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
BUNDLE_NAME1
,
bundleName
:
BUNDLE_NAME1
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_FOUR
);
expect
(
dataInfos
.
length
).
assertEqual
(
NUM_FOUR
);
if
(
dataInfos
.
length
==
NUM_FOUR
)
{
if
(
dataInfos
.
length
==
NUM_FOUR
)
{
...
...
appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js
浏览文件 @
1bab33ec
...
@@ -19,6 +19,8 @@ import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from
...
@@ -19,6 +19,8 @@ import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from
const
BUNDLE_NAME1
=
'
com.example.third1
'
;
const
BUNDLE_NAME1
=
'
com.example.third1
'
;
const
SYSTEM_NAME
=
'
com.example.system2
'
;
const
SYSTEM_NAME
=
'
com.example.system2
'
;
const
ABILITIY_NAME8
=
'
com.example.system2.MainAbility
'
;
const
ABILITIY_NAME8
=
'
com.example.system2.MainAbility
'
;
const
ACTION_NAME
=
'
action.system.home
'
;
const
ENTITY_NAME
=
'
entity.system.home
'
;
let
userId
=
0
;
let
userId
=
0
;
describe
(
'
ActsBmsQueryAbilityByWant
'
,
function
()
{
describe
(
'
ActsBmsQueryAbilityByWant
'
,
function
()
{
...
@@ -28,12 +30,12 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -28,12 +30,12 @@ describe('ActsBmsQueryAbilityByWant', function () {
console
.
info
(
"
getOsAccountLocalIdFromProcess userid ==========
"
+
account
);
console
.
info
(
"
getOsAccountLocalIdFromProcess userid ==========
"
+
account
);
userId
=
account
;
userId
=
account
;
done
();
done
();
}).
catch
(
err
=>
{
}).
catch
(
err
=>
{
console
.
info
(
"
getOsAccountLocalIdFromProcess err ==========
"
+
JSON
.
stringify
(
err
));
console
.
info
(
"
getOsAccountLocalIdFromProcess err ==========
"
+
JSON
.
stringify
(
err
));
done
();
done
();
})
})
});
});
/*
/*
* @tc.number: bms_queryAbilityByWant_0100
* @tc.number: bms_queryAbilityByWant_0100
* @tc.name: queryAbilityByWant callback by other callback
* @tc.name: queryAbilityByWant callback by other callback
...
@@ -42,8 +44,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -42,8 +44,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
*/
*/
it
(
'
bms_queryAbilityByWant_0100
'
,
0
,
async
function
(
done
)
{
it
(
'
bms_queryAbilityByWant_0100
'
,
0
,
async
function
(
done
)
{
await
bundle
.
queryAbilityByWant
({
await
bundle
.
queryAbilityByWant
({
action
:
[
'
action.system.home
'
]
,
action
:
ACTION_NAME
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
ENTITY_NAME
],
bundleName
:
BUNDLE_NAME1
bundleName
:
BUNDLE_NAME1
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
userId
).
then
(
data
=>
{
userId
).
then
(
data
=>
{
...
@@ -52,8 +54,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -52,8 +54,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
expect
(
err
).
assertEqual
(
1
);
expect
(
err
).
assertEqual
(
1
);
});
});
bundle
.
queryAbilityByWant
({
bundle
.
queryAbilityByWant
({
action
:
[
'
action.system.home
'
]
,
action
:
ACTION_NAME
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
ENTITY_NAME
],
bundleName
:
BUNDLE_NAME1
bundleName
:
BUNDLE_NAME1
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
userId
,
(
err
,
data
)
=>
{
userId
,
(
err
,
data
)
=>
{
...
@@ -72,8 +74,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -72,8 +74,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
it
(
'
bms_queryAbilityByWant_0200
'
,
0
,
async
function
(
done
)
{
it
(
'
bms_queryAbilityByWant_0200
'
,
0
,
async
function
(
done
)
{
await
bundle
.
queryAbilityByWant
(
await
bundle
.
queryAbilityByWant
(
{
{
action
:
[
'
action.system.home
'
]
,
action
:
ACTION_NAME
,
entities
:
[
'
entity.system.home
'
]
entities
:
[
ENTITY_NAME
]
},
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
userId
).
then
(
data
=>
{
userId
).
then
(
data
=>
{
...
@@ -87,8 +89,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -87,8 +89,8 @@ describe('ActsBmsQueryAbilityByWant', function () {
});
});
bundle
.
queryAbilityByWant
(
bundle
.
queryAbilityByWant
(
{
{
action
:
[
'
action.system.home
'
]
,
action
:
ACTION_NAME
,
entities
:
[
'
entity.system.home
'
]
entities
:
[
ENTITY_NAME
]
},
},
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
bundle
.
BundleFlag
.
GET_ABILITY_INFO_WITH_APPLICATION
|
bundle
.
BundleFlag
.
GET_ABILITY_INFO_SYSTEMAPP_ONLY
,
userId
,
(
err
,
data
)
=>
{
userId
,
(
err
,
data
)
=>
{
...
@@ -110,7 +112,7 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -110,7 +112,7 @@ describe('ActsBmsQueryAbilityByWant', function () {
*/
*/
it
(
'
bms_queryAbilityByEntities_0300
'
,
0
,
async
function
(
done
)
{
it
(
'
bms_queryAbilityByEntities_0300
'
,
0
,
async
function
(
done
)
{
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
let
dataInfos
=
await
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
ACTION_NAME
,
entities
:
[
"
entity.app.music
"
,
entities
:
[
"
entity.app.music
"
,
"
entity.app.email
"
,
"
entity.app.email
"
,
"
entity.app.contacts
"
,
"
entity.app.contacts
"
,
...
@@ -120,16 +122,14 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -120,16 +122,14 @@ describe('ActsBmsQueryAbilityByWant', function () {
"
entity.app.messaging
"
,
"
entity.app.messaging
"
,
"
entity.app.files
"
,
"
entity.app.files
"
,
"
entity.app.gallery
"
],
"
entity.app.gallery
"
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
''
,
bundleName
:
''
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
);
expect
(
dataInfos
.
length
).
assertEqual
(
1
);
expect
(
dataInfos
.
length
).
assertEqual
(
1
);
cheackAbilityInfos
(
dataInfos
[
0
]);
cheackAbilityInfos
(
dataInfos
[
0
]);
bundle
.
queryAbilityByWant
({
bundle
.
queryAbilityByWant
({
action
:
'
action.system.home
'
,
action
:
ACTION_NAME
,
entities
:
[
"
entity.app.music
"
,
entities
:
[
"
entity.app.music
"
,
"
entity.app.email
"
,
"
entity.app.email
"
,
"
entity.app.contacts
"
,
"
entity.app.contacts
"
,
...
@@ -139,11 +139,9 @@ describe('ActsBmsQueryAbilityByWant', function () {
...
@@ -139,11 +139,9 @@ describe('ActsBmsQueryAbilityByWant', function () {
"
entity.app.messaging
"
,
"
entity.app.messaging
"
,
"
entity.app.files
"
,
"
entity.app.files
"
,
"
entity.app.gallery
"
],
"
entity.app.gallery
"
],
elementName
:
{
deviceId
:
'
0
'
,
deviceId
:
'
0
'
,
bundleName
:
''
,
bundleName
:
''
,
abilityName
:
''
abilityName
:
''
,
},
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
,
(
err
,
data
)
=>
{
},
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
,
userId
,
(
err
,
data
)
=>
{
expect
(
data
.
length
).
assertEqual
(
1
);
expect
(
data
.
length
).
assertEqual
(
1
);
cheackAbilityInfos
(
data
[
0
]);
cheackAbilityInfos
(
data
[
0
]);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录