Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
62c13a62
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
62c13a62
编写于
6月 03, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test(general event): 优化示例及测试
上级
0cf8c2ee
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
627 addition
and
226 deletion
+627
-226
pages/component/general-event/general-event.test.js
pages/component/general-event/general-event.test.js
+181
-23
pages/component/general-event/general-event.uvue
pages/component/general-event/general-event.uvue
+446
-203
未找到文件。
pages/component/general-event/general-event.test.js
浏览文件 @
62c13a62
const
PAGE_PATH
=
'
/pages/component/general-event/general-event
'
describe
(
'
event trigger sequence
'
,
()
=>
{
const
platformInfo
=
process
.
env
.
uniTestPlatformInfo
.
toLocaleLowerCase
()
const
isAndroid
=
platformInfo
.
startsWith
(
'
android
'
)
let
page
let
el
beforeAll
(
async
()
=>
{
page
=
await
program
.
navigateTo
(
PAGE_PATH
)
await
page
.
waitFor
(
'
view
'
)
el
=
await
page
.
$
(
'
.target
'
)
})
it
(
'
touch
'
,
async
()
=>
{
if
(
process
.
env
.
uniTestPlatformInfo
.
startsWith
(
'
android
'
)
&&
!
process
.
env
.
UNI_AUTOMATOR_APP_WEBVIEW
)
{
if
(
!
process
.
env
.
UNI_AUTOMATOR_APP_WEBVIEW
)
{
const
el
=
await
page
.
$
(
'
#touch-target
'
)
await
el
.
touchstart
({
touches
:
[{
identifier
:
1
,
pageX
:
100
,
pageY
:
100
,
pageX
:
101
,
pageY
:
101
,
clientX
:
101
,
clientY
:
101
,
screenX
:
101
,
screenY
:
101
},
],
changedTouches
:
[{
identifier
:
1
,
pageX
:
100
,
pageY
:
100
,
pageX
:
101
,
pageY
:
101
,
clientX
:
101
,
clientY
:
101
,
screenX
:
101
,
screenY
:
101
},
],
})
const
touchStartTouchTargetIdentifier
=
isAndroid
?
'
1.0
'
:
'
1
'
const
touchStartTouchTargetValue
=
isAndroid
?
'
101.0
'
:
'
101
'
const
touchStartTouchIdentifier
=
await
page
.
$
(
'
#touch-start-touch-identifier
'
)
expect
(
await
touchStartTouchIdentifier
.
text
()).
toBe
(
touchStartTouchTargetIdentifier
)
const
touchStartTouchPageX
=
await
page
.
$
(
'
#touch-start-touch-page-x
'
)
expect
(
await
touchStartTouchPageX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartTouchPageY
=
await
page
.
$
(
'
#touch-start-touch-page-y
'
)
expect
(
await
touchStartTouchPageY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartTouchClientX
=
await
page
.
$
(
'
#touch-start-touch-client-x
'
)
expect
(
await
touchStartTouchClientX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartTouchClientY
=
await
page
.
$
(
'
#touch-start-touch-client-y
'
)
expect
(
await
touchStartTouchClientY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartTouchScreenX
=
await
page
.
$
(
'
#touch-start-touch-screen-x
'
)
expect
(
await
touchStartTouchScreenX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartTouchScreenY
=
await
page
.
$
(
'
#touch-start-touch-screen-y
'
)
expect
(
await
touchStartTouchScreenY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchIdentifier
=
await
page
.
$
(
'
#touch-start-changed-touch-identifier
'
)
expect
(
await
touchStartChangedTouchIdentifier
.
text
()).
toBe
(
touchStartTouchTargetIdentifier
)
const
touchStartChangedTouchPageX
=
await
page
.
$
(
'
#touch-start-changed-touch-page-x
'
)
expect
(
await
touchStartChangedTouchPageX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchPageY
=
await
page
.
$
(
'
#touch-start-changed-touch-page-y
'
)
expect
(
await
touchStartChangedTouchPageY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchClientX
=
await
page
.
$
(
'
#touch-start-changed-touch-client-x
'
)
expect
(
await
touchStartChangedTouchClientX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchClientY
=
await
page
.
$
(
'
#touch-start-changed-touch-client-y
'
)
expect
(
await
touchStartChangedTouchClientY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchScreenX
=
await
page
.
$
(
'
#touch-start-changed-touch-screen-x
'
)
expect
(
await
touchStartChangedTouchScreenX
.
text
()).
toBe
(
touchStartTouchTargetValue
)
const
touchStartChangedTouchScreenY
=
await
page
.
$
(
'
#touch-start-changed-touch-screen-y
'
)
expect
(
await
touchStartChangedTouchScreenY
.
text
()).
toBe
(
touchStartTouchTargetValue
)
await
el
.
touchmove
({
touches
:
[{
identifier
:
1
,
pageX
:
100
,
pageY
:
100
,
},
],
pageX
:
102
,
pageY
:
102
,
clientX
:
102
,
clientY
:
102
,
screenX
:
102
,
screenY
:
102
}],
changedTouches
:
[{
identifier
:
1
,
pageX
:
101
,
pageY
:
101
,
pageX
:
102
,
pageY
:
102
,
clientX
:
102
,
clientY
:
102
,
screenX
:
102
,
screenY
:
102
},
],
})
const
touchMoveTouchTargetIdentifier
=
isAndroid
?
'
1.0
'
:
'
1
'
const
touchMoveTouchTargetValue
=
isAndroid
?
'
102.0
'
:
'
102
'
const
touchMoveTouchIdentifier
=
await
page
.
$
(
'
#touch-move-touch-identifier
'
)
expect
(
await
touchMoveTouchIdentifier
.
text
()).
toBe
(
touchMoveTouchTargetIdentifier
)
const
touchMoveTouchPageX
=
await
page
.
$
(
'
#touch-move-touch-page-x
'
)
expect
(
await
touchMoveTouchPageX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveTouchPageY
=
await
page
.
$
(
'
#touch-move-touch-page-y
'
)
expect
(
await
touchMoveTouchPageY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveTouchClientX
=
await
page
.
$
(
'
#touch-move-touch-client-x
'
)
expect
(
await
touchMoveTouchClientX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveTouchClientY
=
await
page
.
$
(
'
#touch-move-touch-client-y
'
)
expect
(
await
touchMoveTouchClientY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveTouchScreenX
=
await
page
.
$
(
'
#touch-move-touch-screen-x
'
)
expect
(
await
touchMoveTouchScreenX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveTouchScreenY
=
await
page
.
$
(
'
#touch-move-touch-screen-y
'
)
expect
(
await
touchMoveTouchScreenY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchIdentifier
=
await
page
.
$
(
'
#touch-move-changed-touch-identifier
'
)
expect
(
await
touchMoveChangedTouchIdentifier
.
text
()).
toBe
(
touchMoveTouchTargetIdentifier
)
const
touchMoveChangedTouchPageX
=
await
page
.
$
(
'
#touch-move-changed-touch-page-x
'
)
expect
(
await
touchMoveChangedTouchPageX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchPageY
=
await
page
.
$
(
'
#touch-move-changed-touch-page-y
'
)
expect
(
await
touchMoveChangedTouchPageY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchClientX
=
await
page
.
$
(
'
#touch-move-changed-touch-client-x
'
)
expect
(
await
touchMoveChangedTouchClientX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchClientY
=
await
page
.
$
(
'
#touch-move-changed-touch-client-y
'
)
expect
(
await
touchMoveChangedTouchClientY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchScreenX
=
await
page
.
$
(
'
#touch-move-changed-touch-screen-x
'
)
expect
(
await
touchMoveChangedTouchScreenX
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
const
touchMoveChangedTouchScreenY
=
await
page
.
$
(
'
#touch-move-changed-touch-screen-y
'
)
expect
(
await
touchMoveChangedTouchScreenY
.
text
()).
toBe
(
touchMoveTouchTargetValue
)
await
el
.
touchend
({
touches
:
[],
touches
:
[{
identifier
:
1
,
pageX
:
103
,
pageY
:
103
,
clientX
:
103
,
clientY
:
103
,
screenX
:
103
,
screenY
:
103
}],
changedTouches
:
[{
identifier
:
1
,
pageX
:
101
,
pageY
:
101
,
pageX
:
103
,
pageY
:
103
,
clientX
:
103
,
clientY
:
103
,
screenX
:
103
,
screenY
:
103
},
],
})
const
data
=
await
page
.
data
()
expect
(
data
.
onTouchStartTime
).
toBeLessThanOrEqual
(
data
.
onTouchMoveTime
);
expect
(
data
.
onTouchMoveTime
).
toBeLessThanOrEqual
(
data
.
onTouchEndTime
);
const
touchEndTouchTargetIdentifier
=
isAndroid
?
'
1.0
'
:
'
1
'
const
touchEndTouchTargetValue
=
isAndroid
?
'
103.0
'
:
'
103
'
const
touchEndTouchIdentifier
=
await
page
.
$
(
'
#touch-end-touch-identifier
'
)
expect
(
await
touchEndTouchIdentifier
.
text
()).
toBe
(
touchEndTouchTargetIdentifier
)
const
touchEndTouchPageX
=
await
page
.
$
(
'
#touch-end-touch-page-x
'
)
expect
(
await
touchEndTouchPageX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndTouchPageY
=
await
page
.
$
(
'
#touch-end-touch-page-y
'
)
expect
(
await
touchEndTouchPageY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndTouchClientX
=
await
page
.
$
(
'
#touch-end-touch-client-x
'
)
expect
(
await
touchEndTouchClientX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndTouchClientY
=
await
page
.
$
(
'
#touch-end-touch-client-y
'
)
expect
(
await
touchEndTouchClientY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndTouchScreenX
=
await
page
.
$
(
'
#touch-end-touch-screen-x
'
)
expect
(
await
touchEndTouchScreenX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndTouchScreenY
=
await
page
.
$
(
'
#touch-end-touch-screen-y
'
)
expect
(
await
touchEndTouchScreenY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchIdentifier
=
await
page
.
$
(
'
#touch-end-changed-touch-identifier
'
)
expect
(
await
touchEndChangedTouchIdentifier
.
text
()).
toBe
(
touchEndTouchTargetIdentifier
)
const
touchEndChangedTouchPageX
=
await
page
.
$
(
'
#touch-end-changed-touch-page-x
'
)
expect
(
await
touchEndChangedTouchPageX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchPageY
=
await
page
.
$
(
'
#touch-end-changed-touch-page-y
'
)
expect
(
await
touchEndChangedTouchPageY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchClientX
=
await
page
.
$
(
'
#touch-end-changed-touch-client-x
'
)
expect
(
await
touchEndChangedTouchClientX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchClientY
=
await
page
.
$
(
'
#touch-end-changed-touch-client-y
'
)
expect
(
await
touchEndChangedTouchClientY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchScreenX
=
await
page
.
$
(
'
#touch-end-changed-touch-screen-x
'
)
expect
(
await
touchEndChangedTouchScreenX
.
text
()).
toBe
(
touchEndTouchTargetValue
)
const
touchEndChangedTouchScreenY
=
await
page
.
$
(
'
#touch-end-changed-touch-screen-y
'
)
expect
(
await
touchEndChangedTouchScreenY
.
text
()).
toBe
(
touchEndTouchTargetValue
)
}
})
it
(
'
click
'
,
async
()
=>
{
const
el
=
await
page
.
$
(
'
#longpress-target
'
)
await
el
.
tap
()
const
data
=
await
page
.
data
()
expect
(
data
.
onTapTime
).
toBeLessThanOrEqual
(
data
.
onClickTime
)
const
targetX
=
isAndroid
?
'
0.0
'
:
'
0
'
const
targetY
=
isAndroid
?
'
0.0
'
:
'
0
'
const
tapEventX
=
await
page
.
$
(
'
#tap-event-x
'
)
expect
(
await
tapEventX
.
text
()).
toBe
(
targetX
)
const
tapEventY
=
await
page
.
$
(
'
#tap-event-y
'
)
expect
(
await
tapEventY
.
text
()).
toBe
(
targetY
)
const
clickEventX
=
await
page
.
$
(
'
#click-event-x
'
)
expect
(
await
clickEventX
.
text
()).
toBe
(
targetX
)
const
clickEventY
=
await
page
.
$
(
'
#click-event-y
'
)
expect
(
await
clickEventY
.
text
()).
toBe
(
targetY
)
})
it
(
'
longPress
'
,
async
()
=>
{
if
(
process
.
env
.
uniTestPlatformInfo
.
startsWith
(
'
android
'
)
&&
!
process
.
env
.
UNI_AUTOMATOR_APP_WEBVIEW
)
{
if
(
!
process
.
env
.
UNI_AUTOMATOR_APP_WEBVIEW
)
{
const
el
=
await
page
.
$
(
'
#longpress-target
'
)
await
el
.
longpress
()
const
data
=
await
page
.
data
()
expect
(
data
.
onLongPressTime
).
toBeGreaterThan
(
0
)
const
longPressTouchTargetIdentifier
=
isAndroid
?
'
1.0
'
:
'
1
'
const
longPressTouchTargetValue
=
isAndroid
?
'
0.0
'
:
'
0
'
const
longPressTouchIdentifier
=
await
page
.
$
(
'
#long-press-touch-identifier
'
)
expect
(
await
longPressTouchIdentifier
.
text
()).
toBe
(
longPressTouchTargetIdentifier
)
const
longPressTouchPageX
=
await
page
.
$
(
'
#long-press-touch-page-x
'
)
expect
(
await
longPressTouchPageX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressTouchPageY
=
await
page
.
$
(
'
#long-press-touch-page-y
'
)
expect
(
await
longPressTouchPageY
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressTouchClientX
=
await
page
.
$
(
'
#long-press-touch-client-x
'
)
expect
(
await
longPressTouchClientX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressTouchClientY
=
await
page
.
$
(
'
#long-press-touch-client-y
'
)
expect
(
await
longPressTouchClientY
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressTouchScreenX
=
await
page
.
$
(
'
#long-press-touch-screen-x
'
)
expect
(
await
longPressTouchScreenX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressTouchScreenY
=
await
page
.
$
(
'
#long-press-touch-screen-y
'
)
expect
(
await
longPressTouchScreenY
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchIdentifier
=
await
page
.
$
(
'
#long-press-changed-touch-identifier
'
)
expect
(
await
longPressChangedTouchIdentifier
.
text
()).
toBe
(
longPressTouchTargetIdentifier
)
const
longPressChangedTouchPageX
=
await
page
.
$
(
'
#long-press-changed-touch-page-x
'
)
expect
(
await
longPressChangedTouchPageX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchPageY
=
await
page
.
$
(
'
#long-press-changed-touch-page-y
'
)
expect
(
await
longPressChangedTouchPageY
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchClientX
=
await
page
.
$
(
'
#long-press-changed-touch-client-x
'
)
expect
(
await
longPressChangedTouchClientX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchClientY
=
await
page
.
$
(
'
#long-press-changed-touch-client-y
'
)
expect
(
await
longPressChangedTouchClientY
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchScreenX
=
await
page
.
$
(
'
#long-press-changed-touch-screen-x
'
)
expect
(
await
longPressChangedTouchScreenX
.
text
()).
toBe
(
longPressTouchTargetValue
)
const
longPressChangedTouchScreenY
=
await
page
.
$
(
'
#long-press-changed-touch-screen-y
'
)
expect
(
await
longPressChangedTouchScreenY
.
text
()).
toBe
(
longPressTouchTargetValue
)
}
})
})
pages/component/general-event/general-event.uvue
浏览文件 @
62c13a62
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录