mirror of
https://gitee.com/openharmony/xts_tools
synced 2024-11-27 18:10:45 +00:00
commit
402a9d258b
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -210,6 +210,8 @@ import ClickTest003 from './generalEvents/ClickTest003.test'
|
||||
import FlexAlignContentTest001 from './generalAttributes/Flex/FlexAlignContentTest001.test'
|
||||
import FlexAlignItemsTest001 from './generalAttributes/Flex/FlexAlignItemsTest001.test'
|
||||
import FlexAlignSelfTest001 from './generalAttributes/Flex/FlexAlignSelfTest001.test'
|
||||
import FlexBasisTest001 from './generalAttributes/Flex/FlexBasisTest001.test'
|
||||
import FlexBasisTest002 from './generalAttributes/Flex/FlexBasisTest002.test'
|
||||
|
||||
export default function testsuite() {
|
||||
|
||||
@ -394,4 +396,6 @@ export default function testsuite() {
|
||||
FlexAlignContentTest001()
|
||||
FlexAlignItemsTest001()
|
||||
FlexAlignSelfTest001()
|
||||
FlexBasisTest001()
|
||||
FlexBasisTest002()
|
||||
}
|
@ -0,0 +1,104 @@
|
||||
/**
|
||||
* 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 FlexBasisTest001() {
|
||||
//共64*2=128
|
||||
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: 'FlexBasisTest001', //截图命名的一部分
|
||||
pageUrl: 'TestAbility/pages/flex/FlexBasisPage001' //用于设置窗口页面
|
||||
}
|
||||
|
||||
//要测试的属性值,遍历生成case
|
||||
// this param is required.
|
||||
let testValues =[
|
||||
{
|
||||
describe: '100',
|
||||
setValue: 100
|
||||
},
|
||||
{
|
||||
describe: '0',
|
||||
setValue: 0
|
||||
},
|
||||
]
|
||||
|
||||
function sleep(time) {
|
||||
return new Promise((resolve) => setTimeout(resolve, time))
|
||||
}
|
||||
|
||||
// create test suite
|
||||
describe("FlexBasisTest001", () => {
|
||||
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.');
|
||||
}
|
@ -0,0 +1,116 @@
|
||||
/**
|
||||
* 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 FlexBasisTest002() {
|
||||
//共64*5=320
|
||||
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: 'FlexBasisTest002', //截图命名的一部分
|
||||
pageUrl: 'TestAbility/pages/flex/FlexBasisPage002' //用于设置窗口页面
|
||||
}
|
||||
|
||||
//要测试的属性值,遍历生成case
|
||||
// this param is required.
|
||||
let testValues =[
|
||||
{
|
||||
describe: 'auto',
|
||||
setValue: 'auto'
|
||||
},
|
||||
{
|
||||
describe: '200vp',
|
||||
setValue: '200vp'
|
||||
},
|
||||
{
|
||||
describe: '200px',
|
||||
setValue: '200px'
|
||||
},
|
||||
{
|
||||
describe: '200fp',
|
||||
setValue: '200fp'
|
||||
},
|
||||
{
|
||||
describe: '200lpx',
|
||||
setValue: '200lpx'
|
||||
},
|
||||
]
|
||||
|
||||
function sleep(time) {
|
||||
return new Promise((resolve) => setTimeout(resolve, time))
|
||||
}
|
||||
|
||||
// create test suite
|
||||
describe("FlexBasisTest002", () => {
|
||||
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.');
|
||||
}
|
@ -176,6 +176,9 @@
|
||||
|
||||
"TestAbility/pages/flex/FlexAlignContentPage001",
|
||||
"TestAbility/pages/flex/FlexAlignItemsPage001",
|
||||
"TestAbility/pages/flex/FlexAlignSelfPage001"
|
||||
"TestAbility/pages/flex/FlexAlignSelfPage001",
|
||||
"TestAbility/pages/flex/FlexBasisPage001",
|
||||
"TestAbility/pages/flex/FlexBasisPage002",
|
||||
"TestAbility/pages/flex/FlexBasisPage003"
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user