Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
bd408280
H
hello-uniCloud
项目概览
DCloud
/
hello-uniCloud
通知
301
Star
4
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uniCloud
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
bd408280
编写于
11月 20, 2023
作者:
A
Anne_LXM
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update test
上级
87315eae
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
63 addition
and
53 deletion
+63
-53
pages/clientDB/permission-field-simple/permission-field-simple.test.js
...B/permission-field-simple/permission-field-simple.test.js
+43
-37
pages/clientDB/permission-table-simple/permission-table-simple.test.js
...B/permission-table-simple/permission-table-simple.test.js
+16
-6
pages/clientDB/unicloud-db-demo/unicloud-db-demo.test.js
pages/clientDB/unicloud-db-demo/unicloud-db-demo.test.js
+2
-3
pages/clientDB/validate/validate.test.js
pages/clientDB/validate/validate.test.js
+2
-7
未找到文件。
pages/clientDB/permission-field-simple/permission-field-simple.test.js
浏览文件 @
bd408280
...
...
@@ -208,6 +208,7 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
return
createUserIndex
===
0
&&
createUserRole
==
'
user
'
})
console
.
log
(
"
createUser:
"
,
createUser
);
if
(
!
createUser
)
return
const
createUserA
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
create
"
,
...
...
@@ -316,42 +317,43 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
const
updateUserRole
=
await
page
.
data
(
'
currentRole
'
)
return
updateUserIndex
===
2
&&
updateUserRole
==
'
user
'
})
const
updateUserA
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
0
})
expect
(
updateUserA
).
toBe
(
errMsgA
)
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
0
,
"
field
"
:
"
_id,state,create_time,text
"
})
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
1
})
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
1
,
"
field
"
:
"
_id,state,create_time,text
"
})
const
updateUserB
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
2
})
expect
(
updateUserB
).
toBe
(
errMsgA
)
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
2
,
"
field
"
:
"
_id,state,create_time,text
"
})
if
(
readUser
){
const
updateUserA
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
0
})
expect
(
updateUserA
).
toBe
(
errMsgA
)
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
0
,
"
field
"
:
"
_id,state,create_time,text
"
})
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
1
})
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
1
,
"
field
"
:
"
_id,state,create_time,text
"
})
const
updateUserB
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
2
})
expect
(
updateUserB
).
toBe
(
errMsgA
)
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
2
,
"
field
"
:
"
_id,state,create_time,text
"
})
}
})
...
...
@@ -477,6 +479,7 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
const
updateAuditorRole
=
await
page
.
data
(
'
currentRole
'
)
return
updateAuditorIndex
===
2
&&
updateAuditorRole
==
'
auditor
'
})
console
.
log
(
'
updateAuditor:
'
,
updateAuditor
);
const
updateAuditorA
=
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
...
...
@@ -530,6 +533,7 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
const
createAdminRole
=
await
page
.
data
(
'
currentRole
'
)
return
createAdminIndex
===
0
&&
createAdminRole
==
'
admin
'
})
console
.
log
(
'
createAdmin:
'
,
createAdmin
);
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
create
"
,
...
...
@@ -581,6 +585,7 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
const
readAdminRole
=
await
page
.
data
(
'
currentRole
'
)
return
readAdminIndex
===
1
&&
readAdminRole
==
'
admin
'
})
console
.
log
(
'
readAdmin:
'
,
readAdmin
);
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
read
"
,
...
...
@@ -626,12 +631,13 @@ describe('pages/clientDB/permission-field-simple/permission-field-simple.nvue',
//点击更新
await
segItems
[
2
].
tap
()
await
roles
[
3
].
tap
()
const
updateAdmin
=
await
page
.
waitFor
(
async
()
=>
{
const
updateAdminIndex
=
await
page
.
data
(
'
typeIndex
'
)
const
updateAdminRole
=
await
page
.
data
(
'
currentRole
'
)
return
updateAdminIndex
===
2
&&
updateAdminRole
==
'
admin
'
})
console
.
log
(
'
updateAdmin:
'
,
updateAdmin
);
await
page
.
callMethod
(
'
myFn
'
,
{
"
type
"
:
"
update
"
,
"
index
"
:
0
...
...
pages/clientDB/permission-table-simple/permission-table-simple.test.js
浏览文件 @
bd408280
...
...
@@ -113,6 +113,7 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
read
"
,
"
index
"
:
0
})
// console.log('readA: ',readA);
expect
(
readA
.
success
).
toBeTruthy
()
// 禁止任何角色读取
...
...
@@ -230,7 +231,9 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
update
"
,
"
index
"
:
0
})
expect
(
updateA
.
result
.
updated
).
toBeGreaterThanOrEqual
(
1
)
// console.log('updateA: ',updateA);
// expect(updateA.result.updated).toBeGreaterThanOrEqual(1)
expect
(
updateA
.
result
.
errCode
).
toBe
(
0
)
// 禁止任何角色更新,管理员除外
const
updateB
=
await
page
.
callMethod
(
'
myFn
'
,
{
...
...
@@ -339,7 +342,9 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
delete
"
,
"
index
"
:
0
})
expect
(
deleteA
.
result
.
deleted
).
toBeGreaterThan
(
0
)
// console.log("deleteA",deleteA);
// expect(deleteA.result.deleted).toBeGreaterThanOrEqual(0)
expect
(
deleteA
.
result
.
errCode
).
toBe
(
0
)
// 禁止任何角色删除,管理员除外
const
deleteB
=
await
page
.
callMethod
(
'
myFn
'
,
{
...
...
@@ -375,8 +380,9 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
delete
"
,
"
index
"
:
3
})
console
.
log
(
'
deleteF:
'
,
deleteF
);
//
console.log('deleteF: ',deleteF);
// expect(deleteF.success).toBeTruthy()
expect
(
deleteF
.
result
.
deleted
).
toBe
(
0
)
// 只更新1分钟内创建的数据,先创建数据
const
deleteG
=
await
page
.
callMethod
(
'
myFn
'
,
{
...
...
@@ -639,7 +645,8 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
update
"
,
"
index
"
:
2
})
console
.
log
(
'
updateUserC:
'
,
updateUserC
);
// console.log('updateUserC: ',updateUserC);
expect
(
updateUserC
.
result
.
updated
).
toBe
(
1
)
// 仅更新自己创建的数据 先创建数据
...
...
@@ -662,7 +669,8 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
type
"
:
"
update
"
,
"
index
"
:
3
})
expect
(
updateUserF
.
result
.
updated
).
toBeGreaterThanOrEqual
(
1
)
// console.log('updateUserF: ',updateUserF);
expect
(
updateUserF
.
result
.
errCode
).
toBe
(
0
)
// 只更新1分钟内创建的数据 先创建数据
const
updateUserG
=
await
page
.
callMethod
(
'
myFn
'
,
{
...
...
@@ -706,7 +714,9 @@ describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', (
"
index
"
:
6
,
"
action
"
:
"
add_view_count
"
})
console
.
log
(
'
updateUserAction:
'
,
updateUserAction
);
// console.log('updateUserAction: ',updateUserAction);
expect
(
updateUserAction
.
result
.
updated
).
toBe
(
1
)
// expect(updateUserAction.errCode).toBe(0)
})
...
...
pages/clientDB/unicloud-db-demo/unicloud-db-demo.test.js
浏览文件 @
bd408280
...
...
@@ -92,15 +92,14 @@ describe('pages/clientDB/unicloud-db-demo/unicloud-db-demo', () => {
} */
if
(
process
.
env
.
UNI_PLATFORM
===
"
h5
"
||
process
.
env
.
UNI_PLATFORM
.
startsWith
(
"
app
"
))
{
const
loadMore
=
await
page
.
$
(
'
.loadMore
'
)
console
.
log
(
'
loadMore:
'
,
loadMore
);
// await page.waitFor(300)
await
loadMore
.
tap
()
await
page
.
waitFor
(
300
)
}
}
//每页数据数量减去1
const
pageSizeSubBefore
=
await
page
.
data
(
'
pageSize
'
)
const
numBox2
=
await
page
.
$
(
'
.num-box2
'
)
const
numboxMin2
=
await
numBox2
.
$
(
'
.uni-numbox__minus
'
)
await
numboxMin2
.
tap
()
...
...
pages/clientDB/validate/validate.test.js
浏览文件 @
bd408280
...
...
@@ -11,18 +11,13 @@ describe('pages/clientDB/validate/validate.vue', () => {
it
(
'
点击切换navBar
'
,
async
()
=>
{
//expect.assertions(1);
const
segmentedControl
=
await
page
.
$
(
'
.segmented-control
'
)
const
seControl
=
await
segmentedControl
.
$$
(
'
.segmented-control__item
'
)
console
.
log
(
'
seControl:
'
,
seControl
);
console
.
log
(
await
seControl
[
0
].
text
());
// expect(await seControl[0].text()).toBe('实例demo')
// console.log(await seControl[0].text());
expect
(
await
seControl
[
0
].
text
()).
toBe
(
'
实例demo
'
)
await
seControl
[
1
].
tap
()
await
page
.
waitFor
(
300
)
await
seControl
[
2
].
tap
()
await
page
.
waitFor
(
300
)
})
})
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录