未验证 提交 36c41935 编写于 作者: O openharmony_ci 提交者: Gitee

!3538 修改queryAbilityByWant的入参类型

Merge pull request !3538 from ry/master
...@@ -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) {
......
...@@ -30,7 +30,7 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -30,7 +30,7 @@ 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();
}) })
...@@ -44,7 +44,7 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -44,7 +44,7 @@ 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_NAME], action: ACTION_NAME,
entities: [ENTITY_NAME], 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,
...@@ -54,7 +54,7 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -54,7 +54,7 @@ describe('ActsBmsQueryAbilityByWant', function () {
expect(err).assertEqual(1); expect(err).assertEqual(1);
}); });
bundle.queryAbilityByWant({ bundle.queryAbilityByWant({
action: [ACTION_NAME], action: ACTION_NAME,
entities: [ENTITY_NAME], 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,
...@@ -74,7 +74,7 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -74,7 +74,7 @@ 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_NAME], action: ACTION_NAME,
entities: [ENTITY_NAME] 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,
...@@ -89,7 +89,7 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -89,7 +89,7 @@ describe('ActsBmsQueryAbilityByWant', function () {
}); });
bundle.queryAbilityByWant( bundle.queryAbilityByWant(
{ {
action: [ACTION_NAME], action: ACTION_NAME,
entities: [ENTITY_NAME] 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,
...@@ -122,11 +122,9 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -122,11 +122,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); }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId);
expect(dataInfos.length).assertEqual(1); expect(dataInfos.length).assertEqual(1);
cheackAbilityInfos(dataInfos[0]); cheackAbilityInfos(dataInfos[0]);
...@@ -141,11 +139,9 @@ describe('ActsBmsQueryAbilityByWant', function () { ...@@ -141,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.
先完成此消息的编辑!
想要评论请 注册