diff --git a/device_attest/BUILD.gn b/device_attest/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..e2ca8b3d21784160baa3b7c4aac0bf3a05dcb0c0 --- /dev/null +++ b/device_attest/BUILD.gn @@ -0,0 +1,23 @@ +# Copyright (c) 2021 Huawei Device Co., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import("//build/ohos_var.gni") + +group("device_attest") { + testonly = true + if (is_standard_system) { + deps = [ + "deviceAttest:deviceAttest_hap_test", + ] + } +} diff --git a/device_attest/deviceAttest/AppScope/app.json b/device_attest/deviceAttest/AppScope/app.json new file mode 100644 index 0000000000000000000000000000000000000000..7f5bcd12054818f0fc3b4078dc4b6b7e6ace3953 --- /dev/null +++ b/device_attest/deviceAttest/AppScope/app.json @@ -0,0 +1,21 @@ +{ + "app": { + "bundleName": "com.example.DeviceAttest", + "vendor": "huawei", + "versionCode": 1000000, + "versionName": "1.0.0", + "debug": false, + "icon": "$media:icon", + "label": "$string:app_name", + "description": "$string:description_application", + "distributedNotificationEnabled": true, + "keepAlive": true, + "singleUser": true, + "minAPIVersion": 9, + "targetAPIVersion": 9, + "car": { + "apiCompatibleVersion": 9, + "singleUser": false + } + } +} \ No newline at end of file diff --git a/device_attest/deviceAttest/AppScope/resources/base/element/string.json b/device_attest/deviceAttest/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..ee69f9a861d9dc269ed6638735d52674583498e1 --- /dev/null +++ b/device_attest/deviceAttest/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string":[ + { + "name":"app_name", + "value":"ohosProject" + } + ] +} \ No newline at end of file diff --git a/device_attest/deviceAttest/AppScope/resources/base/media/app_icon.png b/device_attest/deviceAttest/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..474a55588fd7216113dd42073aadf254d4dba023 Binary files /dev/null and b/device_attest/deviceAttest/AppScope/resources/base/media/app_icon.png differ diff --git a/device_attest/deviceAttest/BUILD.gn b/device_attest/deviceAttest/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..cdeef5cc1bbd4cc8382adbad1483b7c45e92fc6f --- /dev/null +++ b/device_attest/deviceAttest/BUILD.gn @@ -0,0 +1,41 @@ +# Copyright (c) 2021 Huawei Device Co., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import("//test/xts/tools/build/suite.gni") + +ohos_js_hap_suite("deviceAttest_hap_test") { + hap_profile = "entry/src/main/module.json" + js_build_mode = "debug" + deps = [ + ":graphicColorSpace_js_assets", + ":graphicColorSpace_resources", + ] + ets2abc = true + certificate_profile = "signature/openharmony_sx.p7b" + hap_name = "ActsDeviceAttestTest" +} + +ohos_app_scope("graphicColorSpace_app_profile") { + app_profile = "AppScope/app.json" + sources = [ "AppScope/resources" ] +} + +ohos_js_assets("graphicColorSpace_js_assets") { + source_dir = "entry/src/main/ets" +} + +ohos_resources("graphicColorSpace_resources") { + sources = [ "entry/src/main/resources" ] + deps = [ ":graphicColorSpace_app_profile" ] + hap_profile = "entry/src/main/module.json" +} diff --git a/device_attest/deviceAttest/Test.json b/device_attest/deviceAttest/Test.json new file mode 100644 index 0000000000000000000000000000000000000000..e5628aae28d9d3b7b6bf2a2005bda134e23370bd --- /dev/null +++ b/device_attest/deviceAttest/Test.json @@ -0,0 +1,18 @@ +{ + "description": "Configuration for hjunit demo Tests", + "driver": { + "type": "OHJSUnitTest", + "test-timeout": "360000", + "bundle-name": "com.example.DeviceAttest", + "module-name": "phone", + "shell-timeout": "360000", + "testcase-timeout": 70000 + }, + "kits": [{ + "test-file-name": [ + "ActsDeviceAttestTest.hap" + ], + "type": "AppInstallKit", + "cleanup-apps": true + }] +} \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/Application/AbilityStage.ts b/device_attest/deviceAttest/entry/src/main/ets/Application/AbilityStage.ts new file mode 100644 index 0000000000000000000000000000000000000000..b0e0206ea9fb5ce94ef140d69510b6280969dd8e --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/Application/AbilityStage.ts @@ -0,0 +1,9 @@ +import AbilityStage from "@ohos.app.ability.AbilityStage" + +export default class MyAbilityStage extends AbilityStage { + onCreate() { + console.log("[Demo] MyAbilityStage onCreate") + globalThis.stageOnCreateRun = 1; + globalThis.stageContext = this.context; + } +} diff --git a/device_attest/deviceAttest/entry/src/main/ets/MainAbility/MainAbility.ts b/device_attest/deviceAttest/entry/src/main/ets/MainAbility/MainAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..4d66065e88c907379883364a43ec02989cfd626b --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/MainAbility/MainAbility.ts @@ -0,0 +1,37 @@ +import Ability from '@ohos.app.ability.UIAbility' + +export default class MainAbility extends Ability { + onCreate(want,launchParam){ + // Ability is creating, initialize resources for this ability + console.log("[Demo] MainAbility onCreate") + globalThis.abilityWant = want; + } + + onDestroy() { + // Ability is destroying, release resources for this ability + console.log("[Demo] MainAbility onDestroy") + } + + onWindowStageCreate(windowStage) { + // Main window is created, set main page for this ability + console.log("[Demo] MainAbility onWindowStageCreate windowStage="+ windowStage) + globalThis.windowStage = windowStage + globalThis.abilityContext = this.context + windowStage.setUIContent(this.context, "MainAbility/pages/index/index", null) + } + + onWindowStageDestroy() { + //Main window is destroyed, release UI related resources + console.log("[Demo] MainAbility onWindowStageDestroy") + } + + onForeground() { + // Ability has brought to foreground + console.log("[Demo] MainAbility onForeground") + } + + onBackground() { + // Ability has back to background + console.log("[Demo] MainAbility onBackground") + } +}; \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/MainAbility/pages/index/index.ets b/device_attest/deviceAttest/entry/src/main/ets/MainAbility/pages/index/index.ets new file mode 100644 index 0000000000000000000000000000000000000000..97504e2440a9a6110fd5c9c02985914ef8d9e655 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/MainAbility/pages/index/index.ets @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import router from '@ohos.router'; +import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' +import { Hypium } from '@ohos/hypium' +import testsuite from '../../../test/List.test' + + +@Entry +@Component +struct Index { + + aboutToAppear(){ + console.info("start run testcase!!!!") + var abilityDelegator: any + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var abilityDelegatorArguments: any + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + console.info('start run testcase!!!') + Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) + } + + build() { + Flex({ direction:FlexDirection.Column, alignItems:ItemAlign.Center, justifyContent: FlexAlign.Center }) { + Text('Hello World') + .fontSize(50) + .fontWeight(FontWeight.Bold) + Button() { + Text('next page') + .fontSize(25) + .fontWeight(FontWeight.Bold) + }.type(ButtonType.Capsule) + .margin({ + top: 20 + }) + .backgroundColor('#0D9FFB') + .onClick(() => { + + }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/TestAbility/TestAbility.ts b/device_attest/deviceAttest/entry/src/main/ets/TestAbility/TestAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..8028a70f8af44690b95a08bd177bca6b09f24687 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/TestAbility/TestAbility.ts @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import Ability from '@ohos.app.ability.UIAbility' + +export default class TestAbility extends Ability { + onCreate(want, launchParam) { + console.log('TestAbility onCreate') + } + + onDestroy() { + console.log('TestAbility onDestroy') + } + + onWindowStageCreate(windowStage) { + console.log('TestAbility onWindowStageCreate') + windowStage.loadContent("TestAbility/pages/index", (err, data) => { + if (err.code) { + console.error('Failed to load the content. Cause:' + JSON.stringify(err)); + return; + } + console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)) + }); + + globalThis.abilityContext = this.context; + } + + onWindowStageDestroy() { + console.log('TestAbility onWindowStageDestroy') + } + + onForeground() { + console.log('TestAbility onForeground') + } + + onBackground() { + console.log('TestAbility onBackground') + } +}; \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/TestAbility/pages/index.ets b/device_attest/deviceAttest/entry/src/main/ets/TestAbility/pages/index.ets new file mode 100644 index 0000000000000000000000000000000000000000..b93567f962921124b282f78c8ef123965d1460c9 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/TestAbility/pages/index.ets @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import router from '@ohos.router'; + +@Entry +@Component +struct Index { + aboutToAppear() { + console.info('TestAbility index aboutToAppear') + } + @State message: string = 'Hello World' + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + Button() { + Text('next page') + .fontSize(20) + .fontWeight(FontWeight.Bold) + }.type(ButtonType.Capsule) + .margin({ + top: 20 + }) + .backgroundColor('#0D9FFB') + .width('35%') + .height('5%') + .onClick(()=>{ + }) + } + .width('100%') + } + .height('100%') + } + } \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts b/device_attest/deviceAttest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts new file mode 100644 index 0000000000000000000000000000000000000000..257a3c93181bc4aa1be4c21092e7b8e178125342 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import TestRunner from '@ohos.application.testRunner' +import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' + +var abilityDelegator = undefined +var abilityDelegatorArguments = undefined + +function translateParamsToString(parameters) { + const keySet = new Set([ + '-s class', '-s notClass', '-s suite', '-s it', + '-s level', '-s testType', '-s size', '-s timeout', + '-s dryRun' + ]) + let targetParams = ''; + for (const key in parameters) { + if (keySet.has(key)) { + targetParams = `${targetParams} ${key} ${parameters[key]}` + } + } + return targetParams.trim() +} + +async function onAbilityCreateCallback() { + console.log("onAbilityCreateCallback"); +} + +async function addAbilityMonitorCallback(err: any) { + console.info("addAbilityMonitorCallback : " + JSON.stringify(err)) +} + +export default class OpenHarmonyTestRunner implements TestRunner { + constructor() { + } + + onPrepare() { + console.info("OpenHarmonyTestRunner OnPrepare ") + } + + async onRun() { + console.log('OpenHarmonyTestRunner onRun run') + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var testAbilityName = abilityDelegatorArguments.bundleName + '.MainAbility' + let lMonitor = { + abilityName: testAbilityName, + onAbilityCreate: onAbilityCreateCallback, + }; + abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback) + var cmd = 'aa start -d 0 -a com.example.DeviceAttest.MainAbility' + ' -b ' + abilityDelegatorArguments.bundleName + cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters) + var debug = abilityDelegatorArguments.parameters["-D"] + if (debug == 'true') + { + cmd += ' -D' + } + console.info('cmd : '+cmd) + abilityDelegator.executeShellCommand(cmd, + (err: any, d: any) => { + console.info('executeShellCommand : err : ' + JSON.stringify(err)); + console.info('executeShellCommand : data : ' + d.stdResult); + console.info('executeShellCommand : data : ' + d.exitCode); + }) + console.info('OpenHarmonyTestRunner onRun end') + } +}; \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/ets/test/List.test.ets b/device_attest/deviceAttest/entry/src/main/ets/test/List.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..89dcbac27ff44e2dcf0e53e6e5daa80f52b7b8d8 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/test/List.test.ets @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import deviceAttestInfoTest from './deviceAttestInfo.test' + +export default function testsuite(context, windowStage, abilityStorage) { + deviceAttestInfoTest(context, windowStage, abilityStorage) +} diff --git a/device_attest/deviceAttest/entry/src/main/ets/test/deviceAttestInfo.test.ets b/device_attest/deviceAttest/entry/src/main/ets/test/deviceAttestInfo.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..47d590e744a812a94fc871d8cacbd9e19556c3a8 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/ets/test/deviceAttestInfo.test.ets @@ -0,0 +1,119 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from "@ohos/hypium" +import deviceAttest from '@ohos.deviceAttest'; + +export default function deviceAttestInfoTest(context, windowStage, abilityStorage) { + describe('deviceAttestInfoTest', function () { + console.info('describe deviceAttestInfoTest start!!!'); + beforeAll(function () { + console.info('before all'); + }) + beforeEach(function () { + console.info('before each'); + }) + afterEach(async function (done) { + console.info('afterEach'); + done(); + }) + afterAll(function () { + console.info('afterAll'); + }) + + /** + * @tc.number SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_001 + * @tc.name Test function getAttestStatus() : Promise + * @tc.desc 202 - Not System App. Interface caller is not a system app. + */ + it('SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_001', 0, async function (done) { + console.info('test the enum value of attestResultInfo begin'); + try{ + deviceAttest.getAttestStatus().then(attestResultInfo => { + console.info("!!!====>[FormComponent]1:data====>" + JSON.stringify(attestResultInfo)); + expect(attestResultInfo.authResult).assertEqual(""); + expect(attestResultInfo.softwareResult).assertEqual(""); + expect(attestResultInfo.softwareResultDetail).assertEqual(""); + expect(attestResultInfo.ticket).assertEqual(""); + done(); + } ,err => { + console.info("!!!====>[FormComponent]1:error_1====>" + JSON.stringify(err)); + expect(err.code == 202).assertTrue(); + done(); + }) + } catch(err) { + console.info("!!!====>[FormComponent]1:error_2====>" + JSON.stringify(err)); + expect(err.code == 202).assetTrue(); + done(); + } + }) + + /** + * @tc.number SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_002 + * @tc.name Test function getAttestStatus(callback: AsyncCallback) : void + * @tc.desc 202 - Not System App. Interface caller is not a system app. + */ + it('SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_002', 0, async function (done) { + console.info('test the enum value of attestResultInfo begin'); + try{ + deviceAttest.getAttestStatus(async (err, attestResultInfo) => { + if(err){ + console.info("!!!====>[FormComponent]2:error_1====>" + JSON.stringify(err)); + expect(err.code == 202).assertTrue(); + } + else{ + console.info("!!!====>[FormComponent]2:data====>" + JSON.stringify(attestResultInfo)); + expect(attestResultInfo.authResult).assertEqual(""); + expect(attestResultInfo.softwareResult).assertEqual(""); + expect(attestResultInfo.softwareResultDetail).assertEqual(""); + expect(attestResultInfo.ticket).assertEqual(""); + } + done(); + }); + } catch(err) { + console.info("!!!====>[FormComponent]2:error_2====>" + JSON.stringify(err)); + expect(err.code == 202).assetTrue(); + done(); + } + }) + + /** + * @tc.number SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_003 + * @tc.name Test function getAttestStatusSync() : AttestResultInfo; + * @tc.desc 202 - Not System App. Interface caller is not a system app. + */ + it('SUB_GRAPHIC_ENUMCOLORSPACE_JSAPI_003', 0, async function (done) { + console.info('test the enum value of attestResultInfo begin'); + try{ + let attestResultInfo = deviceAttest.getAttestStatusSync(); + if(attestResultInfo != null){ + console.info("!!!====>[FormComponent]3:data====>" + JSON.stringify(attestResultInfo)); + expect(attestResultInfo.authResult).assertEqual(""); + expect(attestResultInfo.softwareResult).assertEqual(""); + expect(attestResultInfo.softwareResultDetail).assertEqual(""); + expect(attestResultInfo.ticket).assertEqual(""); + } + else{ + console.info("!!!====>[FormComponent]3:error_1====>"); + expect().assetTrue(); + } + done(); + } catch(err) { + console.info("!!!====>[FormComponent]3:error_2====>" + JSON.stringify(err)); + expect(err.code).assertEqual(202); + done(); + } + }) + }) +} \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/module.json b/device_attest/deviceAttest/entry/src/main/module.json new file mode 100644 index 0000000000000000000000000000000000000000..72def68cacf3936305a348dc4a481f537241639f --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/module.json @@ -0,0 +1,41 @@ +{ + "module": { + "name": "phone", + "type": "entry", + "srcEntrance": "./ets/Application/AbilityStage.ts", + "description": "$string:phone_entry_dsc", + "mainElement": "MainAbility", + "deviceTypes": [ + "tablet", + "default" + ], + "deliveryWithInstall": true, + "installationFree": false, + "uiSyntax": "ets", + "pages": "$profile:main_pages", + "metadata": [ + { + "name": "ArkTSPartialUpdate", + "value": "false" + } + ], + "abilities": [{ + "name": "com.example.DeviceAttest.MainAbility", + "srcEntrance": "./ets/MainAbility/MainAbility.ts", + "description": "$string:phone_entry_main", + "icon": "$media:icon", + "label": "$string:entry_label", + "visible": true, + "orientation": "portrait", + "skills": [{ + "actions": [ + "action.system.home" + ], + "entities": [ + "entity.system.home" + ] + }] + }] + + } +} \ No newline at end of file diff --git a/device_attest/deviceAttest/entry/src/main/resources/base/element/string.json b/device_attest/deviceAttest/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..2a61b2e5baa39d8f3b258d50598e365ee889fee5 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/resources/base/element/string.json @@ -0,0 +1,32 @@ +{ + "string": [ + { + "name": "phone_entry_dsc", + "value": "i am an entry for phone" + }, + { + "name": "phone_entry_main", + "value": "the phone entry ability" + }, + { + "name": "entry_label", + "value": "ActsColorSpaceManagerTest" + }, + { + "name": "form_description", + "value": "my form" + }, + { + "name": "serviceability_description", + "value": "my whether" + }, + { + "name": "description_application", + "value": "demo for test" + }, + { + "name": "app_name", + "value": "Demo" + } + ] +} diff --git a/device_attest/deviceAttest/entry/src/main/resources/base/media/icon.png b/device_attest/deviceAttest/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..474a55588fd7216113dd42073aadf254d4dba023 Binary files /dev/null and b/device_attest/deviceAttest/entry/src/main/resources/base/media/icon.png differ diff --git a/device_attest/deviceAttest/entry/src/main/resources/base/profile/main_pages.json b/device_attest/deviceAttest/entry/src/main/resources/base/profile/main_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..ceb075cd80946aade673d707aac904fb8998bce9 --- /dev/null +++ b/device_attest/deviceAttest/entry/src/main/resources/base/profile/main_pages.json @@ -0,0 +1,5 @@ +{ + "src": [ + "MainAbility/pages/index/index" + ] +} \ No newline at end of file diff --git a/device_attest/deviceAttest/signature/openharmony_sx.p7b b/device_attest/deviceAttest/signature/openharmony_sx.p7b new file mode 100644 index 0000000000000000000000000000000000000000..83337f8f97fa9e6dccc2be7b799fc9be44ffb741 Binary files /dev/null and b/device_attest/deviceAttest/signature/openharmony_sx.p7b differ diff --git a/test_packages.gni b/test_packages.gni index 62f36daa18a16cb4bac746761ea2ae33e8f557a3..51f2e42fe25e54f90f9137188102773da3b1d0c1 100644 --- a/test_packages.gni +++ b/test_packages.gni @@ -49,6 +49,7 @@ _all_test_packages = [ "${ACTS_ROOT}/applications:applications", "${ACTS_ROOT}/wukong:wukong", "${ACTS_ROOT}/validator:validator", + "${ACTS_ROOT}/device_attest:device_attest", ] _all_test_packages_ivi = [