提交 3d16dea6 编写于 作者: H huangdong57

SideBarContainer XTS测试

Signed-off-by: Nhuangdong57 <huangdong57@huawei-partners.com>
上级 da3b562c
# Copyright (c) 2023 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
group("componentCompletionTest") {
testonly = true
if (is_standard_system) {
deps = [ "ace_ets_component_sidebarcontainertest:ActsSidebarTypeTest" ]
}
}
{
"app": {
"bundleName": "com.example.sidebarcontainertest",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"keepAlive": true,
"singleUser": true,
"minAPIVersion": 10,
"targetAPIVersion": 10,
"car": {
"apiCompatibleVersion": 10,
"singleUser": 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.
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsSidebarTypeTest") {
hap_profile = "src/main/module.json"
js_build_mode = "debug"
deps = [
":ace_ets_component_sidebarcontainertest_js_assets",
":ace_ets_component_sidebarcontainertest_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsSidebarTypeTest"
part_name = "ace_engine"
subsystem_name = "arkui"
}
ohos_app_scope("ace_ets_component_sidebarcontainertest_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("ace_ets_component_sidebarcontainertest_js_assets") {
source_dir = "src/main/ets"
}
ohos_resources("ace_ets_component_sidebarcontainertest_resources") {
sources = [ "src/main/resources" ]
deps = [ ":ace_ets_component_sidebarcontainertest_profile" ]
hap_profile = "src/main/module.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "600000",
"bundle-name": "com.example.sidebarcontainertest",
"module-name": "phone",
"shell-timeout": "600000",
"testcase-timeout": 240000
},
"kits": [{
"test-file-name": [
"ActsSidebarTypeTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
},
{
"type": "ShellKit",
"run-command": [
"power-shell wakeup",
"power-shell setmode 602"
]
}
]
}
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import hilog from '@ohos.hilog';
import Ability from '@ohos.app.ability.UIAbility'
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import testsuite from '../test/List.test'
import Window from '@ohos.window'
export default class TestAbility extends Ability {
onCreate(want, launchParam) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onCreate');
hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? '');
hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:'+ JSON.stringify(launchParam) ?? '');
}
onDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onDestroy');
}
onWindowStageCreate(windowStage: Window.WindowStage) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageCreate');
windowStage.loadContent('TestAbility/pages/Index', (err, data) => {
if (err.code) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR);
hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
return;
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s',
JSON.stringify(data) ?? '');
});
}
onWindowStageDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageDestroy');
}
onForeground() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onForeground');
}
onBackground() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onBackground');
}
}
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import events_emitter from '@ohos.events.emitter';
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
import { Hypium } from '@ohos/hypium';
import hilog from '@ohos.hilog';
import testsuite from '../../test/List.test'
@Entry
@Component
struct Index {
@State strokeWidthStr: string = '10px'
@State dividerColorStr: string = '#000000'
@State startMarginStr: string = '5px'
@State endMarginStr: string = '5px'
@State nullFlag: boolean = false
@State dividerColor: Color = Color.Red
private stateChangCallBack = (eventData) => {
console.info("sideBar page state change called:" + JSON.stringify(eventData));
if (eventData != null) {
if (eventData.data.dividerColorStr != null) {
this.dividerColorStr = eventData.data.dividerColorStr;
}
if (eventData.data.strokeWidthStr != null) {
this.strokeWidthStr = eventData.data.strokeWidthStr;
}
if (eventData.data.startMarginStr != null) {
this.startMarginStr = eventData.data.startMarginStr;
}
if (eventData.data.endMarginStr != null) {
this.endMarginStr = eventData.data.endMarginStr;
}
if (eventData.data.nullFlag != null) {
this.nullFlag = eventData.data.nullFlag;
}
if (eventData.data.dividerColor != null) {
this.dividerColor = eventData.data.dividerColor;
}
}
}
aboutToAppear(){
var abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'start run testcase!!!');
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
}
normalIcon : Resource = $r("app.media.icon")
selectedIcon: Resource = $r("app.media.icon")
@State arr: number[] = [1, 2, 3]
@State current: number = 1
build() {
Column(){
SideBarContainer(SideBarContainerType.AUTO){
Column() {
ForEach(this.arr, (item, index) => {
Column({ space: 5 }) {
Image(this.current === item ? this.selectedIcon : this.normalIcon).width(64).height(64)
Text("Index0" + item)
.fontSize(25)
.fontColor(this.current === item ? '#0A59F7' : '#999')
.fontFamily('source-sans-pro,cursive,sans-serif')
}
.onClick(() => {
this.current = item
})
}, item => item)
}.width('100%')
.justifyContent(FlexAlign.SpaceEvenly)
.backgroundColor('#19000000')
Column() {
Text('SideBarContainer content 000000').fontSize(25)
Text('SideBarContainer content 0000000').fontSize(25)
}
.margin({ top: 50, left: 20, right: 30 })
}.key("ArkUX_SideBarContainer_1000")
.sideBarWidth(150)
.minContentWidth(300)
.minSideBarWidth(100)
.controlButton({
left: 16, top: 48, width: 32, height: 32,
icons: {shown: $r("app.media.icon"),
hidden: $r("app.media.icon"),
switching: $r("app.media.icon")}
})
.divider(this.nullFlag ? null : { strokeWidth: this.strokeWidthStr,
color: this.dividerColorStr,
startMargin: this.startMarginStr,
endMargin: this.endMarginStr
})
SideBarContainer(SideBarContainerType.AUTO){
Column() {
ForEach(this.arr, (item, index) => {
Column({ space: 5 }) {
Image(this.current === item ? this.selectedIcon : this.normalIcon).width(64).height(64)
Text("Index0" + item)
.fontSize(25)
.fontColor(this.current === item ? '#0A59F7' : '#999')
.fontFamily('source-sans-pro,cursive,sans-serif')
}
.onClick(() => {
this.current = item
})
}, item => item)
}.width('100%')
.justifyContent(FlexAlign.SpaceEvenly)
.backgroundColor('#19000000')
Column() {
Text('SideBarContainer content 111111').fontSize(25)
Text('SideBarContainer content 1111111').fontSize(25)
}
.margin({ top: 50, left: 20, right: 30 })
}.key("ArkUX_SideBarContainer_1100")
.sideBarWidth(150)
.minContentWidth(30000)
.minSideBarWidth(10000)
.controlButton({
left: 16, top: 48, width: 32, height: 32,
icons: {shown: $r("app.media.icon"),
hidden: $r("app.media.icon"),
switching: $r("app.media.icon")}
})
.divider({ strokeWidth: this.strokeWidthStr,
color: this.dividerColorStr,
startMargin: this.startMarginStr,
endMargin: this.endMarginStr
})
SideBarContainer(SideBarContainerType.Embed) {
Column() {
ForEach(this.arr, (item, index) => {
Column({ space: 5 }) {
Image(this.current === item ? this.selectedIcon : this.normalIcon).width(64).height(64)
Text("Index0" + item)
.fontSize(25)
.fontColor(this.current === item ? '#0A59F7' : '#999')
.fontFamily('source-sans-pro,cursive,sans-serif')
}
.onClick(() => {
this.current = item
})
}, item => item)
}.width('100%')
.justifyContent(FlexAlign.SpaceEvenly)
.backgroundColor('#19000000')
Column() {
Text('SideBarContainer content 222222').fontSize(25)
Text('SideBarContainer content 2222222').fontSize(25)
}
.margin({ top: 50, left: 20, right: 30 })
}.key("ArkUX_SideBarContainer_1200")
.sideBarWidth(150)
.minContentWidth(10)
.minSideBarWidth(10)
.controlButton({
left: 16, top: 48, width: 32, height: 32,
icons: {shown: $r("app.media.icon"),
hidden: $r("app.media.icon"),
switching: $r("app.media.icon")}
})
.divider({ strokeWidth: this.strokeWidthStr,
color: this.dividerColorStr,
startMargin: this.startMarginStr,
endMargin: this.endMarginStr
})
SideBarContainer(SideBarContainerType.Overlay){
Column() {
ForEach(this.arr, (item, index) => {
Column({ space: 5 }) {
Image(this.current === item ? this.selectedIcon : this.normalIcon).width(64).height(64)
Text("Index2" + item)
.fontSize(25)
.fontColor(this.current === item ? '#0A59F7' : '#999')
.fontFamily('source-sans-pro,cursive,sans-serif')
}
.onClick(() => {
this.current = item
})
}, item => item)
}.width('100%')
.justifyContent(FlexAlign.SpaceEvenly)
.backgroundColor('#19000000')
Column() {
Text('SideBarContainer content 333333').fontSize(25)
Text('SideBarContainer content 3333333').fontSize(25)
}
.margin({ top: 50, left: 20, right: 30 })
}.key("ArkUX_SideBarContainer_1300")
.sideBarWidth(150)
.minContentWidth(200)
.minSideBarWidth(400)
.controlButton({
left: 16, top: 48, width: 32, height: 32,
icons: {shown: $r("app.media.icon"),
hidden: $r("app.media.icon"),
switching: $r("app.media.icon")}
})
.divider({ strokeWidth: this.strokeWidthStr,
color: this.dividerColorStr,
startMargin: this.startMarginStr,
endMargin: this.endMarginStr
})
SideBarContainer(){
Column() {
ForEach(this.arr, (item, index) => {
Column({ space: 5 }) {
Image(this.current === item ? this.selectedIcon : this.normalIcon).width(64).height(64)
Text("Index0" + item)
.fontSize(25)
.fontColor(this.current === item ? '#0A59F7' : '#999')
.fontFamily('source-sans-pro,cursive,sans-serif')
}
.onClick(() => {
this.current = item
})
}, item => item)
}.width('100%')
.justifyContent(FlexAlign.SpaceEvenly)
.backgroundColor('#19000000')
Column() {
Text('SideBarContainer content 444444').fontSize(25)
Text('SideBarContainer content 4444444').fontSize(25)
}
.margin({ top: 50, left: 20, right: 30 })
}.key("ArkUX_SideBarContainer_1400")
.sideBarWidth(150)
.minContentWidth(null)
.minSideBarWidth(null)
.controlButton({
left: 16, top: 48, width: 32, height: 32,
icons: {shown: $r("app.media.icon"),
hidden: $r("app.media.icon"),
switching: $r("app.media.icon")}
})
}
}
}
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import hilog from '@ohos.hilog';
import TestRunner from '@ohos.application.testRunner'
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
var abilityDelegator = undefined
var abilityDelegatorArguments = undefined
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s it',
'-s level', '-s testType', '-s size', '-s timeout',
'-s dryRun'
]);
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams = `${targetParams} ${key} ${parameters[key]}`;
}
}
return targetParams.trim();
}
async function onAbilityCreateCallback() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'onAbilityCreateCallback');
}
async function addAbilityMonitorCallback(err): Promise<void> {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'addAbilityMonitorCallback : %{public}s', JSON.stringify(err) ?? '');
}
export default class OpenHarmonyTestRunner implements TestRunner {
constructor() {
}
onPrepare() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner OnPrepare ');
}
async onRun() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun run');
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments();
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
let testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility';
let lMonitor = {
abilityName: testAbilityName,
onAbilityCreate: onAbilityCreateCallback,
};
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback);
let cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName;
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters);
let debug = abilityDelegatorArguments.parameters['-D'];
if (debug == 'true') {
cmd += ' -D';
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'cmd : %{public}s', cmd);
abilityDelegator.executeShellCommand(cmd,
(err, d) => {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'executeShellCommand : err : %{public}s', JSON.stringify(err) ?? '');
hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.stdResult ?? '');
hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.exitCode ?? '');
});
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun end');
}
}
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import sidebarTypeTest from './sidebar_type.test';
export default function testsuite() {
sidebarTypeTest()
}
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@system.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "@ohos/hypium"
export default function sidebarTypeTest() {
describe('ActsSidebarTypeTest', function () {
// Defines a test suite. Two parameters are supported: test suite name and test suite function.
beforeAll(async function (done) {
console.info("flex beforeEach start");
let options = {
uri: 'testability/pages/Index',
}
try {
router.clear();
let pages = router.getState();
console.info("get Index state success " + JSON.stringify(pages));
if (!("Index" == pages.name)) {
console.info("get Index state success " + JSON.stringify(pages.name));
let result = await router.push(options);
console.info("push Index page success " + JSON.stringify(result));
}
} catch (err) {
console.error("push Index page error: " + err);
}
done()
// Presets an action, which is performed only once before all test cases of the test suite start.
// This API supports only one parameter: preset action function.
})
it('ArkUX_SideBarContainer_1000', 0, async function (done) {
console.info('ArkUX_SideBarContainer_1000 START');
setTimeout(()=>{
try{
let strJson = getInspectorByKey('ArkUX_SideBarContainer_1000');
console.info('ArkUX_SideBarContainer_1000 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("ArkUX_SideBarContainer_1000 obj is: " + JSON.stringify(obj));
let type = obj.$attrs.type
let minContentWidth = obj.$attrs.minContentWidth
let minSideBarWidth = obj.$attrs.minSideBarWidth
expect(type).assertEqual("SideBarContainerType.OVERLAY");
expect(minContentWidth).assertEqual("300.000000");
expect(minSideBarWidth).assertEqual("100.000000");
console.info('ArkUX_SideBarContainer_1000 END ');
} catch(err) {
expect().assertFail()
console.info('ArkUX_SideBarContainer_1000 ERR '+ JSON.stringify(err));
}
done();
},500)
});
it('ArkUX_SideBarContainer_1100', 0, async function (done) {
console.info('ArkUX_SideBarContainer_1100 START');
setTimeout(()=>{
try{
let strJson = getInspectorByKey('ArkUX_SideBarContainer_1100');
console.info('ArkUX_SideBarContainer_1100 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("ArkUX_SideBarContainer_1100 obj is: " + JSON.stringify(obj));
let type = obj.$attrs.type
let minContentWidth = obj.$attrs.minContentWidth
let minSideBarWidth = obj.$attrs.minSideBarWidth
expect(type).assertEqual("SideBarContainerType.OVERLAY");
expect(minContentWidth).assertEqual("30000.000000");
expect(minSideBarWidth).assertEqual("10000.000000");
console.info('ArkUX_SideBarContainer_1100 END ');
} catch(err) {
expect().assertFail()
console.info('ArkUX_SideBarContainer_1100 ERR '+ JSON.stringify(err));
}
done();
},500)
});
it('ArkUX_SideBarContainer_1200', 0, async function (done) {
console.info('ArkUX_SideBarContainer_1200 START');
setTimeout(()=>{
try{
let strJson = getInspectorByKey('ArkUX_SideBarContainer_1200');
console.info('ArkUX_SideBarContainer_1200 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("ArkUX_SideBarContainer_1200 obj is: " + JSON.stringify(obj));
let type = obj.$attrs.type
let minContentWidth = obj.$attrs.minContentWidth
let minSideBarWidth = obj.$attrs.minSideBarWidth
expect(type).assertEqual("SideBarContainerType.Embed");
expect(minContentWidth).assertEqual("10.000000");
expect(minSideBarWidth).assertEqual("10.000000");
console.info('ArkUX_SideBarContainer_1200 END ');
} catch(err) {
expect().assertFail()
console.info('ArkUX_SideBarContainer_1200 ERR '+ JSON.stringify(err));
}
done();
},500)
});
it('ArkUX_SideBarContainer_1300', 0, async function (done) {
console.info('ArkUX_SideBarContainer_1300 START');
setTimeout(()=>{
try{
let strJson = getInspectorByKey('ArkUX_SideBarContainer_1300');
console.info('ArkUX_SideBarContainer_1300 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("ArkUX_SideBarContainer_1300 obj is: " + JSON.stringify(obj));
let type = obj.$attrs.type
let minContentWidth = obj.$attrs.minContentWidth
let minSideBarWidth = obj.$attrs.minSideBarWidth
expect(type).assertEqual("SideBarContainerType.OVERLAY");
expect(minContentWidth).assertEqual("200.000000");
expect(minSideBarWidth).assertEqual("400.000000");
console.info('ArkUX_SideBarContainer_1300 END ');
} catch(err) {
expect().assertFail()
console.info('ArkUX_SideBarContainer_1300 ERR '+ JSON.stringify(err));
}
done();
},500)
});
it('ArkUX_SideBarContainer_1400', 0, async function (done) {
console.info('ArkUX_SideBarContainer_1400 START');
setTimeout(()=>{
try{
let strJson = getInspectorByKey('ArkUX_SideBarContainer_1400');
console.info('ArkUX_SideBarContainer_1400 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("ArkUX_SideBarContainer_1400 obj is: " + JSON.stringify(obj));
let type = obj.$attrs.type
let minContentWidth = obj.$attrs.minContentWidth
let minSideBarWidth = obj.$attrs.minSideBarWidth
expect(type).assertEqual("SideBarContainerType.Embed");
expect(minContentWidth).assertEqual("360.000000");
expect(minSideBarWidth).assertEqual("200.000000");
console.info('ArkUX_SideBarContainer_1400 END ');
} catch(err) {
expect().assertFail()
console.info('ArkUX_SideBarContainer_1400 ERR '+ JSON.stringify(err));
}
done();
},500)
});
})
}
\ No newline at end of file
{
"module": {
"name": "phone",
"type": "feature",
"description": "$string:module_test_desc",
"mainElement": "TestAbility",
"deviceTypes": [
"default",
"tablet"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:test_pages",
"metadata": [{
"name": "ArkTSPartialUpdate",
"value": "true"
}],
"abilities": [
{
"name": "TestAbility",
"srcEntrance": "./ets/TestAbility/TestAbility.ets",
"description": "$string:TestAbility_desc",
"icon": "$media:icon",
"label": "$string:TestAbility_label",
"visible": true,
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background",
"skills": [
{
"actions": [
"action.system.home"
],
"entities": [
"entity.system.home"
]
}
]
}
]
}
}
{
"color": [
{
"name": "start_window_background",
"value": "#FFFFFF"
},
{
"name": "Divider_color",
"value": "#000000"
},
{
"name": "textShadow_Color",
"value": "#FFFD0000"
}
]
}
\ No newline at end of file
{
"float": [
{
"name": "textShadowRadius",
"value": "5.0"
},
{
"name": "textShadowOffset",
"value": "5.0"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_test_desc",
"value": "test ability description"
},
{
"name": "TestAbility_desc",
"value": "the test ability"
},
{
"name": "TestAbility_label",
"value": "test label"
},
{
"name": "Divider_width",
"value": "10px"
},
{
"name": "Divider_startMargin",
"value": "5px"
},
{
"name": "Divider_endMargin",
"value": "5px"
},
{
"name": "textInput_Size_test",
"value": "4"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册