Flex ui对比代码提交

Signed-off-by: dongwei <dongwei@kaihong.com>
This commit is contained in:
dongwei 2023-09-19 15:52:42 +08:00
parent 24a9c04249
commit ce9ff4f614
3 changed files with 308 additions and 0 deletions

View File

@ -0,0 +1,108 @@
/**
* 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 FlexLayoutWeight003() {
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: 'FlexLayoutWeight003', //截图命名的一部分
pageUrl: 'TestAbility/pages/flex/FlexLayoutWeightPage003' //用于设置窗口页面
}
//要测试的属性值遍历生成case
// this param is required.
let testValues =[
{
describe: 'undefined',
setValue: undefined
},
{
describe: 'null',
setValue: null
},
{
describe: '-10',
setValue: -10
}
]
function sleep(time) {
return new Promise((resolve) => setTimeout(resolve, time))
}
// create test suite
describe("FlexLayoutWeight003", () => {
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.');
}

View File

@ -0,0 +1,100 @@
/**
* 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 FlexLayoutWeight004() {
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: 'FlexLayoutWeight004', //截图命名的一部分
pageUrl: 'TestAbility/pages/flex/FlexLayoutWeightPage004' //用于设置窗口页面
}
//要测试的属性值遍历生成case
// this param is required.
let testValues =[
{
describe: 'aaa',
setValue: 'aaa'
}
]
function sleep(time) {
return new Promise((resolve) => setTimeout(resolve, time))
}
// create test suite
describe("FlexLayoutWeight004", () => {
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.');
}

View File

@ -0,0 +1,100 @@
/**
* 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 FlexShrinkTest001() {
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: 'FlexShrinkTest001', //截图命名的一部分
pageUrl: 'TestAbility/pages/flex/FlexShrinkPage001' //用于设置窗口页面
}
//要测试的属性值遍历生成case
// this param is required.
let testValues =[
{
describe: '4_3_2_1',
setValue: [4, 3, 2, 1]
},
]
function sleep(time) {
return new Promise((resolve) => setTimeout(resolve, time))
}
// create test suite
describe("FlexShrinkTest001", () => {
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.');
}