Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
51b71758
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
51b71758
编写于
7月 26, 2023
作者:
王
王桢
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加针对backupextentionAbility新增接口的xts用例。
Signed-off-by:
N
王桢
<
wangzhen54@huawei.com
>
上级
7ede3e8c
变更
21
隐藏空白更改
内联
并排
Showing
21 changed file
with
609 addition
and
0 deletion
+609
-0
storage/BUILD.gn
storage/BUILD.gn
+1
-0
storage/backupextensiontest/AppScope/app.json
storage/backupextensiontest/AppScope/app.json
+21
-0
storage/backupextensiontest/AppScope/resources/base/element/string.json
...extensiontest/AppScope/resources/base/element/string.json
+8
-0
storage/backupextensiontest/AppScope/resources/base/media/app_icon.png
...pextensiontest/AppScope/resources/base/media/app_icon.png
+0
-0
storage/backupextensiontest/BUILD.gn
storage/backupextensiontest/BUILD.gn
+43
-0
storage/backupextensiontest/Test.json
storage/backupextensiontest/Test.json
+45
-0
storage/backupextensiontest/entry/src/main/ets/Application/AbilityStage.ts
...ensiontest/entry/src/main/ets/Application/AbilityStage.ts
+9
-0
storage/backupextensiontest/entry/src/main/ets/MainAbility/MainAbility.ts
...tensiontest/entry/src/main/ets/MainAbility/MainAbility.ts
+37
-0
storage/backupextensiontest/entry/src/main/ets/MainAbility/pages/index/index.ets
...test/entry/src/main/ets/MainAbility/pages/index/index.ets
+56
-0
storage/backupextensiontest/entry/src/main/ets/TestAbility/TestAbility.ts
...tensiontest/entry/src/main/ets/TestAbility/TestAbility.ts
+53
-0
storage/backupextensiontest/entry/src/main/ets/TestAbility/pages/index.ets
...ensiontest/entry/src/main/ets/TestAbility/pages/index.ets
+48
-0
storage/backupextensiontest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
...st/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
+78
-0
storage/backupextensiontest/entry/src/main/ets/common/BackupExtension.ts
...xtensiontest/entry/src/main/ets/common/BackupExtension.ts
+25
-0
storage/backupextensiontest/entry/src/main/ets/test/Ability.test.ets
...kupextensiontest/entry/src/main/ets/test/Ability.test.ets
+58
-0
storage/backupextensiontest/entry/src/main/ets/test/List.test.ets
...backupextensiontest/entry/src/main/ets/test/List.test.ets
+20
-0
storage/backupextensiontest/entry/src/main/module.json
storage/backupextensiontest/entry/src/main/module.json
+57
-0
storage/backupextensiontest/entry/src/main/resources/base/element/string.json
...iontest/entry/src/main/resources/base/element/string.json
+36
-0
storage/backupextensiontest/entry/src/main/resources/base/media/icon.png
...xtensiontest/entry/src/main/resources/base/media/icon.png
+0
-0
storage/backupextensiontest/entry/src/main/resources/base/profile/backup_config.json
.../entry/src/main/resources/base/profile/backup_config.json
+9
-0
storage/backupextensiontest/entry/src/main/resources/base/profile/main_pages.json
...est/entry/src/main/resources/base/profile/main_pages.json
+5
-0
storage/backupextensiontest/signature/openharmony_sx.p7b
storage/backupextensiontest/signature/openharmony_sx.p7b
+0
-0
未找到文件。
storage/BUILD.gn
浏览文件 @
51b71758
...
...
@@ -16,6 +16,7 @@ group("storage") {
testonly = true
if (is_standard_system) {
deps = [
"backupextensiontest:backupextension_js_test",
"crossplatform/storagefsetstest:ActsCrossplatformFsTest",
"storagefileioerrorjstest:storagefileioerror_js_test",
"storagefileiojstest:storagefileio_js_test",
...
...
storage/backupextensiontest/AppScope/app.json
0 → 100644
浏览文件 @
51b71758
{
"app"
:
{
"bundleName"
:
"ohos.acts.storage.backupextention"
,
"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
}
}
}
storage/backupextensiontest/AppScope/resources/base/element/string.json
0 → 100644
浏览文件 @
51b71758
{
"string"
:[
{
"name"
:
"app_name"
,
"value"
:
"backupExtension"
}
]
}
storage/backupextensiontest/AppScope/resources/base/media/app_icon.png
0 → 100644
浏览文件 @
51b71758
6.6 KB
storage/backupextensiontest/BUILD.gn
0 → 100644
浏览文件 @
51b71758
# Copyright (c) 2023 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("backupextension_js_test") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":backupextension_js_assets",
":backupextension_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsBackupExtensionTest"
part_name = "app_file_service"
subsystem_name = "filemanagement"
}
ohos_app_scope("backupextension_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("backupextension_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("backupextension_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":backupextension_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
storage/backupextensiontest/Test.json
0 → 100644
浏览文件 @
51b71758
{
"description"
:
"Configuration for backupextension Tests"
,
"driver"
:
{
"type"
:
"OHJSUnitTest"
,
"test-timeout"
:
"180000"
,
"bundle-name"
:
"ohos.acts.storage.backupextention"
,
"module-name"
:
"phone"
,
"shell-timeout"
:
"600000"
,
"testcase-timeout"
:
100000
},
"kits"
:
[
{
"type"
:
"ShellKit"
,
"pre-push"
:
[],
"run-command"
:
[
"param set persist.ace.testmode.enabled 1"
,
"power-shell wakeup"
,
"uinput -T -d 300 600 -m 300 600 300 100 -u 300 100"
,
"power-shell setmode 602"
]
},
{
"type"
:
"PushKit"
,
"pre-push"
:
[],
"push"
:
[]
},
{
"type"
:
"ShellKit"
,
"run-command"
:
[
"hilog -Q pidoff"
,
"hilog -p off"
,
"hilog -b I"
,
"hilog -b D -D 0xD002B70"
,
"sleep 10"
]
},
{
"test-file-name"
:
[
"ActsBackupExtensionTest.hap"
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
}
]
}
storage/backupextensiontest/entry/src/main/ets/Application/AbilityStage.ts
0 → 100644
浏览文件 @
51b71758
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
;
}
}
storage/backupextensiontest/entry/src/main/ets/MainAbility/MainAbility.ts
0 → 100644
浏览文件 @
51b71758
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
;
globalThis
.
context
=
this
.
context
;
}
onDestroy
()
{
// Ability is destroying, release resources for this ability
console
.
log
(
"
[Demo] MainAbility onDestroy
"
)
}
async
onWindowStageCreate
(
windowStage
)
{
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
storage/backupextensiontest/entry/src/main/ets/MainAbility/pages/index/index.ets
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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
storage/backupextensiontest/entry/src/main/ets/TestAbility/TestAbility.ts
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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
))
});
var
permissions
=
[
'
ohos.permission.START_ABILITIES_FROM_BACKGROUND
'
]
this
.
context
.
requestPermissionsFromUser
(
permissions
,(
err
,
result
)
=>
{})
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
storage/backupextensiontest/entry/src/main/ets/TestAbility/pages/index.ets
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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
storage/backupextensiontest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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.myapplication.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
storage/backupextensiontest/entry/src/main/ets/common/BackupExtension.ts
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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
BackupExtensionAbility
,
{
BundleVersion
}
from
'
@ohos.application.BackupExtensionAbility
'
;
export
default
class
BackupExt
extends
BackupExtensionAbility
{
onRestore
(
ver
:
BundleVersion
)
{
console
.
log
(
'
do restore
'
+
JSON
.
stringify
(
ver
));
}
onBackup
()
{
console
.
log
(
'
do backup.
'
);
}
};
storage/backupextensiontest/entry/src/main/ets/test/Ability.test.ets
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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 "deccjsunit/index";
import BackupExtensionAbility, {BundleVersion} from '@ohos.application.BackupExtensionAbility';
export class BackupExt extends BackupExtensionAbility {
onRestore(ver : BundleVersion) {
console.log('do restore ' + JSON.stringify(ver))
}
onBackup() {
console.log('do backup.')
}
};
export default function abilityTest() {
describe("backupExtension", function () {
/**
* @tc.number : SUB_BACKUPEXTENSION_CALL_0000
* @tc.name : backupextension_test_call_000
* @tc.desc : select with option
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 0
*/
it("backupextension_test_call_000", 0, function(done) {
try {
let backupExt = new BackupExt()
backupExt.onBackup()
let ver = {
code : 1,
name : '1.0.0.0',
}
backupExt.onRestore(ver)
console.info('backupextension run ok')
expect(true).assertTrue()
done()
} catch (error) {
console.info(`backupextension error: ${JSON.stringify(error)}`)
expect(false).assertTrue()
done()
}
});
});
}
storage/backupextensiontest/entry/src/main/ets/test/List.test.ets
0 → 100644
浏览文件 @
51b71758
/*
* Copyright (c) 2023 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 abilityTest from './Ability.test'
export default function testsuite() {
abilityTest()
}
storage/backupextensiontest/entry/src/main/module.json
0 → 100644
浏览文件 @
51b71758
{
"module"
:
{
"name"
:
"phone"
,
"type"
:
"entry"
,
"srcEntrance"
:
"./ets/Application/AbilityStage.ts"
,
"description"
:
"$string:phone_entry_dsc"
,
"mainElement"
:
"MainAbility"
,
"deviceTypes"
:
[
"tablet"
,
"default"
,
"phone"
,
"2in1"
],
"deliveryWithInstall"
:
true
,
"installationFree"
:
false
,
"uiSyntax"
:
"ets"
,
"pages"
:
"$profile:main_pages"
,
"abilities"
:
[
{
"name"
:
"com.example.myapplication.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"
]
}
]
}
],
"extensionAbilities"
:
[
{
"description"
:
"$string:ServiceExtAbility"
,
"icon"
:
"$media:icon"
,
"name"
:
"BackupExtensionAbility"
,
"type"
:
"backup"
,
"visible"
:
true
,
"metadata"
:
[
{
"name"
:
"ohos.extension.backup"
,
"resource"
:
"$profile:backup_config"
}
],
"srcEntrance"
:
"./ets/common/BackupExtension.ts"
}
]
}
}
storage/backupextensiontest/entry/src/main/resources/base/element/string.json
0 → 100644
浏览文件 @
51b71758
{
"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"
:
"ActsBackupExtensionTest"
},
{
"name"
:
"form_description"
,
"value"
:
"backup"
},
{
"name"
:
"serviceability_description"
,
"value"
:
"backup"
},
{
"name"
:
"description_application"
,
"value"
:
"backup test"
},
{
"name"
:
"app_name"
,
"value"
:
"ActsBackupExtensionTest"
},
{
"name"
:
"ServiceExtAbility"
,
"value"
:
"service ext ability"
}
]
}
storage/backupextensiontest/entry/src/main/resources/base/media/icon.png
0 → 100644
浏览文件 @
51b71758
6.6 KB
storage/backupextensiontest/entry/src/main/resources/base/profile/backup_config.json
0 → 100644
浏览文件 @
51b71758
{
"allowToBackupRestore"
:
true
,
"includes"
:
[
"data/storage/el2/"
],
"excludes"
:
[
"/data/storage/el2/base/files/users/*/hidden.json"
]
}
storage/backupextensiontest/entry/src/main/resources/base/profile/main_pages.json
0 → 100644
浏览文件 @
51b71758
{
"src"
:
[
"MainAbility/pages/index/index"
]
}
\ No newline at end of file
storage/backupextensiontest/signature/openharmony_sx.p7b
0 → 100644
浏览文件 @
51b71758
文件已添加
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录