未验证 提交 1a89cc13 编写于 作者: O openharmony_ci 提交者: Gitee

!2974 修改多hap安装用例,增加检查点,修改不符合用例描述的辅助demo

Merge pull request !2974 from ry/master
...@@ -16,28 +16,28 @@ ...@@ -16,28 +16,28 @@
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from 'deccjsunit/index' import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from 'deccjsunit/index'
import demo from '@ohos.bundle' import demo from '@ohos.bundle'
const PATH = "/data/" const PATH = "/data/";
const ERROR = "error.hap" const ERROR = "error.hap";
const BMSJSTEST1 = "bmsJstest1.hap" const BMSJSTEST1 = "bmsJstest1.hap";
const BMSJSTEST2 = "bmsJstest2.hap" const BMSJSTEST2 = "bmsJstest2.hap";
const BMSJSTEST3 = "bmsJstest3.hap" const BMSJSTEST3 = "bmsJstest3.hap";
const BMSJSTEST4 = "bmsJstest4.hap" const BMSJSTEST4 = "bmsJstest4.hap";
const BMSJSTEST5 = "bmsJstest5.hap" const BMSJSTEST5 = "bmsJstest5.hap";
const BMSJSTEST6 = "bmsJstest6.hap" const BMSJSTEST6 = "bmsJstest6.hap";
const BMSJSTEST8 = "bmsJstest8.hap" const BMSJSTEST8 = "bmsJstest8.hap";
const NAME1 = "com.example.myapplication1" const NAME1 = "com.example.myapplication1";
const NAME2 = "com.example.myapplication2" const NAME2 = "com.example.myapplication2";
const NAME3 = "com.example.myapplication4" const NAME3 = "com.example.myapplication4";
const NAME4 = "com.example.myapplication5" const NAME4 = "com.example.myapplication5";
const NAME5 = "com.example.myapplication6" const NAME5 = "com.example.myapplication6";
const THIRD1 = "com.example.third1" const THIRD1 = "com.example.third1";
const LAUNCHER = "com.ohos.launcher" const LAUNCHER = "com.ohos.launcher";
const SUCCESS = "SUCCESS" const SUCCESS = "SUCCESS";
let installParam = { const installParam = {
userId: 100, userId: 100,
installFlag: 1, installFlag: 1,
isKeepData: false isKeepData: false
} };
describe('ActsBundleManagerUninstall', function () { describe('ActsBundleManagerUninstall', function () {
...@@ -47,17 +47,17 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -47,17 +47,17 @@ describe('ActsBundleManagerUninstall', function () {
* @tc.desc Test uninstall interfaces. * @tc.desc Test uninstall interfaces.
*/ */
it('uninstall_0100', 0, async function (done) { it('uninstall_0100', 0, async function (done) {
let installData = await demo.getBundleInstaller() let installData = await demo.getBundleInstaller();
installData.install([PATH + BMSJSTEST1], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST1], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME1, 0) await queryInfo(NAME1, 0);
installData.uninstall(NAME1, installParam, async (err, data) => { installData.uninstall(NAME1, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME1, 1) await queryInfo(NAME1, 1);
done() done();
}) });
}) });
}) });
/** /**
* @tc.number uninstall_0200 * @tc.number uninstall_0200
...@@ -65,18 +65,18 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -65,18 +65,18 @@ describe('ActsBundleManagerUninstall', function () {
* @tc.desc Test uninstall interfaces. * @tc.desc Test uninstall interfaces.
*/ */
it('uninstall_0200', 0, async function (done) { it('uninstall_0200', 0, async function (done) {
let installData = await demo.getBundleInstaller() let installData = await demo.getBundleInstaller();
installData.install([PATH + BMSJSTEST2, PATH + BMSJSTEST3], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST2, PATH + BMSJSTEST3], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
let bundleInfo = await demo.getBundleInfo(NAME2, demo.BundleFlag.GET_BUNDLE_DEFAULT); let bundleInfo = await demo.getBundleInfo(NAME2, demo.BundleFlag.GET_BUNDLE_DEFAULT);
expect(bundleInfo.appInfo.moduleSourceDirs.length).assertEqual(2) expect(bundleInfo.appInfo.moduleSourceDirs.length).assertEqual(2);
installData.uninstall(NAME2, installParam, async(err, data) => { installData.uninstall(NAME2, installParam, async(err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME2, 1) await queryInfo(NAME2, 1);
done() done();
}) });
}) });
}) });
/** /**
* @tc.number uninstall_0300 * @tc.number uninstall_0300
...@@ -84,33 +84,33 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -84,33 +84,33 @@ describe('ActsBundleManagerUninstall', function () {
* @tc.desc Test uninstall interfaces. * @tc.desc Test uninstall interfaces.
*/ */
it('uninstall_0300', 0, async function (done) { it('uninstall_0300', 0, async function (done) {
let installData = await demo.getBundleInstaller() let installData = await demo.getBundleInstaller();
installData.install([PATH + BMSJSTEST4], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST4], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
installData.install([PATH + BMSJSTEST5], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST5], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
installData.install([PATH + BMSJSTEST6], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST6], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME3, 0) await queryInfo(NAME3, 0);
await queryInfo(NAME4, 0) await queryInfo(NAME4, 0);
await queryInfo(NAME5, 0) await queryInfo(NAME5, 0);
installData.uninstall(NAME3, installParam, async (err, data) => { installData.uninstall(NAME3, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
installData.uninstall(NAME4, installParam, async (err, data) => { installData.uninstall(NAME4, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
installData.uninstall(NAME5, installParam, async (err, data) => { installData.uninstall(NAME5, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME3, 1) await queryInfo(NAME3, 1);
await queryInfo(NAME4, 1) await queryInfo(NAME4, 1);
await queryInfo(NAME5, 1) await queryInfo(NAME5, 1);
done() done();
}) });
}) });
}) });
}) });
}) });
}) });
}) });
/** /**
* @tc.number uninstall_0400 * @tc.number uninstall_0400
...@@ -120,12 +120,13 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -120,12 +120,13 @@ describe('ActsBundleManagerUninstall', function () {
it('uninstall_0400', 0, async function (done) { it('uninstall_0400', 0, async function (done) {
demo.getBundleInstaller().then((data) => { demo.getBundleInstaller().then((data) => {
data.uninstall(ERROR, installParam, (err, data) => { data.uninstall(ERROR, installParam, (err, data) => {
expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE) expect(err.code).assertEqual(-1);
expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE") expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE);
done() expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE");
}) done();
}) });
}) });
});
/** /**
* @tc.number uninstall_0500 * @tc.number uninstall_0500
...@@ -135,12 +136,13 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -135,12 +136,13 @@ describe('ActsBundleManagerUninstall', function () {
it('uninstall_0500', 0, async function (done) { it('uninstall_0500', 0, async function (done) {
demo.getBundleInstaller().then((data) => { demo.getBundleInstaller().then((data) => {
data.uninstall('', installParam, (err, data) => { data.uninstall('', installParam, (err, data) => {
expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE_ABORTED) expect(err.code).assertEqual(-1);
expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE_ABORTED") expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE);
done() expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE");
}) done();
}) });
}) });
});
/** /**
* @tc.number uninstall_0600 * @tc.number uninstall_0600
...@@ -150,12 +152,13 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -150,12 +152,13 @@ describe('ActsBundleManagerUninstall', function () {
it('uninstall_0600', 0, async function (done) { it('uninstall_0600', 0, async function (done) {
demo.getBundleInstaller().then((data) => { demo.getBundleInstaller().then((data) => {
data.uninstall(LAUNCHER, installParam, (err, data) => { data.uninstall(LAUNCHER, installParam, (err, data) => {
expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE_CONFLICT) expect(err.code).assertEqual(-1);
expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE_CONFLICT") expect(data.status).assertEqual(demo.InstallErrorCode.STATUS_UNINSTALL_FAILURE);
done() expect(data.statusMessage).assertEqual("STATUS_UNINSTALL_FAILURE");
}) done();
}) });
}) });
});
/** /**
* @tc.number uninstall_0700 * @tc.number uninstall_0700
...@@ -169,15 +172,15 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -169,15 +172,15 @@ describe('ActsBundleManagerUninstall', function () {
installFlag: 1, installFlag: 1,
isKeepData: true isKeepData: true
}, async (err, data) => { }, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME1, 0) await queryInfo(NAME1, 0);
result.uninstall(NAME1, installParam, async (err, data) => { result.uninstall(NAME1, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo(NAME1, 1) await queryInfo(NAME1, 1);
done() done();
}) });
}) });
}) });
/** /**
* @tc.number uninstall_0800 * @tc.number uninstall_0800
...@@ -187,42 +190,43 @@ describe('ActsBundleManagerUninstall', function () { ...@@ -187,42 +190,43 @@ describe('ActsBundleManagerUninstall', function () {
it('uninstall_0800', 0, async function (done) { it('uninstall_0800', 0, async function (done) {
let installData = await demo.getBundleInstaller(); let installData = await demo.getBundleInstaller();
installData.install([PATH + BMSJSTEST8], installParam, async (err, data) => { installData.install([PATH + BMSJSTEST8], installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
let bundleInfo = await demo.getBundleInfo('com.example.third1', demo.BundleFlag.GET_BUNDLE_DEFAULT); let bundleInfo = await demo.getBundleInfo('com.example.third1', demo.BundleFlag.GET_BUNDLE_DEFAULT);
expect(bundleInfo.uid).assertLarger(10000); expect(bundleInfo.uid).assertLarger(10000);
installData.uninstall(THIRD1, installParam, async (err, data) => { installData.uninstall(THIRD1, installParam, async (err, data) => {
checkInstallResult(data) checkInstallResult(err, data);
await queryInfo('com.example.third1', 1) await queryInfo('com.example.third1', 1);
done() done();
}) });
}) });
}) });
async function queryInfo(bundleName, assertFlag){ async function queryInfo(bundleName, assertFlag){
if (!assertFlag) { if (!assertFlag) {
await demo.getBundleInfo(bundleName, demo.BundleFlag.GET_BUNDLE_DEFAULT await demo.getBundleInfo(bundleName, demo.BundleFlag.GET_BUNDLE_DEFAULT
).then(datainfo => { ).then(datainfo => {
console.info("getBundleInfo result0"+JSON.stringify(datainfo)) console.info("getBundleInfo result0"+JSON.stringify(datainfo));
expect(datainfo.name).assertEqual(bundleName) expect(datainfo.name).assertEqual(bundleName);
}).catch(err => { }).catch(err => {
console.info("getBundleInfo result0"+JSON.stringify(datainfo)) console.info("getBundleInfo result0"+JSON.stringify(datainfo));
expect(err).assertFail() expect(err).assertFail();
}) });
} else { } else {
await demo.getBundleInfo(bundleName, demo.BundleFlag.GET_BUNDLE_DEFAULT await demo.getBundleInfo(bundleName, demo.BundleFlag.GET_BUNDLE_DEFAULT
).then(datainfo => { ).then(datainfo => {
console.info("getBundleInfo result1"+JSON.stringify(datainfo)) console.info("getBundleInfo result1"+JSON.stringify(datainfo));
expect(datainfo).assertFail() expect(datainfo).assertFail();
}).catch(err => { }).catch(err => {
console.info("getBundleInfo result1"+JSON.stringify(err)) console.info("getBundleInfo result1"+JSON.stringify(err));
expect(err).assertEqual(1) expect(err).assertEqual(1);
}) });
} }
} }
function checkInstallResult(result) { function checkInstallResult(err, result) {
console.info("install uninstall result" + JSON.stringify(result)) console.info("install uninstall result" + JSON.stringify(result));
expect(result.status).assertEqual(demo.InstallErrorCode.SUCCESS) expect(err.code).assertEqual(0);
expect(result.statusMessage).assertEqual(SUCCESS) expect(result.status).assertEqual(demo.InstallErrorCode.SUCCESS);
expect(result.statusMessage).assertEqual(SUCCESS);
} }
}) })
\ No newline at end of file
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.1" "name": "1.0.1"
} }
}, },
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
"vendor": "example", "vendor": "example",
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
"vendor": "example", "vendor": "example",
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"mainAbility": "com.example.l3jsdemo.MainAbility", "mainAbility": "com.example.l3jsdemo.MainAbility",
"distro": { "distro": {
"moduleType": "entry", "moduleType": "entry",
"installationFree": true, "installationFree": false,
"deliveryWithInstall": true, "deliveryWithInstall": true,
"moduleName": "entry" "moduleName": "entry"
}, },
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
"vendor": "example", "vendor": "example",
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"version": { "version": {
"code": 1000001, "code": 3000000,
"name": "1.0.0" "name": "3.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000001, "code": 3000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"iconId": 33554436, "iconId": 33554436,
"apiVersion": { "apiVersion": {
"compatible": 4, "compatible": 4,
"releaseType": "Beta1", "releaseType": "Release",
"target": 6 "target": 6
}, },
"labelId": 33554432, "labelId": 33554432,
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
"mainAbility": "com.example.l2jsdemo.MainAbility", "mainAbility": "com.example.l2jsdemo.MainAbility",
"distro": { "distro": {
"moduleType": "feature", "moduleType": "feature",
"installationFree": false, "installationFree": true,
"deliveryWithInstall": true, "deliveryWithInstall": true,
"moduleName": "l2jsdemo" "moduleName": "l2jsdemo"
}, },
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000001, "code": 3000000,
"name": "1.0.0" "name": "3.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000001, "code": 3000000,
"name": "1.0.0" "name": "3.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
"mainAbility": "com.example.l2jsdemo.MainAbility", "mainAbility": "com.example.l2jsdemo.MainAbility",
"distro": { "distro": {
"moduleType": "feature", "moduleType": "feature",
"installationFree": false, "installationFree": true,
"deliveryWithInstall": true, "deliveryWithInstall": true,
"moduleName": "l2jsdemo" "moduleName": "l2jsdemo"
}, },
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 999999, "code": 1000000,
"name": "1.0.0" "name": "1.0.0"
} }
}, },
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
"mainAbility": "com.example.l1jsdemo.MainAbility", "mainAbility": "com.example.l1jsdemo.MainAbility",
"distro": { "distro": {
"moduleType": "feature", "moduleType": "feature",
"installationFree": false, "installationFree": true,
"deliveryWithInstall": true, "deliveryWithInstall": true,
"moduleName": "l1jsdemo" "moduleName": "l1jsdemo"
}, },
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"bundleName": "com.example.l3jsdemo", "bundleName": "com.example.l3jsdemo",
"label": "$string:app_name", "label": "$string:app_name",
"version": { "version": {
"code": 1000000, "code": 2000000,
"name": "1.0.0" "name": "2.0.0"
} }
}, },
"deviceConfig": { "deviceConfig": {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册