提交 52ecd7a1 编写于 作者: J jiyong_sd

Adapt to the new framework

Signed-off-by: Njiyong_sd <jiyong@huawei.com>
Change-Id: Ib02c3d98f3fc0ae61be350de2c85596e98027168
上级 1c57e4cb
......@@ -9,12 +9,12 @@
# 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.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAmsDataUriUtilsTest") {
hap_profile = "./entry/src/main/config.json"
hap_profile = "./src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
......@@ -23,9 +23,11 @@ ohos_js_hap_suite("ActsAmsDataUriUtilsTest") {
hap_name = "ActsAmsDataUriUtilsTest"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./entry/src/main/js/default"
js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./entry/src/main/js/resources" ]
hap_profile = "./entry/src/main/config.json"
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "180000",
"package": "com.amsst.amsdatauriutils",
"shell-timeout": "600000"
},
"kits": [
{
"test-file-name": [
"ActsAmsDataUriUtilsTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "180000",
"shell-timeout": "180000",
"bundle-name": "com.amsst.amsdatauriutils",
"package-name": "com.amsst.amsdatauriutils"
},
"kits": [
{
"test-file-name": [
"ActsAmsDataUriUtilsTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "com.amsst.amsdatauriutils",
"vendor": "amsst",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.amsst.amsdatauriutils",
"name": ".MyApplication",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "com.amsst.amsdatauriutils.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard",
"visible": true
}
],
"reqPermissions": [
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name":"ohos.permission.REMOVE_CACHE_FILES",
"reason":"need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name":"ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
/*
* 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 file from '@system.file'
import {Core, ExpectExtend, ReportExtend} from 'deccjsunit/index'
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('====onShow finish====<')
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
id: 'extend'
})
const reportExtend = new ReportExtend(file)
core.addService('expect', expectExtend)
core.addService('report', reportExtend)
core.init()
const configService = core.getDefaultService('config')
configService.setConfig(this)
require('../../../test/List.test')
core.execute()
},
onReady() {
},
}
\ No newline at end of file
{
"app": {
"bundleName": "com.amsst.amsdatauriutils",
"vendor": "amsst",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.amsst.amsdatauriutils",
"name": ".entry",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"reqPermissions": [
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason": "need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name": "ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason": "need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name": "ohos.permission.REMOVE_CACHE_FILES",
"reason": "need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name": "ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason": "need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
},
"mainAbility": ".MainAbility",
"srcPath": ""
}
}
\ No newline at end of file
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
.titleST {
font-size: 32px;
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
.titleST {
font-size: 32px;
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
<text class="titleST">
STDataUriUtils
</text>
</div>
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
<text class="titleST">
STDataUriUtils
</text>
</div>
/*
* 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 file from '@system.file'
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('====onShow finish====<')
},
onReady() {
},
}
\ No newline at end of file
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('TestApplication onCreate')
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
})
}
};
/*
* 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 dataUriUtils from '@ohos.ability.dataUriUtils'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
describe('ActsDataUriUtilsTest', function () {
/*
* @tc.number: ACTS_getId_0100
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0100', 0, function (done) {
console.log('dataUriUtils getId start1');
var result = dataUriUtils.getId("com.ix.dataUriUtils/1221");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(1221);
console.log('dataUriUtils getId_test start1 successful');
done();
})
/*
* @tc.number: ACTS_getId_0200
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0200', 0, function (done) {
console.log('dataUriUtils getId start2 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils1221");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-1);
console.log('dataUriUtils getId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0300
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0300', 0, function (done) {
console.log('dataUriUtils getId start3 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils/11234567890");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(11234567890);
console.log('dataUriUtils getId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0400
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0400', 0, function (done) {
console.log('dataUriUtils getId start4 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-1);
console.log('dataUriUtils getId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0500
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0500', 0, function (done) {
console.log('dataUriUtils getId start5 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils/-777");
console.log('dataUriUtils getId URI : ' + result);//-777
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-777);
console.log('dataUriUtils getId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0100
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0100',0, function (done) {
console.log('dataUriUtils attachId start1 ');
var idint = 1122;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/1122");
console.log('dataUriUtils attachId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0200
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0200',0, function (done) {
console.log('dataUriUtils attachId start2 ');
var idint = 0;
var result = dataUriUtils.attachId("com.ix.dataUriUtils/777",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/777/0");
console.log('dataUriUtils attachId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0300
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0300',0, function (done) {
console.log('dataUriUtils attachId start3 ');
var idint = 456789;
var result = dataUriUtils.attachId("com.ix.dataUriUtils/123",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/123/456789");
console.log('dataUriUtils attachId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0400
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0400',0, function (done) {
console.log('dataUriUtils attachId start4 ');
var idint = 123456789011;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/123456789011");
console.log('dataUriUtils attachId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0500
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0500',0, function (done) {
console.log('dataUriUtils attachId start5 ');
var idint = -1;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/-1");
console.log('dataUriUtils attachId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0100
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0100',0, function (done) {
console.log('dataUriUtils deleteId start1 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0200
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0200',0, function (done) {
console.log('dataUriUtils deleteId start2 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/1122");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0300
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0300',0, function (done) {
console.log('dataUriUtils deleteId start3 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils1122");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils1122");
console.log('dataUriUtils deleteId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0400
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0400',0, function (done) {
console.log('dataUriUtils deleteId start4 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/-1");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0500
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0500',0, function (done) {
console.log('dataUriUtils deleteId start5 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/1122/2211");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/1122");
console.log('dataUriUtils deleteId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0100
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0100',0, function (done) {
console.log('dataUriUtils updateId start1 ');
var idint = 1122;
var result = dataUriUtils.updateId("com.ix.dataUriUtils",idint);
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils updateId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0200
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0200',0, function (done) {
console.log('dataUriUtils updateId start2 ');
var idint = 1122;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/");
console.log('dataUriUtils updateId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0300
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0300',0, function (done) {
console.log('dataUriUtils updateId start3 ');
var idint = 3344;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/-1",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/3344");
console.log('dataUriUtils updateId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0400
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0400',0, function (done) {
console.log('dataUriUtils updateId start4 ');
var idint = 5566;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/123456789011",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/5566");
console.log('dataUriUtils updateId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0500
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0500',0, function (done) {
console.log('dataUriUtils updateId start5 ');
var idint = 0;
expect(typeof(idint)).assertEqual("number");
console.log('dataUriUtils updateId start666 ');
var result = dataUriUtils.updateId("com.ix.dataUriUtils/1122",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/0");
done();
})
})
/*
* 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 dataUriUtils from '@ohos.ability.dataUriUtils'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
export default function ActsDataUriUtilsTest() {
describe('ActsDataUriUtilsTest', function () {
/*
* @tc.number: ACTS_getId_0100
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0100', 0, function (done) {
console.log('dataUriUtils getId start1');
var result = dataUriUtils.getId("com.ix.dataUriUtils/1221");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(1221);
console.log('dataUriUtils getId_test start1 successful');
done();
})
/*
* @tc.number: ACTS_getId_0200
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0200', 0, function (done) {
console.log('dataUriUtils getId start2 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils1221");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-1);
console.log('dataUriUtils getId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0300
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0300', 0, function (done) {
console.log('dataUriUtils getId start3 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils/11234567890");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(11234567890);
console.log('dataUriUtils getId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0400
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0400', 0, function (done) {
console.log('dataUriUtils getId start4 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils");
console.log('dataUriUtils getId URI : ' + result);
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-1);
console.log('dataUriUtils getId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_getId_0500
* @tc.name: getId : Obtains the ID attached to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_getId_0500', 0, function (done) {
console.log('dataUriUtils getId start5 ');
var result = dataUriUtils.getId("com.ix.dataUriUtils/-777");
console.log('dataUriUtils getId URI : ' + result);//-777
expect(typeof(result)).assertEqual("number");
expect(result).assertEqual(-777);
console.log('dataUriUtils getId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0100
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0100',0, function (done) {
console.log('dataUriUtils attachId start1 ');
var idint = 1122;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/1122");
console.log('dataUriUtils attachId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0200
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0200',0, function (done) {
console.log('dataUriUtils attachId start2 ');
var idint = 0;
var result = dataUriUtils.attachId("com.ix.dataUriUtils/777",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/777/0");
console.log('dataUriUtils attachId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0300
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0300',0, function (done) {
console.log('dataUriUtils attachId start3 ');
var idint = 456789;
var result = dataUriUtils.attachId("com.ix.dataUriUtils/123",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/123/456789");
console.log('dataUriUtils attachId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0400
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0400',0, function (done) {
console.log('dataUriUtils attachId start4 ');
var idint = 123456789011;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/123456789011");
console.log('dataUriUtils attachId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_attachId_0500
* @tc.name: Attaches the given ID to the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_attachId_0500',0, function (done) {
console.log('dataUriUtils attachId start5 ');
var idint = -1;
var result = dataUriUtils.attachId("com.ix.dataUriUtils",idint);
console.log('dataUriUtils attachId URI :' + result)
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/-1");
console.log('dataUriUtils attachId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0100
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0100',0, function (done) {
console.log('dataUriUtils deleteId start1 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0200
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0200',0, function (done) {
console.log('dataUriUtils deleteId start2 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/1122");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0300
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0300',0, function (done) {
console.log('dataUriUtils deleteId start3 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils1122");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils1122");
console.log('dataUriUtils deleteId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0400
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0400',0, function (done) {
console.log('dataUriUtils deleteId start4 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/-1");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils deleteId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_deleteId_0500
* @tc.name: Deletes the ID from the end of the path component of the given URI.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_deleteId_0500',0, function (done) {
console.log('dataUriUtils deleteId start5 ');
var result = dataUriUtils.deleteId("com.ix.dataUriUtils/1122/2211");
console.log('dataUriUtils deleteId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/1122");
console.log('dataUriUtils deleteId_test start5 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0100
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0100',0, function (done) {
console.log('dataUriUtils updateId start1 ');
var idint = 1122;
var result = dataUriUtils.updateId("com.ix.dataUriUtils",idint);
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils");
console.log('dataUriUtils updateId_test start1 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0200
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0200',0, function (done) {
console.log('dataUriUtils updateId start2 ');
var idint = 1122;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/");
console.log('dataUriUtils updateId_test start2 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0300
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0300',0, function (done) {
console.log('dataUriUtils updateId start3 ');
var idint = 3344;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/-1",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/3344");
console.log('dataUriUtils updateId_test start3 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0400
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0400',0, function (done) {
console.log('dataUriUtils updateId start4 ');
var idint = 5566;
var result = dataUriUtils.updateId("com.ix.dataUriUtils/123456789011",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/5566");
console.log('dataUriUtils updateId_test start4 successful ');
done();
})
/*
* @tc.number: ACTS_updateId_0500
* @tc.name: Updates the ID in the specified dataUri.
* @tc.desc: Check the return value of the interface
*/
it('ACTS_updateId_0500',0, function (done) {
console.log('dataUriUtils updateId start5 ');
var idint = 0;
expect(typeof(idint)).assertEqual("number");
console.log('dataUriUtils updateId start666 ');
var result = dataUriUtils.updateId("com.ix.dataUriUtils/1122",idint)
console.log('updateId updateId URI : ' + result);
expect(typeof(result)).assertEqual("string");
expect(result).assertEqual("com.ix.dataUriUtils/0");
done();
})
})
}
/*
* 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.
*/
require('./DataUriUtilsJsSt.test.js')
\ No newline at end of file
/*
* 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 ActsDataUriUtilsTest from './DataUriUtilsJsSt.test.js'
export default function testsuite() {
ActsDataUriUtilsTest()
}
{
"string": [
{
"name": "app_name",
"value": "DataUriUtils"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
{
"string": [
{
"name": "app_name",
"value": "DataUriUtils"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
......@@ -9,7 +9,7 @@
# 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.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
......
# 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("ActsContextTest") {
hap_profile = "./entry/src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsContextTest"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./entry/src/main/js/default"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./entry/src/main/js/resources" ]
hap_profile = "./entry/src/main/config.json"
}
# 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("ActsContextTest") {
hap_profile = "./src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsContextTest"
}
ohos_js_assets("hjs_demo_js_assets") {
js2abc=true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "500000",
"package": "com.example.actscontext",
"shell-timeout": "600000"
},
"kits": [
{
"test-file-name": [
"DefPermission.hap",
"ActsContextTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "500000",
"shell-timeout": "500000",
"bundle-name": "com.example.actscontext",
"package-name": "com.example.actscontext"
},
"kits": [
{
"test-file-name": [
"DefPermission.hap",
"ActsContextTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "com.example.actscontext",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.actscontext",
"name": ".MyApplication",
"deviceType": [
"phone"
],
"reqPermissions": [
{
"name": "com.example.permission",
"reason": "$string:permreason_example",
"usedScene": {
"ability": [
"com.example.Ability",
"com.example.AbilityBackground"
],
"when": "always"
}
},
{
"name": "com.example.permission.user",
"reason": "$string:permreason_example",
"usedScene": {
"ability": [
"com.example.Ability",
"com.example.AbilityBackground"
],
"when": "always"
}
},
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name":"ohos.permission.REMOVE_CACHE_FILES",
"reason":"need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name":"ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"visible": true,
"name": "com.example.actscontext.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
\ No newline at end of file
{
"app": {
"bundleName": "com.example.actscontext",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.actscontext",
"name": ".entry",
"deviceType": [
"phone"
],
"reqPermissions": [
{
"name": "com.example.permission",
"reason": "$string:permreason_example",
"usedScene": {
"ability": [
"com.example.Ability",
"com.example.AbilityBackground"
],
"when": "always"
}
},
{
"name": "com.example.permission.user",
"reason": "$string:permreason_example",
"usedScene": {
"ability": [
"com.example.Ability",
"com.example.AbilityBackground"
],
"when": "always"
}
},
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason": "need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name": "ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason": "need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name": "ohos.permission.REMOVE_CACHE_FILES",
"reason": "need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name": "ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason": "need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
},
"mainAbility": ".MainAbility",
"srcPath": ""
}
}
\ No newline at end of file
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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 {Core, ExpectExtend} from 'deccjsunit/index'
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
id: 'extend'
})
core.addService('expect', expectExtend)
core.init()
const configService = core.getDefaultService('config')
configService.setConfig(this)
require('../../../test/List.test')
core.execute()
},
onReady() {
console.info('onReady');
},
}
/*
* 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.
*/
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
},
onReady() {
console.info('onReady');
},
}
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('TestApplication onCreate')
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
})
}
};
/*
* 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 featureAbility from '@ohos.ability.featureAbility'
import bundle from '@ohos.bundle'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
describe('ActsContextTest', function () {
// @tc.number: ACTS_GetBundleName_0100
// @tc.name: getBundleName : Query return value type
// @tc.desc: The class of the test return value is made Promise
it('ACTS_GetBundleName_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var result = await context.getBundleName();
expect(typeof(context)).assertEqual("object");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0200
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the bundlename of the hap package(by promise)
it('ACTS_GetBundleName_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var result = await context.getBundleName();
expect(result).assertEqual('com.example.actscontext');
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0300
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the value of return is void (by callback)
it('ACTS_GetBundleName_0300', 0, async function (done) {
var ret = false
var context = featureAbility.getContext();
var info = context.getBundleName(
(err, data) => {
expect(err.code).assertEqual(0);
expect(data).assertEqual('com.example.actscontext');
ret = true
done();
})
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0400
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the bundlename of the hap package(by callback)
it('ACTS_GetBundleName_0400', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var info = context.getBundleName(
(err, data) => {
expect(data).assertEqual('com.example.actscontext');
ret = true
done();
}
);
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0500
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Wrong parameters are provided, and the test return type is void (by callback)
it('ACTS_GetBundleName_0500', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var info = context.getBundleName("error_param",
(err, data) => {
expect(data).assertEqual('com.example.actscontext');
}
);
expect(info).assertEqual(null);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0100
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by callback)
it('ACTS_VerifyPermission_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
context.verifyPermission("ohos.permission.INSTALL_BUNDLE",options,
(err, data) => {
console.info("ACTS_VerifyPermission_0100 in verifyPermission")
expect(data).assertEqual(0);
ret = true
done();
});
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0200
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission("ohos.permission.INSTALL_BUNDLE",options );
expect(promise).assertEqual(0);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0300
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0300', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var result = context.verifyPermission("com.example.permission.NOT",options,
(err, data) => {
expect(data).assertEqual(-1);
ret = true
done();
});
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0400
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0400', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission("ohos.permission.CAMERA.NOT",options );
expect(promise).assertEqual(-1);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0500
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0500', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission(2000,options );
expect(promise).assertEqual(null);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_RequestPermissionForUser_0100
// @tc.name: requestPermissionsFromUser : Requests certain permissions from the system.
// permission: The list of permissions to be requested.
// @tc.desc: Requests certain permissions from the system.
// process is the current process. (by callback)
it('ACTS_RequestPermissionForUser_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
console.log("ACTS_RequestPermissionForUser_0100 ----------1");
context.requestPermissionsFromUser([], 1,
(err, data)=>{
console.log("====>ACTS_RequestPermissionForUser_0100 data====>" + JSON.stringify(data));
console.log("====>ACTS_RequestPermissionForUser_0100 err====>" + JSON.stringify(err.code));
expect(err.code).assertEqual(-104)
});
console.log("ACTS_RequestPermissionForUser_0100 ----------2");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_RequestPermissionForUser_0200
// @tc.name: requestPermissionsFromUser : Requests certain permissions from the system.
// permission: The list of permissions to be requested.
// @tc.desc: Requests certain permissions from the system.
// process is the current process. (by promise)
it('ACTS_RequestPermissionForUser_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
console.log("ACTS_RequestPermissionForUser_0200 ----------1");
context.requestPermissionsFromUser([], 1).then((data) => {
console.log("====>ACTS_RequestPermissionForUser_0200 data====>" + JSON.stringify(data));
}).catch((err) => {
console.log("====>ACTS_RequestPermissionForUser_0200 err====>" + JSON.stringify(err.code));
expect(err.code).assertEqual(-104)
})
console.log("ACTS_RequestPermissionForUser_0200 ----------2");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
/*
* @tc.number: ACTS_GetDisplayOrientation_0100
* @tc.name: context.getDisplayOrientation : Get an ability display orientation.
* @tc.desc: Check the return display orientation of the interface (by AsyncCallback)
*/
it('ACTS_GetDisplayOrientation_0100', 0, async function (done) {
console.log('ACTS_GetDisplayOrientation_0100====<begin');
try {
context.getDisplayOrientation((err,data)=>{
console.log('getDisplayOrientation call back');
done();
});
done();
} catch (err) {
console.log('ACTS_GetDisplayOrientation_0100====<end err=' + err)
done();
}
console.log('ACTS_GetDisplayOrientation_0100====<end');
})
/*
* @tc.number: ACTS_GetDisplayOrientation_0200
* @tc.name: context.getDisplayOrientation : Get an ability display orientation.
* @tc.desc: Check the return display orientation of the interface
*/
it('ACTS_GetDisplayOrientation_0200', 0, async function (done) {
console.log('ACTS_GetDisplayOrientation_0200====<begin');
try {
var displayOrientation = context.getDisplayOrientation();
done();
} catch (err) {
console.log('ACTS_GetDisplayOrientation_0200====<end err=' + err)
done();
}
console.log('ACTS_GetDisplayOrientation_0200====<end');
})
/*
* @tc.number: ACTS_SetDisplayOrientation_0100
* @tc.name: context.setDisplayOrientation : Set an ability display orientation.
* @tc.desc: Check the return display orientation of the interface (by AsyncCallback)
*/
it('ACTS_SetDisplayOrientation_0100', 0, async function (done) {
console.log('ACTS_SetDisplayOrientation_0100====<begin');
try {
context.setDisplayOrientation(true, (err,data)=>{
console.log('SetDisplayOrientation call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetDisplayOrientation_0100====<end err=' + err)
done();
}
console.log('ACTS_SetDisplayOrientation_0100====<end');
})
/*
* @tc.number: ACTS_SetDisplayOrientation_0200
* @tc.name: context.setDisplayOrientation : Set an ability display orientation.
* @tc.desc: Check the return display orientation of the interface
*/
it('ACTS_SetDisplayOrientation_0200', 0, async function (done) {
console.log('ACTS_SetDisplayOrientation_0200====<begin');
try {
context.setDisplayOrientation(true);
done();
} catch (err) {
console.log('ACTS_SetDisplayOrientation_0200====<end err=' + err)
done();
}
console.log('ACTS_SetDisplayOrientation_0200====<end');
})
/*
* @tc.number: ACTS_SetShowOnLockScreen_0100
* @tc.name: context.setShowOnLockScreen : Set an ability show on lock screen.
* @tc.desc: Check the return show on lock screen status of the interface (by AsyncCallback)
*/
it('ACTS_SetShowOnLockScreen_0100', 0, async function (done) {
console.log('ACTS_SetShowOnLockScreen_0100====<begin');
try {
context.setShowOnLockScreen(true, (err,data)=>{
console.log('SetShowOnLockScreen call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetShowOnLockScreen_0100====<end err=' + err)
done();
}
console.log('ACTS_SetShowOnLockScreen_0100====<end');
})
/*
* @tc.number: ACTS_SetShowOnLockScreen_0200
* @tc.name: context.setShowOnLockScreen : Set an ability show on lock screen.
* @tc.desc: Check the return show on lock screen status of the interface
*/
it('ACTS_SetShowOnLockScreen_0200', 0, async function (done) {
console.log('ACTS_SetShowOnLockScreen_0200====<begin');
try {
context.setShowOnLockScreen(true);
done();
} catch (err) {
console.log('ACTS_SetShowOnLockScreen_0200====<end err=' + err)
done();
}
console.log('ACTS_SetShowOnLockScreen_0200====<end');
})
/*
* @tc.number: ACTS_SetWakeUpScreen_0100
* @tc.name: context.setWakeUpScreen : Set an ability wake up screen.
* @tc.desc: Check the return wake up screen status of the interface (by AsyncCallback)
*/
it('ACTS_SetWakeUpScreen_0100', 0, async function (done) {
console.log('ACTS_SetWakeUpScreen_0100====<begin');
try {
context.setWakeUpScreen(true, (err,data)=>{
console.log('setWakeUpScreen call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetWakeUpScreen_0100====<end err=' + err)
done();
}
console.log('ACTS_SetWakeUpScreen_0100====<end');
})
/*
* @tc.number: ACTS_SetWakeUpScreen_0200
* @tc.name: context.setWakeUpScreen : Set an ability wake up screen.
* @tc.desc: Check the return wake up screen status of the interface
*/
it('ACTS_SetWakeUpScreen_0200', 0, async function (done) {
console.log('ACTS_SetWakeUpScreen_0200====<begin');
try {
context.setWakeUpScreen(true);
done();
} catch (err) {
console.log('ACTS_SetWakeUpScreen_0200====<end err=' + err)
done();
}
console.log('ACTS_SetWakeUpScreen_0200====<end');
})
})
/*
* 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 featureAbility from '@ohos.ability.featureAbility'
import bundle from '@ohos.bundle'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
export default function ActsContextTest() {
describe('ActsContextTest', function () {
// @tc.number: ACTS_GetBundleName_0100
// @tc.name: getBundleName : Query return value type
// @tc.desc: The class of the test return value is made Promise
it('ACTS_GetBundleName_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var result = await context.getBundleName();
expect(typeof(context)).assertEqual("object");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0200
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the bundlename of the hap package(by promise)
it('ACTS_GetBundleName_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var result = await context.getBundleName();
expect(result).assertEqual('com.example.actscontext');
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0300
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the value of return is void (by callback)
it('ACTS_GetBundleName_0300', 0, async function (done) {
var ret = false
var context = featureAbility.getContext();
var info = context.getBundleName(
(err, data) => {
expect(err.code).assertEqual(0);
expect(data).assertEqual('com.example.actscontext');
ret = true
done();
})
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0400
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Get the bundlename of the hap package(by callback)
it('ACTS_GetBundleName_0400', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var info = context.getBundleName(
(err, data) => {
expect(data).assertEqual('com.example.actscontext');
ret = true
done();
}
);
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_GetBundleName_0500
// @tc.name: getBundleName : Get the bundlename of the hap package
// @tc.desc: Wrong parameters are provided, and the test return type is void (by callback)
it('ACTS_GetBundleName_0500', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var info = context.getBundleName("error_param",
(err, data) => {
expect(data).assertEqual('com.example.actscontext');
}
);
expect(info).assertEqual(null);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0100
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by callback)
it('ACTS_VerifyPermission_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
context.verifyPermission("ohos.permission.INSTALL_BUNDLE",options,
(err, data) => {
console.info("ACTS_VerifyPermission_0100 in verifyPermission")
expect(data).assertEqual(0);
ret = true
done();
});
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0200
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission("ohos.permission.INSTALL_BUNDLE",options );
expect(promise).assertEqual(0);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0300
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0300', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var result = context.verifyPermission("com.example.permission.NOT",options,
(err, data) => {
expect(data).assertEqual(-1);
ret = true
done();
});
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0400
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0400', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission("ohos.permission.CAMERA.NOT",options );
expect(promise).assertEqual(-1);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_VerifyPermission_0500
// @tc.name: verifySelfPermission : Query whether the application of the specified PID and
// UID has been granted a certain permission
// @tc.desc: Query whether the application of the specified PID and UID has been granted
// a certain permission (by Promise)
it('ACTS_VerifyPermission_0500', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
var datainfo = await bundle.getBundleInfo('com.example.actscontext',1);
var options = {
pid :0,
uid :datainfo.uid
}
var promise = await context.verifyPermission(2000,options );
expect(promise).assertEqual(null);
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_RequestPermissionForUser_0100
// @tc.name: requestPermissionsFromUser : Requests certain permissions from the system.
// permission: The list of permissions to be requested.
// @tc.desc: Requests certain permissions from the system.
// process is the current process. (by callback)
it('ACTS_RequestPermissionForUser_0100', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
console.log("ACTS_RequestPermissionForUser_0100 ----------1");
context.requestPermissionsFromUser([], 1,
(err, data)=>{
console.log("====>ACTS_RequestPermissionForUser_0100 data====>" + JSON.stringify(data));
console.log("====>ACTS_RequestPermissionForUser_0100 err====>" + JSON.stringify(err.code));
expect(err.code).assertEqual(-104)
});
console.log("ACTS_RequestPermissionForUser_0100 ----------2");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
// @tc.number: ACTS_RequestPermissionForUser_0200
// @tc.name: requestPermissionsFromUser : Requests certain permissions from the system.
// permission: The list of permissions to be requested.
// @tc.desc: Requests certain permissions from the system.
// process is the current process. (by promise)
it('ACTS_RequestPermissionForUser_0200', 0, async function (done) {
var ret = false
var context = await featureAbility.getContext();
console.log("ACTS_RequestPermissionForUser_0200 ----------1");
context.requestPermissionsFromUser([], 1).then((data) => {
console.log("====>ACTS_RequestPermissionForUser_0200 data====>" + JSON.stringify(data));
}).catch((err) => {
console.log("====>ACTS_RequestPermissionForUser_0200 err====>" + JSON.stringify(err.code));
expect(err.code).assertEqual(-104)
})
console.log("ACTS_RequestPermissionForUser_0200 ----------2");
ret = true
done();
setTimeout(function(){
expect(ret).assertEqual(true)
},1000)
})
/*
* @tc.number: ACTS_GetDisplayOrientation_0100
* @tc.name: context.getDisplayOrientation : Get an ability display orientation.
* @tc.desc: Check the return display orientation of the interface (by AsyncCallback)
*/
it('ACTS_GetDisplayOrientation_0100', 0, async function (done) {
console.log('ACTS_GetDisplayOrientation_0100====<begin');
try {
context.getDisplayOrientation((err,data)=>{
console.log('getDisplayOrientation call back');
done();
});
done();
} catch (err) {
console.log('ACTS_GetDisplayOrientation_0100====<end err=' + err)
done();
}
console.log('ACTS_GetDisplayOrientation_0100====<end');
})
/*
* @tc.number: ACTS_GetDisplayOrientation_0200
* @tc.name: context.getDisplayOrientation : Get an ability display orientation.
* @tc.desc: Check the return display orientation of the interface
*/
it('ACTS_GetDisplayOrientation_0200', 0, async function (done) {
console.log('ACTS_GetDisplayOrientation_0200====<begin');
try {
var displayOrientation = context.getDisplayOrientation();
done();
} catch (err) {
console.log('ACTS_GetDisplayOrientation_0200====<end err=' + err)
done();
}
console.log('ACTS_GetDisplayOrientation_0200====<end');
})
/*
* @tc.number: ACTS_SetDisplayOrientation_0100
* @tc.name: context.setDisplayOrientation : Set an ability display orientation.
* @tc.desc: Check the return display orientation of the interface (by AsyncCallback)
*/
it('ACTS_SetDisplayOrientation_0100', 0, async function (done) {
console.log('ACTS_SetDisplayOrientation_0100====<begin');
try {
context.setDisplayOrientation(true, (err,data)=>{
console.log('SetDisplayOrientation call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetDisplayOrientation_0100====<end err=' + err)
done();
}
console.log('ACTS_SetDisplayOrientation_0100====<end');
})
/*
* @tc.number: ACTS_SetDisplayOrientation_0200
* @tc.name: context.setDisplayOrientation : Set an ability display orientation.
* @tc.desc: Check the return display orientation of the interface
*/
it('ACTS_SetDisplayOrientation_0200', 0, async function (done) {
console.log('ACTS_SetDisplayOrientation_0200====<begin');
try {
context.setDisplayOrientation(true);
done();
} catch (err) {
console.log('ACTS_SetDisplayOrientation_0200====<end err=' + err)
done();
}
console.log('ACTS_SetDisplayOrientation_0200====<end');
})
/*
* @tc.number: ACTS_SetShowOnLockScreen_0100
* @tc.name: context.setShowOnLockScreen : Set an ability show on lock screen.
* @tc.desc: Check the return show on lock screen status of the interface (by AsyncCallback)
*/
it('ACTS_SetShowOnLockScreen_0100', 0, async function (done) {
console.log('ACTS_SetShowOnLockScreen_0100====<begin');
try {
context.setShowOnLockScreen(true, (err,data)=>{
console.log('SetShowOnLockScreen call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetShowOnLockScreen_0100====<end err=' + err)
done();
}
console.log('ACTS_SetShowOnLockScreen_0100====<end');
})
/*
* @tc.number: ACTS_SetShowOnLockScreen_0200
* @tc.name: context.setShowOnLockScreen : Set an ability show on lock screen.
* @tc.desc: Check the return show on lock screen status of the interface
*/
it('ACTS_SetShowOnLockScreen_0200', 0, async function (done) {
console.log('ACTS_SetShowOnLockScreen_0200====<begin');
try {
context.setShowOnLockScreen(true);
done();
} catch (err) {
console.log('ACTS_SetShowOnLockScreen_0200====<end err=' + err)
done();
}
console.log('ACTS_SetShowOnLockScreen_0200====<end');
})
/*
* @tc.number: ACTS_SetWakeUpScreen_0100
* @tc.name: context.setWakeUpScreen : Set an ability wake up screen.
* @tc.desc: Check the return wake up screen status of the interface (by AsyncCallback)
*/
it('ACTS_SetWakeUpScreen_0100', 0, async function (done) {
console.log('ACTS_SetWakeUpScreen_0100====<begin');
try {
context.setWakeUpScreen(true, (err,data)=>{
console.log('setWakeUpScreen call back');
done();
});
done();
} catch (err) {
console.log('ACTS_SetWakeUpScreen_0100====<end err=' + err)
done();
}
console.log('ACTS_SetWakeUpScreen_0100====<end');
})
/*
* @tc.number: ACTS_SetWakeUpScreen_0200
* @tc.name: context.setWakeUpScreen : Set an ability wake up screen.
* @tc.desc: Check the return wake up screen status of the interface
*/
it('ACTS_SetWakeUpScreen_0200', 0, async function (done) {
console.log('ACTS_SetWakeUpScreen_0200====<begin');
try {
context.setWakeUpScreen(true);
done();
} catch (err) {
console.log('ACTS_SetWakeUpScreen_0200====<end err=' + err)
done();
}
console.log('ACTS_SetWakeUpScreen_0200====<end');
})
})
}
/*
* 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.
*/
require('./ContextJsunit.test.js')
/*
* 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 ActsContextTest from './ContextJsunit.test.js'
export default function testsuite() {
ActsContextTest()
}
{
"string": [
{
"name": "app_name",
"value": "MyApplication"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
},
{
"name": "permreason_example",
"value": "permreason example"
}
]
{
"string": [
{
"name": "app_name",
"value": "MyApplication"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
},
{
"name": "permreason_example",
"value": "permreason example"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
# 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_hap("DefPermission") {
hap_profile = "./src/main/config.json"
js_build_mode = "debug"
hap_name = "DefPermission"
subsystem_name = XTS_SUITENAME
final_hap_path =
"${SUITES_OUTPUT_ROOT}/${XTS_SUITENAME}/testcases/${hap_name}.hap"
testonly = true
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/js/resources" ]
hap_profile = "./src/main/config.json"
}
# 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_hap("DefPermission") {
hap_profile = "./src/main/config.json"
js_build_mode = "debug"
hap_name = "DefPermission"
subsystem_name = XTS_SUITENAME
final_hap_path =
"${SUITES_OUTPUT_ROOT}/${XTS_SUITENAME}/testcases/${hap_name}.hap"
testonly = true
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/js/resources" ]
hap_profile = "./src/main/config.json"
}
{
"app": {
"bundleName": "com.example.defpermission",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.defpermission",
"name": ".MyApplication",
"defPermissions": [
{
"name": "com.example.permission",
"grantMode": "system_grant",
"availableScope": []
},
{
"name": "com.example.permission.user",
"grantMode": "user_grant",
"availableScope": []
}
],
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "com.example.defpermission.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard"
}
],
"reqPermissions": [
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name":"ohos.permission.REMOVE_CACHE_FILES",
"reason":"need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name":"ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
{
"app": {
"bundleName": "com.example.defpermission",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.defpermission",
"name": ".MyApplication",
"defPermissions": [
{
"name": "com.example.permission",
"grantMode": "system_grant",
"availableScope": []
},
{
"name": "com.example.permission.user",
"grantMode": "user_grant",
"availableScope": []
}
],
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "com.example.defpermission.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard"
}
],
"reqPermissions": [
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name":"ohos.permission.REMOVE_CACHE_FILES",
"reason":"need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name":"ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
\ No newline at end of file
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
/*
* 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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.
*/
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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.
*/
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ''
},
onInit() {
this.title = this.$t('strings.world');
}
}
{
"string": [
{
"name": "app_name",
"value": "MyApplication"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
{
"string": [
{
"name": "app_name",
"value": "MyApplication"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册