未验证 提交 62ba6274 编写于 作者: O openharmony_ci 提交者: Gitee

!9830 新增日历选择器组件xts代码

Merge pull request !9830 from sunjiakun/calendarpicker0822
......@@ -17,6 +17,7 @@ group("componentUxTest") {
deps = [
"ace_ets_component_badge:ActsAcebadgeTest",
"ace_ets_component_button:ActsAceButtonTest",
"ace_ets_component_calendarpicker:ActsAceCalendarPickerTest",
"ace_ets_component_checkbox:ActsAceCheckboxTest",
"ace_ets_component_clickeffect:ActsAceClickEffectTest",
"ace_ets_component_datapanel:ActsAceDatapanelTest",
......
{
"app": {
"bundleName": "com.example.acecalendarpickertest",
"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
{
"string":[
{
"name":"app_name",
"value":"MyApplication"
}
]
}
\ 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAceCalendarPickerTest") {
hap_profile = "src/main/module.json"
js_build_mode = "debug"
deps = [
":ace_ets_component_calendarpicker_js_assets",
":ace_ets_component_calendarpicker_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAceCalendarPickerTest"
part_name = "ace_engine"
subsystem_name = "arkui"
}
ohos_app_scope("ace_ets_component_calendarpicker_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("ace_ets_component_calendarpicker_js_assets") {
source_dir = "src/main/ets"
}
ohos_resources("ace_ets_component_calendarpicker_resources") {
sources = [ "src/main/resources" ]
deps = [ ":ace_ets_component_calendarpicker_profile" ]
hap_profile = "src/main/module.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "600000",
"bundle-name": "com.example.acecalendarpickertest",
"module-name": "phone",
"shell-timeout": "600000",
"testcase-timeout": 70000
},
"kits": [{
"test-file-name": [
"ActsAceCalendarPickerTest.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 CalendarPickerExample {
@State textStyle: PickerTextStyle = {color:Color.Black,font:{size:8,weight:FontWeight.Lighter}}
@State edgeAlign: CalendarAlign = CalendarAlign.END
@State TextStyleDefault: PickerTextStyle = {color:$r("sys.color.ohos_id_color_text_primary"),font:{size:$r("sys.float.ohos_id_text_size_body1"),weight:FontWeight.Lighter}}
private selectedDate: Date = new Date('2026-02-11')
private stateChangCallBack = (eventData) => {
console.info("select page state change called:" + JSON.stringify(eventData));
if (eventData != null) {
if (eventData.data.textStyle != null) {
this.textStyle = JSON.parse(eventData.data.textStyle);
}
if (eventData.data.edgeAlign != null) {
this.edgeAlign = eventData.data.edgeAlign;
console.info("eventData.data.edgeAlign:" + this.edgeAlign);
}
}
}
aboutToAppear(){
var stateChangeEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
events_emitter.on(stateChangeEvent, this.stateChangCallBack);
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)
}
build() {
Column() {
CalendarPicker({hintRadius:16,selected: this.selectedDate})
.textStyle(this.textStyle)
.edgeAlign(this.edgeAlign)
.onChange((value) => {
console.info("CalendarPicker onChange:" + JSON.stringify(value))
})
.key('CalendarPicker')
CalendarPicker({selected: this.selectedDate})
.textStyle(this.TextStyleDefault)
.onChange((value) => {
console.info("CalendarPicker onChange:" + JSON.stringify(value))
})
.key('CalendarPickerDefault')
CalendarPicker({hintRadius:10,selected: this.selectedDate})
.textStyle(this.textStyle)
.edgeAlign(CalendarAlign.START,{dx: 5,dy: 5})
.onChange((value) => {
console.info("CalendarPicker onChange:" + JSON.stringify(value))
})
.key('CalendarPicker1')
CalendarPicker({selected: this.selectedDate})
.textStyle(this.textStyle)
.edgeAlign(CalendarAlign.CENTER,{dx: -10,dy: 0})
.onChange((value) => {
console.info("CalendarPicker onChange:" + JSON.stringify(value))
})
.key('CalendarPicker2')
CalendarPicker({selected: this.selectedDate})
.textStyle(this.textStyle)
.edgeAlign(CalendarAlign.END,{dx: -20,dy: -10})
.onChange((value) => {
console.info("CalendarPicker onChange:" + JSON.stringify(value))
})
.key('CalendarPicker3')
}
}
}
\ 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: any) {
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()
var testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility'
let lMonitor = {
abilityName: testAbilityName,
onAbilityCreate: onAbilityCreateCallback,
};
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback)
var cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters)
var 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: any, d: any) => {
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 calendarpicker from './calendarpicker'
export default function testsuite() {
calendarpicker()
}
\ 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.
*/
export default class Utils {
static sleep(time){
return new Promise((resolve,reject)=>{
setTimeout(()=>{
resolve("ok")
},time)
}).then(()=>{
console.info(`sleep ${time} over...`)
})
}
}
/*
* 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.
*/
// @ts-nocheck
import { describe, beforeEach, afterEach, it, expect } from '@ohos/hypium'
import events_emitter from '@ohos.events.emitter';
import Utils from './Utils.ets';
export default function calendarpicker() {
describe('ActsAceCalendarPickerTest', function () {
beforeEach(async function (done) {
await Utils.sleep(2000);
console.info("CalendarPicker beforeEach start");
done();
})
afterEach(async function (done) {
console.info("CalendarPicker afterEach start");
try {
var eventData = {
data: {
"textStyle": {color:Color.Black,font:{size:8,weight:FontWeight.Lighter}},
"edgeAlign": CalendarAlign.END,
"hintRadius": 16
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[CalendarPicker_afterEach] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[CalendarPicker_afterEach] change component data error: " + err.message);
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0100] data" + JSON.stringify(data));
done();
})
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0100
* @tc.name Tests the textStyle property of the CalendarCalendarPicker component
* @tc.desc get the default value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0100', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0100] Color:" + obj.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.color).assertEqual('#FF000000');
expect(obj.$attrs.textStyle.font.size).assertEqual('8.00fp');
expect(obj.$attrs.textStyle.font.weight).assertEqual('FontWeight.Lighter');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0200
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0200', 0, async function (done) {
let value = {color:'#ff0000',font:{size:'1px',weight:'700'}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0200] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0200] change component data error: " + err.message);
}
await Utils.sleep(2000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0200] color:" + obj.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.color).assertEqual('#FFFF0000');
expect(obj.$attrs.textStyle.font.size).assertEqual('1.00px');
expect(obj.$attrs.textStyle.font.weight).assertEqual('700');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0300
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0300', 0, async function (done) {
let value = {color:Color.Green,font:{size:30,weight:450}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0300] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0300] change component data error: " + err.message);
}
await Utils.sleep(2000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0300] color:" + obj.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.color).assertEqual('#FF008000');
expect(obj.$attrs.textStyle.font.size).assertEqual('30.00fp');
expect(obj.$attrs.textStyle.font.weight).assertEqual('FontWeight.Normal');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0400
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0400', 0, async function (done) {
let value = {color:'#80808g',font:{size:-1,weight:1000}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0400] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0400] change component data error: " + err.message);
}
await Utils.sleep(2000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
let strJsonDefault = getInspectorByKey('CalendarPickerDefault');
let objDefault = JSON.parse(strJsonDefault);
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0400] color:" + obj.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.color).assertEqual(objDefault.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.font.size).assertEqual(objDefault.$attrs.textStyle.font.size);
expect(obj.$attrs.textStyle.font.weight).assertEqual('FontWeight.Normal');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0500
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0500', 0, async function (done) {
let value = {color:'xxx',font:{size:'xxx',weight:FontWeight.Bold}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0500] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0500] change component data error: " + err.message);
}
await Utils.sleep(2000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
let strJsonDefault = getInspectorByKey('CalendarPickerDefault');
let objDefault = JSON.parse(strJsonDefault);
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0500] color:" + obj.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.color).assertEqual(objDefault.$attrs.textStyle.color);
expect(obj.$attrs.textStyle.font.size).assertEqual(objDefault.$attrs.textStyle.font.size);
expect(obj.$attrs.textStyle.font.weight).assertEqual('FontWeight.Bold');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0600
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0600', 0, async function (done) {
let value = {color:'rgb(138,43,226)',font:{size:'20vp',weight:900}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0600] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0600] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
expect(obj.$attrs.textStyle.color).assertEqual('#FF8A2BE2');
expect(obj.$attrs.textStyle.font.size).assertEqual('20.00vp');
expect(obj.$attrs.textStyle.font.weight).assertEqual('900');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_textStyle_0700
* @tc.name Tests the textStyle property of the CalendarPicker component
* @tc.desc set textStyle then get the value
*/
it('ArkUI_Stage_CalendarPicker_textStyle_0700', 0, async function (done) {
let value = {color:'rgb(138,43,226)',font:{size:'15lpx',weight:90}}
try {
var eventData = {
data: {
"textStyle": JSON.stringify(value)
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_textStyle_0700] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_textStyle_0700] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
expect(obj.$attrs.textStyle.color).assertEqual('#FF8A2BE2');
expect(obj.$attrs.textStyle.font.size).assertEqual('15.00lpx');
expect(obj.$attrs.textStyle.font.weight).assertEqual('FontWeight.Normal');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0100
* @tc.name Tests the EdgeAlign of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0100', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0100] edgeAlign:" + obj.$attrs.edgeAlign);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0100] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.END');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0200
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0200', 0, async function (done) {
try {
var eventData = {
data: {
"edgeAlign": CalendarAlign.CENTER
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0200] start to publish emit");
events_emitter.emit(innerEvent, eventData);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0200] eventData:" + JSON.stringify(eventData));
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_EdgeAlign_0200] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0200] edgeAlign:" + obj.$attrs.edgeAlign);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0200] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.CENTER');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0300
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0300', 0, async function (done) {
try {
var eventData = {
data: {
"edgeAlign": CalendarAlign.START
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0300] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_EdgeAlign_0300] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0300] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0300] edgeAlign.offset.dx:" + obj.$attrs.edgeAlign.offset.dx);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.START');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0400
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0400', 0, async function (done) {
try {
var eventData = {
data: {
"edgeAlign": "edgeAlign"
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0400] start to publish emit");
events_emitter.emit(innerEvent, eventData);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0400] eventData:" + JSON.stringify(eventData));
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_EdgeAlign_0400] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0400] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.END');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0500
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0500', 0, async function (done) {
try {
var eventData = {
data: {
"edgeAlign": null
}
}
var innerEvent = {
eventId: 185,
priority: events_emitter.EventPriority.LOW
}
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0500] start to publish emit");
events_emitter.emit(innerEvent, eventData);
} catch (err) {
console.log("[ArkUI_Stage_CalendarPicker_EdgeAlign_0500] change component data error: " + err.message);
}
await Utils.sleep(3000);
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.END');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0600
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0600', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker1');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0600] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0600] edgeAlign.offset.dx:" + obj.$attrs.edgeAlign.offset.dx);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.START');
expect(obj.$attrs.edgeAlign.offset.dx).assertEqual('5.00vp');
expect(obj.$attrs.edgeAlign.offset.dy).assertEqual('5.00vp');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0700
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0700', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker2');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0700] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0700] edgeAlign.offset.dx:" + obj.$attrs.edgeAlign.offset.dx);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.CENTER');
expect(obj.$attrs.edgeAlign.offset.dx).assertEqual('-10.00vp');
expect(obj.$attrs.edgeAlign.offset.dy).assertEqual('0.00vp');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_EdgeAlign_0800
* @tc.name Tests the EdgeAlign property of the CalendarPicker component
* @tc.desc set EdgeAlign then get the value
*/
it('ArkUI_Stage_CalendarPicker_EdgeAlign_0800', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker3');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0800] edgeAlign.alignType:" + obj.$attrs.edgeAlign.alignType);
console.info("[ArkUI_Stage_CalendarPicker_EdgeAlign_0800] edgeAlign.offset.dx:" + obj.$attrs.edgeAlign.offset.dx);
expect(obj.$attrs.edgeAlign.alignType).assertEqual('CalendarAlign.END');
expect(obj.$attrs.edgeAlign.offset.dx).assertEqual('-20.00vp');
expect(obj.$attrs.edgeAlign.offset.dy).assertEqual('-10.00vp');
done();
});
/*
* @tc.number ArkUI_Stage_CalendarPicker_hintRadius_0100
* @tc.name Tests the hintRadius property of the CalendarPicker component
* @tc.desc get the property of the hintRadius
*/
it('ArkUI_Stage_CalendarPicker_hintRadius_0100', 0, async function (done) {
let strJson = getInspectorByKey('CalendarPicker');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Stage_CalendarPicker_hintRadius_0100] hintRadius:" + obj.$attrs.hintRadius);
expect(obj.$attrs.hintRadius).assertEqual('undefined');
done();
});
})
}
{
"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"
}
]
}
\ 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"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册