未验证 提交 93a1b0c8 编写于 作者: O openharmony_ci 提交者: Gitee

!8065 【ACE 子系统】 增加测试用例

Merge pull request !8065 from hekun/OpenHarmony-3.2-Release
...@@ -29,6 +29,7 @@ struct ImageExample { ...@@ -29,6 +29,7 @@ struct ImageExample {
.width(240).height(240) .width(240).height(240)
.colorFilter([1,2,3]) .colorFilter([1,2,3])
.overlay('colorFilter', { align: Alignment.Bottom, offset: { x: 0, y: -15 } }) .overlay('colorFilter', { align: Alignment.Bottom, offset: { x: 0, y: -15 } })
.draggable(false)
}.border({ color: Color.Black, width: 2 }) }.border({ color: Color.Black, width: 2 })
}.width('100%') }.width('100%')
}.padding({ top: 20 }) }.padding({ top: 20 })
......
...@@ -136,6 +136,10 @@ struct ListLanes { ...@@ -136,6 +136,10 @@ struct ListLanes {
.onScrollEnd(() => { .onScrollEnd(() => {
console.info('Scroll Stop') console.info('Scroll Stop')
}) })
.onScrollStart(() => {
console.info('Scroll Start');
})
Button('scroll 100') Button('scroll 100')
......
/*
* 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.
*/
@Entry
@Component
struct Index {
@State select: boolean = true
@Builder
SubMenu() {
Menu() {
MenuItem({ content: "复制", labelInfo: "Ctrl+C" })
MenuItem({ content: "粘贴", labelInfo: "Ctrl+V" })
}
}
@Builder
MyMenu(){
Menu() {
MenuItem({ startIcon: $r("app.media.icon"), content: "菜单选项" })
MenuItem({ startIcon: $r("app.media.icon"), content: "菜单选项" })
.enabled(false)
MenuItem({
content: "菜单选项",
builder: this.SubMenu.bind(this)
})
MenuItemGroup({ header: '小标题' , footer: '大标题'}) {
MenuItem({ content: "菜单选项" })
.selectIcon(true)
.selected(this.select)
.onChange((selected) => {
console.info("menuItem select" + selected);
})
MenuItem({
content: "菜单选项",
endIcon: $r("app.media.icon"),
builder: this.SubMenu.bind(this)
})
}
MenuItem({
content: "菜单选项",
})
}
}
build() {
Row() {
Column() {
Text('click to show menu')
.fontSize(50)
.fontWeight(FontWeight.Bold)
}
.bindMenu(this.MyMenu)
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
...@@ -75,8 +75,11 @@ struct ScrollOnScrollBegin { ...@@ -75,8 +75,11 @@ struct ScrollOnScrollBegin {
console.info('To the edge') console.info('To the edge')
}) })
.onScrollEnd(() => { .onScrollEnd(() => {
console.info('Scroll Stop') console.info('Scroll Stop');
}) })
.onScrollStart(() => {
console.info('Scroll Start');
})
.key("Scroll") .key("Scroll")
.width("100%") .width("100%")
.height("100%") .height("100%")
......
...@@ -86,6 +86,12 @@ struct SwiperCurve { ...@@ -86,6 +86,12 @@ struct SwiperCurve {
.onChange((index: number) => { .onChange((index: number) => {
console.info(index.toString()) console.info(index.toString())
}) })
.onAnimationStart((index: number) => {
console.info("swiper nAnimationStart info index is " + index);
})
.onAnimationEnd((index: number) => {
console.info("swiper onAnimationEnd info index is " + index);
})
Flex({ justifyContent: FlexAlign.SpaceAround }) { Flex({ justifyContent: FlexAlign.SpaceAround }) {
Button('next') Button('next')
......
...@@ -59,6 +59,7 @@ import textPickerDefaultPickerItemHeightJsunit from './textPicker.test.ets'; ...@@ -59,6 +59,7 @@ import textPickerDefaultPickerItemHeightJsunit from './textPicker.test.ets';
import videoOnFullscreenChangeJsunit from './video.test.ets'; import videoOnFullscreenChangeJsunit from './video.test.ets';
import webGetTitleJsunit from './web.test.ets'; import webGetTitleJsunit from './web.test.ets';
import xcomponentGetXComponentContextJsunit from './xcomponent.test.ets'; import xcomponentGetXComponentContextJsunit from './xcomponent.test.ets';
import routerJsunit from './router.test.ets';
export default function testsuite() { export default function testsuite() {
lazyForEachOnDataAddJsunit() lazyForEachOnDataAddJsunit()
...@@ -104,4 +105,5 @@ export default function testsuite() { ...@@ -104,4 +105,5 @@ export default function testsuite() {
videoOnFullscreenChangeJsunit() videoOnFullscreenChangeJsunit()
webGetTitleJsunit() webGetTitleJsunit()
xcomponentGetXComponentContextJsunit() xcomponentGetXComponentContextJsunit()
routerJsunit()
} }
\ No newline at end of file
...@@ -17,6 +17,7 @@ import events_emitter from '@ohos.events.emitter'; ...@@ -17,6 +17,7 @@ import events_emitter from '@ohos.events.emitter';
import router from '@system.router'; import router from '@system.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index" import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index"
import Utils from './Utils.ets' import Utils from './Utils.ets'
import font from '@ohos.font'
export default function common_ts_ets_apiStaticClearJsunit() { export default function common_ts_ets_apiStaticClearJsunit() {
describe('common_ts_ets_apiStaticClearTest', function () { describe('common_ts_ets_apiStaticClearTest', function () {
...@@ -95,5 +96,29 @@ export default function common_ts_ets_apiStaticClearJsunit() { ...@@ -95,5 +96,29 @@ export default function common_ts_ets_apiStaticClearJsunit() {
console.info("common_ts_ets_apiEnvProp0001 on events_emitter err : " + JSON.stringify(err)); console.info("common_ts_ets_apiEnvProp0001 on events_emitter err : " + JSON.stringify(err));
} }
}); });
/*
* @tc.number SUB_ACE_BASIC_ETS_API_0003
* @tc.name test_font_registerFont_0001
* @tc.desc Register a customized font in the FontManager
*/
it('test_font_registerFont_0001', 0, async function (done) {
console.info('test_font_registerFont_0001 Register a customized font in the FontManagerSTART');
await Utils.sleep(2000);
let fontOptions = {
familyName: "Italy",
familySrc: "resource/base/Italy"
}
try {
let result = font.registerFont(fontOptions);
console.info("test_font_registerFont_0001 info is : " + JSON.stringify(result));
expect().assertFail();
done();
} catch (err) {
console.info("test_font_registerFont_0001 err : " + JSON.stringify(err));
expect(true).assertTrue();
done();
}
});
}) })
} }
/**
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@ohos.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index"
import Utils from './Utils.ets'
export default function routerJsunit() {
describe('routerJsunit', function () {
beforeAll(async function (done) {
console.info("router beforeEach start");
try {
router.clear();
let pages = router.getState();
console.info("get router state success " + JSON.stringify(pages));
if (!("circle" == pages.name)) {
console.info("get router state success " + JSON.stringify(pages.name));
router.pushUrl({
url: 'pages/circle',
params: {
data1: 'message',
data2: {
data3: [123, 456, 789]
}
}
}).then(() => {
console.info("push circle page success " );
})
.catch(err => {
console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
})
}
} catch (err) {
console.error("push circle page error: " + err);
}
done()
});
afterEach(async function () {
await Utils.sleep(1000);
console.info("circleNew after each called");
});
/*
* @tc.number SUB_ACE_BASIC_ETS_API_002
* @tc.name tesRouter_001
* @tc.desc testRouterAPi
*/
it('testRouter_001', 0, async function (done) {
await Utils.sleep(2000);
try {
router.showAlertBeforeBackPage({
message: 'Message Info'
});
expect(true).assertTrue();
done();
} catch(error) {
console.error(`showAlertBeforeBackPage failed, code is ${error.code}, message is ${error.message}`);
expect(error.code == 13004).assertTrue();
done();
}
});
/*
* @tc.number SUB_ACE_BASIC_ETS_API_002
* @tc.name tesRouter_002
* @tc.desc testRouterAPi
*/
it('testRouter_001', 0, async function (done) {
await Utils.sleep(2000);
try {
router.hideAlertBeforeBackPage();
expect(true).assertTrue();
done();
} catch(error) {
console.error(`hideAlertBeforeBackPage failed, code is ${error.code}, message is ${error.message}`);
expect(error.code == 13004).assertTrue();
done();
}
});
})
}
...@@ -150,5 +150,68 @@ export default function stateManagementGetSharedJsunit() { ...@@ -150,5 +150,68 @@ export default function stateManagementGetSharedJsunit() {
} }
console.info('teststateManagementsetAndProp0001 END'); console.info('teststateManagementsetAndProp0001 END');
}); });
/*
* @tc.number SUB_ACE_BASIC_ETS_API_0007
* @tc.name test_setAndLink_0001
* @tc.desc bind localStorage
*/
it('test_setAndLink_0001', 0, async function (done) {
console.info('test_setAndLink_0001 START');
await Utils.sleep(2000);
try {
let storage = new LocalStorage()
storage.setAndLink<string>('storageSimpleProp', '121');
let size = storage.size()
expect(size == 1).assertTrue();
done();
} catch (err) {
console.info("test_font_registerFont_0001 err : " + JSON.stringify(err));
expect().assertFail();
done();
}
});
/*
* @tc.number SUB_ACE_BASIC_ETS_API_0007
* @tc.name test_setAndLink_0001
* @tc.desc bind localStorage
*/
it('test_setAndLink_0001', 0, async function (done) {
console.info('test_setAndLink_0001 START');
await Utils.sleep(2000);
try {
let storage = new LocalStorage()
storage.setAndLink<string>('storageSimpleProp', '121');
let size = storage.size()
expect(size == 1).assertTrue();
done();
} catch (err) {
console.info("test_setAndLink_0001 err : " + JSON.stringify(err));
expect().assertFail();
done();
}
});
/*
* @tc.number SUB_ACE_BASIC_ETS_API_0008
* @tc.name test_setAndProp_0001
* @tc.desc bind localStorage
*/
it('test_setAndProp_0001', 0, async function (done) {
console.info('test_setAndProp_0001 START');
await Utils.sleep(2000);
try {
let storage = new LocalStorage()
storage.setAndProp<string>("setAndProp",'12');
let size = storage.size();
expect(size == 1).assertTrue();
done();
} catch (err) {
console.info("test_setAndProp_0001 err : " + JSON.stringify(err));
expect().assertFail();
done();
}
});
}) })
} }
/**
* 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.
*/
@Entry
@Component
struct GestureSettingsExample {
@State priorityTestValue: string = ''
@State parallelTestValue: string = ''
result = postCardAction(null,null);
build() {
Column() {
Column() {
Text('TapGesture:' + this.priorityTestValue).fontSize(28)
.gesture(
TapGesture()
.onAction(() => {
this.priorityTestValue += '\nText'
}))
}
.height(200)
.width(250)
.padding(20)
.margin(20)
.border({ width: 3 })
// 设置为priorityGesture时,点击文本会忽略Text组件的TapGesture手势事件,优先识别父组件Column的TapGesture手势事件
.priorityGesture(
TapGesture()
.onAction((event: GestureEvent) => {
this.priorityTestValue += '\nColumn'
console.info("Gesture pressure" + event.pressure);
console.info("Gesture tiltX" + event.tiltX);
console.info("Gesture tiltY" + event.tiltY);
console.info("Gesture sourceTool object" + event.sourceTool);
console.info("Gesture sourceTool enum value " + SourceTool.Finger);
console.info("Gesture sourceTool enum value " + SourceTool.Pen);
}), GestureMask.IgnoreInternal)
Column() {
Text('TapGesture:' + this.parallelTestValue).fontSize(28)
.gesture(
TapGesture()
.onAction(() => {
this.parallelTestValue += '\nText'
}))
}
.height(200)
.width(250)
.padding(20)
.margin(20)
.border({ width: 3 })
.parallelGesture(
TapGesture()
.onAction((event: GestureEvent) => {
this.parallelTestValue += '\nColumn'
}), GestureMask.Normal)
}
}
}
\ No newline at end of file
...@@ -17,6 +17,7 @@ import router from '@system.router'; ...@@ -17,6 +17,7 @@ import router from '@system.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index" import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index"
import Utils from './Utils.ets' import Utils from './Utils.ets'
import events_emitter from '@ohos.events.emitter'; import events_emitter from '@ohos.events.emitter';
import measure from '@ohos.measure'
export default function alertDialogCenterStartJsunit() { export default function alertDialogCenterStartJsunit() {
describe('alertDialogCenterStartTest', function () { describe('alertDialogCenterStartTest', function () {
...@@ -71,5 +72,26 @@ export default function alertDialogCenterStartJsunit() { ...@@ -71,5 +72,26 @@ export default function alertDialogCenterStartJsunit() {
console.info("testalertDialogCenterStart0001 on events_emitter err : " + JSON.stringify(err)); console.info("testalertDialogCenterStart0001 on events_emitter err : " + JSON.stringify(err));
} }
}); });
/*
* @tc.number SUB_ACE_BASIC_ETS_API_0002
* @tc.name testMeasureText0001
* @tc.desic test text width
*/
it('testMeasureText0001', 0, async function (done) {
console.info('testMeasureText0001 start');
await Utils.sleep(2000);
try {
let measureOptions = {textContent : "alertDialog-CenterStart"};
let width = measure.measureText(measureOptions);
console.info("testMeasureText0001 " + width.toString());
expect(width > 0).assertTrue();
done();
} catch (err) {
console.info("testMeasureText0001 err : " + JSON.stringify(err));
expect().assertFail();
done();
}
});
}) })
} }
/**
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@ohos.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index"
import Utils from './Utils.ets'
export default function ohosrouterJsunit() {
describe('ohosrouterJsunit', function () {
beforeAll(async function (done) {
console.info("ohosrouterJsunit beforeAll");
done();
});
afterEach(async function () {
await Utils.sleep(1000);
console.info("ohosrouterJsunit aftereach");
});
/*
* @tc.number SUB_ACE_BASIC_ETS_API_001
* @tc.name ohosrouterJsunit_001
* @tc.desc test routermode
*/
it('ohosrouterJsunit_001', 0, async function (done) {
try {
expect(1).assertEqual(router.RouterMode.Single);
done();
} catch (error) {
console.error(`ohosrouterJsunit_001 pushUrl args error code is ${error.code}, message is ${error.message}`)
expect().assertFail();
};
});
})
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册