提交 315ded89 编写于 作者: L longwei

fix xts for bundleType

Change-Id: I394c2fde73df7b06f0a71520044ae83a66139c08
Signed-off-by: Nlongwei <longwei27@huawei.com>
上级 e553ea39
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
...@@ -17,4 +18,4 @@ ...@@ -17,4 +18,4 @@
"singleUser": false "singleUser": false
} }
} }
} }
\ No newline at end of file
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
......
...@@ -5,11 +5,12 @@ ...@@ -5,11 +5,12 @@
"versionCode": 1000000, "versionCode": 1000000,
"versionName": "1.0.0", "versionName": "1.0.0",
"icon": "$media:app_icon", "icon": "$media:app_icon",
"label": "$string:app_name", "label": "$string:app_name",
"description": "description_application", "description": "description_application",
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"targetBundleList": [ "targetBundleList": [
...@@ -17,4 +18,4 @@ ...@@ -17,4 +18,4 @@
] ]
} }
} }
\ No newline at end of file
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"distributedNotificationEnabled": true, "distributedNotificationEnabled": true,
"keepAlive": true, "keepAlive": true,
"singleUser": true, "singleUser": true,
"bundleType": "atomicService",
"minAPIVersion": 9, "minAPIVersion": 9,
"targetAPIVersion": 9, "targetAPIVersion": 9,
"car": { "car": {
......
...@@ -13,10 +13,7 @@ ...@@ -13,10 +13,7 @@
"singleUser":true, "singleUser":true,
"minAPIVersion":9, "minAPIVersion":9,
"targetAPIVersion":9, "targetAPIVersion":9,
"atomicService":{ "bundleType": "atomicService",
"split":true,
"main":"testModule"
},
"car":{ "car":{
"apiCompatibleVersion":9, "apiCompatibleVersion":9,
"singleUser":false "singleUser":false
......
...@@ -36,14 +36,11 @@ export default function getBundleInfoForSelf() { ...@@ -36,14 +36,11 @@ export default function getBundleInfoForSelf() {
console.info("getBundleInfoForSelfApplicationPro : " + i + " ==" + JSON.stringify(data.hapModulesInfo[i])); console.info("getBundleInfoForSelfApplicationPro : " + i + " ==" + JSON.stringify(data.hapModulesInfo[i]));
} }
expect(data.appInfo.bundleType).assertEqual(bundle.BundleType.ATOMIC_SERVICE); expect(data.appInfo.bundleType).assertEqual(bundle.BundleType.ATOMIC_SERVICE);
expect(data.appInfo.split).assertEqual(true);
expect(bundle.ModuleType.SHARED).assertEqual(3); expect(bundle.ModuleType.SHARED).assertEqual(3);
expect(data.hapModulesInfo[0].type).assertEqual(bundle.ModuleType.FEATURE); expect(data.hapModulesInfo[0].type).assertEqual(bundle.ModuleType.FEATURE);
expect(data.hapModulesInfo[0].atomicServiceModuleType).assertEqual(bundle.AtomicServiceModuleType.NORMAL);
expect(data.hapModulesInfo[0].preloads.length).assertEqual(0); expect(data.hapModulesInfo[0].preloads.length).assertEqual(0);
expect(data.hapModulesInfo[0].dependencies.length).assertEqual(0); expect(data.hapModulesInfo[0].dependencies.length).assertEqual(0);
expect(data.hapModulesInfo[1].type).assertEqual(bundle.ModuleType.ENTRY); expect(data.hapModulesInfo[1].type).assertEqual(bundle.ModuleType.ENTRY);
expect(data.hapModulesInfo[1].atomicServiceModuleType).assertEqual(bundle.AtomicServiceModuleType.MAIN);
expect(data.hapModulesInfo[1].preloads.length).assertEqual(1); expect(data.hapModulesInfo[1].preloads.length).assertEqual(1);
expect(data.hapModulesInfo[1].preloads[0].moduleName).assertEqual("feature"); expect(data.hapModulesInfo[1].preloads[0].moduleName).assertEqual("feature");
expect(data.hapModulesInfo[1].dependencies.length).assertEqual(1); expect(data.hapModulesInfo[1].dependencies.length).assertEqual(1);
...@@ -58,4 +55,4 @@ export default function getBundleInfoForSelf() { ...@@ -58,4 +55,4 @@ export default function getBundleInfoForSelf() {
}) })
} }
\ No newline at end of file
...@@ -13,10 +13,7 @@ ...@@ -13,10 +13,7 @@
"singleUser":true, "singleUser":true,
"minAPIVersion":9, "minAPIVersion":9,
"targetAPIVersion":9, "targetAPIVersion":9,
"atomicService":{ "bundleType": "atomicService",
"split":true,
"main":"testModule"
},
"car":{ "car":{
"apiCompatibleVersion":9, "apiCompatibleVersion":9,
"singleUser":false "singleUser":false
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册