Flex ui对比代码提交

Signed-off-by: dongwei <dongwei@kaihong.com>
This commit is contained in:
dongwei 2023-09-20 14:45:25 +08:00
parent 8eb72cab59
commit e6505e6b94
2 changed files with 1778 additions and 0 deletions

View File

@ -0,0 +1,125 @@
/**
* Copyright (c) 2023 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 CommonTest from '../../common/CommonTest';
import Utils from '../../model/Utils'
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium';
import Settings from '../../model/Settings'
import windowSnap from '../../model/snapShot'
import Logger from '../../model/Logger'
import { AttrsManager } from '../../model/AttrsManager';
import {
UiComponent,
UiDriver,
Component,
Driver,
UiWindow,
ON,
BY,
MatchPattern,
DisplayRotation,
ResizeDirection,
WindowMode,
PointerMatrix
} from '@ohos.UiTest';
export default function FlexWrapTest001() {
let supportView = [
'AlphabetIndexer', 'Blank', 'Button', 'Checkbox', 'CheckboxGroup', 'DataPanel', 'DatePicker',
'Divider', 'Gauge', 'Image', 'ImageAnimator','Marquee', 'Menu', 'MenuItem','MenuItemGroup',
'Progress', 'QRCode', 'Radio', 'Rating', 'ScrollBar',
'Search', 'Select', 'Slider', 'Text', 'TextArea',
'TextInput','TextPicker', 'TextTimer', 'TimePicker', 'Badge', 'Column', 'ColumnSplit', 'Counter', 'Flex',
'GridRow', 'Grid', 'List', 'Navigator', 'Panel',
'RelativeContainer','Row', 'RowSplit', 'Scroll', 'SideBarContainer', 'Stack', 'Swiper', 'Tabs',
'WaterFlow', 'Video', 'Circle', 'Ellipse', 'Line', 'Polyline', 'Polygon', 'Path', 'Rect', 'Shape',
'Canvas','XComponent','Toggle1', 'Toggle2','Toggle3','NavRouter','Navigation'
]
//页面配置信息
// this param is required.
let pageConfig = {
testName: 'FlexWrapTest001', //截图命名的一部分
pageUrl: "TestAbility/pages/flex/FlexWrapPage001" //用于设置窗口页面
}
//要测试的属性值遍历生成case
// this param is required.
let testValues =[
{
describe: 'nowrap',
setValue: { wrap: FlexWrap.NoWrap}
},
{
describe: 'wrap',
setValue: { wrap: FlexWrap.Wrap }
},
{
describe: 'wrapReverse',
setValue: { wrap: FlexWrap.WrapReverse }
},
{
describe: 'directionRow',
setValue: { wrap: FlexWrap.Wrap, direction: FlexDirection.Row}
},
{
describe: 'directionRowReverse',
setValue: { wrap: FlexWrap.Wrap, direction: FlexDirection.RowReverse}
},
{
describe: 'directionColumn',
setValue: { wrap: FlexWrap.Wrap, direction: FlexDirection.Column}
},
{
describe: 'directionColumnReverse',
setValue: { wrap: FlexWrap.Wrap, direction: FlexDirection.ColumnReverse}
},
]
function sleep(time) {
return new Promise((resolve) => setTimeout(resolve, time))
}
// create test suite
describe("FlexWrapTest001", () => {
beforeAll(async function () {
console.info('beforeAll in1');
})
// create test cases by config.
afterEach(async function (done) {
if (Settings.windowClass == null) {
return
}
Settings.windowClass.destroyWindow((err) => {
if (err.code) {
Logger.error('TEST', `Failed to destroy the window. Cause : ${JSON.stringify(err)}`)
return;
}
Logger.info('TEST', `Succeeded in destroy the window.`);
})
await sleep(1000);
done()
})
CommonTest.initTest1(pageConfig, supportView, testValues)
})
}
export function create() {
throw new Error('Function not implemented.');
}