diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js index 53d8d7e8a93f73aaffe18bd8d596804f584035f6..bfb9998a95e36e4e224ff6d80ebaba33ba8889ca 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js +++ b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsGetBackGroundModes.test.js @@ -65,11 +65,9 @@ describe('ActsBmsGetBackGroundModes', function () { let dataInfos = await bundle.queryAbilityByWant({ action: 'action.system.home', entities: ['entity.system.home'], - elementName: { - deviceId: '0', - bundleName: BUNDLE_NAME5, - abilityName: '', - }, + deviceId: '0', + bundleName: BUNDLE_NAME5, + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(NUM_FOUR); if (dataInfos.length == NUM_FOUR) { @@ -110,11 +108,9 @@ describe('ActsBmsGetBackGroundModes', function () { let dataInfos = await bundle.queryAbilityByWant({ action: 'action.system.home', entities: ['entity.system.home'], - elementName: { - deviceId: '0', - bundleName: BUNDLE_NAME6, - abilityName: '', - }, + deviceId: '0', + bundleName: BUNDLE_NAME6, + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(NUM_NINE); for (let i = 0, len = dataInfos.length; i < len; i++) { @@ -132,11 +128,9 @@ describe('ActsBmsGetBackGroundModes', function () { let dataInfos = await bundle.queryAbilityByWant({ action: 'action.system.home', entities: ['entity.system.home'], - elementName: { - deviceId: '0', - bundleName: BUNDLE_NAME2, - abilityName: '', - }, + deviceId: '0', + bundleName: BUNDLE_NAME2, + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(NUM_TWO); if (dataInfos.length == NUM_TWO) { @@ -173,11 +167,9 @@ describe('ActsBmsGetBackGroundModes', function () { let dataInfos = await bundle.queryAbilityByWant({ action: 'action.system.home', entities: ['entity.system.home'], - elementName: { - deviceId: '0', - bundleName: BUNDLE_NAME4, - abilityName: '', - }, + deviceId: '0', + bundleName: BUNDLE_NAME4, + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(1); if (dataInfos.length == 1) { @@ -196,11 +188,9 @@ describe('ActsBmsGetBackGroundModes', function () { let dataInfos = await bundle.queryAbilityByWant({ action: 'action.system.home', entities: ['entity.system.home'], - elementName: { - deviceId: '0', - bundleName: BUNDLE_NAME1, - abilityName: '', - }, + deviceId: '0', + bundleName: BUNDLE_NAME1, + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(NUM_FOUR); if (dataInfos.length == NUM_FOUR) { diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js index 0ae5c8587afceac529b932f236f9301dc38929fb..9dff8ec565fcfddd893218543f05194ae51b8eb7 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js +++ b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js @@ -19,6 +19,8 @@ import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from const BUNDLE_NAME1 = 'com.example.third1'; const SYSTEM_NAME = 'com.example.system2'; const ABILITIY_NAME8 = 'com.example.system2.MainAbility'; +const ACTION_NAME = 'action.system.home'; +const ENTITY_NAME = 'entity.system.home'; let userId = 0; describe('ActsBmsQueryAbilityByWant', function () { @@ -28,12 +30,12 @@ describe('ActsBmsQueryAbilityByWant', function () { console.info("getOsAccountLocalIdFromProcess userid ==========" + account); userId = account; done(); - }).catch(err=>{ + }).catch(err => { console.info("getOsAccountLocalIdFromProcess err ==========" + JSON.stringify(err)); done(); - }) + }) }); - + /* * @tc.number: bms_queryAbilityByWant_0100 * @tc.name: queryAbilityByWant callback by other callback @@ -42,8 +44,8 @@ describe('ActsBmsQueryAbilityByWant', function () { */ it('bms_queryAbilityByWant_0100', 0, async function (done) { await bundle.queryAbilityByWant({ - action: ['action.system.home'], - entities: ['entity.system.home'], + action: ACTION_NAME, + entities: [ENTITY_NAME], bundleName: BUNDLE_NAME1 }, bundle.BundleFlag.GET_ABILITY_INFO_WITH_APPLICATION | bundle.BundleFlag.GET_ABILITY_INFO_SYSTEMAPP_ONLY, userId).then(data => { @@ -52,8 +54,8 @@ describe('ActsBmsQueryAbilityByWant', function () { expect(err).assertEqual(1); }); bundle.queryAbilityByWant({ - action: ['action.system.home'], - entities: ['entity.system.home'], + action: ACTION_NAME, + entities: [ENTITY_NAME], bundleName: BUNDLE_NAME1 }, bundle.BundleFlag.GET_ABILITY_INFO_WITH_APPLICATION | bundle.BundleFlag.GET_ABILITY_INFO_SYSTEMAPP_ONLY, userId, (err, data) => { @@ -72,8 +74,8 @@ describe('ActsBmsQueryAbilityByWant', function () { it('bms_queryAbilityByWant_0200', 0, async function (done) { await bundle.queryAbilityByWant( { - action: ['action.system.home'], - entities: ['entity.system.home'] + action: ACTION_NAME, + entities: [ENTITY_NAME] }, bundle.BundleFlag.GET_ABILITY_INFO_WITH_APPLICATION | bundle.BundleFlag.GET_ABILITY_INFO_SYSTEMAPP_ONLY, userId).then(data => { @@ -87,8 +89,8 @@ describe('ActsBmsQueryAbilityByWant', function () { }); bundle.queryAbilityByWant( { - action: ['action.system.home'], - entities: ['entity.system.home'] + action: ACTION_NAME, + entities: [ENTITY_NAME] }, bundle.BundleFlag.GET_ABILITY_INFO_WITH_APPLICATION | bundle.BundleFlag.GET_ABILITY_INFO_SYSTEMAPP_ONLY, userId, (err, data) => { @@ -110,7 +112,7 @@ describe('ActsBmsQueryAbilityByWant', function () { */ it('bms_queryAbilityByEntities_0300', 0, async function (done) { let dataInfos = await bundle.queryAbilityByWant({ - action: 'action.system.home', + action: ACTION_NAME, entities: ["entity.app.music", "entity.app.email", "entity.app.contacts", @@ -120,16 +122,14 @@ describe('ActsBmsQueryAbilityByWant', function () { "entity.app.messaging", "entity.app.files", "entity.app.gallery"], - elementName: { - deviceId: '0', - bundleName: '', - abilityName: '', - }, + deviceId: '0', + bundleName: '', + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId); expect(dataInfos.length).assertEqual(1); cheackAbilityInfos(dataInfos[0]); bundle.queryAbilityByWant({ - action: 'action.system.home', + action: ACTION_NAME, entities: ["entity.app.music", "entity.app.email", "entity.app.contacts", @@ -139,11 +139,9 @@ describe('ActsBmsQueryAbilityByWant', function () { "entity.app.messaging", "entity.app.files", "entity.app.gallery"], - elementName: { - deviceId: '0', - bundleName: '', - abilityName: '', - }, + deviceId: '0', + bundleName: '', + abilityName: '' }, bundle.BundleFlag.GET_BUNDLE_DEFAULT, userId, (err, data) => { expect(data.length).assertEqual(1); cheackAbilityInfos(data[0]);