Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
c2983695
H
hello-uniCloud
项目概览
DCloud
/
hello-uniCloud
通知
294
Star
3
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看板
提交
c2983695
编写于
11月 21, 2023
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test: 优化测试例
上级
2f59b2af
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
136 addition
and
121 deletion
+136
-121
pages/clientDB/permission-table-compound/permission-table-compound.test.js
...rmission-table-compound/permission-table-compound.test.js
+2
-3
pages/clientDB/validate/validate.test.js
pages/clientDB/validate/validate.test.js
+1
-1
pages/schema2code/schema2code.test.js
pages/schema2code/schema2code.test.js
+26
-28
pages/schema2code/schema2code.vue
pages/schema2code/schema2code.vue
+107
-89
未找到文件。
pages/clientDB/permission-table-compound/permission-table-compound.test.js
浏览文件 @
c2983695
jest
.
setTimeout
(
20000
)
describe
(
'
pages/clientDB/permission-table-compound/permission-table-compound.vue
'
,
()
=>
{
let
page
,
errMsgA
,
errMsgB
,
perPage
,
segItems
,
roles
;
beforeAll
(
async
()
=>
{
...
...
@@ -398,9 +400,6 @@ describe('pages/clientDB/permission-table-compound/permission-table-compound.vue
"
index
"
:
1
,
"
action
"
:
"
add_view_count
"
})
})
...
...
pages/clientDB/validate/validate.test.js
浏览文件 @
c2983695
...
...
@@ -13,7 +13,7 @@ describe('pages/clientDB/validate/validate.vue', () => {
const
segmentedControl
=
await
page
.
$
(
'
.segmented-control
'
)
const
seControl
=
await
segmentedControl
.
$$
(
'
.segmented-control__item
'
)
// console.log(await seControl[0].text());
expect
(
await
seControl
[
0
].
text
()).
toBe
(
'
实例demo
'
)
expect
(
(
await
seControl
[
0
].
text
()).
trim
()).
toBe
(
'
实例demo
'
)
await
seControl
[
1
].
tap
()
await
page
.
waitFor
(
300
)
await
seControl
[
2
].
tap
()
...
...
pages/schema2code/schema2code.test.js
浏览文件 @
c2983695
describe
(
'
pages/schema2code/schema2code.nvue
'
,
()
=>
{
let
page
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
page
=
await
program
.
switchTab
(
'
/pages/schema2code/schema2code
'
)
await
page
.
waitFor
(
'
view
'
)
})
it
(
'
schema2code-点击
'
,
async
()
=>
{
const
title
=
await
page
.
$
(
'
.uni-title
'
)
const
showSchemaCode
=
await
title
.
$
(
'
.showSchemaCode
'
)
await
showSchemaCode
.
tap
()
await
page
.
waitFor
(
300
)
// const showSchemaCode = await page.callMethod('showSchemaCode')
})
it
(
'
前往生成的云端一体页面
'
,
async
()
=>
{
const
toForm
=
await
page
.
$
(
'
.toForm
'
)
await
toForm
.
tap
()
await
page
.
waitFor
(
1000
)
// expect( (await program.currentPage()).path).toBe('pages/user-info/list')
// await page.waitFor(500)
// //返回navigateBack 验证是否返回
// expect((await program.navigateBack()).path).toBe('pages/schema2code/schema2code')
})
})
\ No newline at end of file
let
page
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
page
=
await
program
.
reLaunch
(
'
/pages/schema2code/schema2code
'
)
await
page
.
setData
({
isTest
:
true
})
await
page
.
waitFor
(
'
view
'
)
})
it
(
'
schema2code-点击
'
,
async
()
=>
{
const
title
=
await
page
.
$
(
'
.uni-title
'
)
const
showSchemaCode
=
await
title
.
$
(
'
.showSchemaCode
'
)
await
showSchemaCode
.
tap
()
await
page
.
waitFor
(
300
)
// const showSchemaCode = await page.callMethod('showSchemaCode')
})
it
(
'
前往生成的云端一体页面
'
,
async
()
=>
{
const
toForm
=
await
page
.
$
(
'
.toForm
'
)
await
toForm
.
tap
()
await
page
.
waitFor
(
1000
)
// expect( (await program.currentPage()).path).toBe('pages/user-info/list')
// await page.waitFor(500)
// //返回navigateBack 验证是否返回
// expect((await program.navigateBack()).path).toBe('pages/schema2code/schema2code')
})
})
pages/schema2code/schema2code.vue
浏览文件 @
c2983695
<
template
>
<view
class=
"root"
>
<view
class=
"uni-title dashed-box"
>
<text
class=
"tip"
>
schema2code是一个根据数据库schema自动生成代码的工具。它可以直接生成云端一体的列表、详情、新建、修改页面,云端一体直接可用。大幅提升开发效率。
</text>
<text>
\n schema路径:uniCloud/database/user-info.schema.json \n
</text>
<button
class=
"showSchemaCode"
size=
"mini"
@
click=
"showSchemaCode"
type=
"primary"
plain
>
查看schema代码
</button>
</view>
<j-video
:src=
"videoUrl"
title=
"schema2code步骤演示"
height=
"421rpx"
width=
"750rpx"
></j-video>
<alertCode
ref=
"alertCode"
></alertCode>
<button
class=
"toForm"
@
click=
"toForm"
type=
"primary"
size=
"mini"
plain
>
前往生成的云端一体页面
</button>
</view>
</
template
>
<
script
>
import
schemaCode
from
'
./schemaCode
'
;
export
default
{
data
()
{
return
{
schemaCode
:
schemaCode
,
videoUrl
:
"
https://web-assets.dcloud.net.cn/unidoc/zh/schema2code%E7%9A%84%E4%B8%A4%E7%A7%8D%E6%96%B9%E5%BC%8F.mp4
"
,
// https://web-assets.dcloud.net.cn/unidoc/zh/create-schema2code-video.mp4
}
},
methods
:
{
async
showSchemaCode
(){
return
this
.
$refs
.
alertCode
.
open
(
schemaCode
)
},
toForm
(){
uni
.
navigateTo
({
url
:
'
../user-info/list
'
})
}
}
}
</
script
>
<
style
scoped
>
.code-view
{
height
:
750
rpx
;
width
:
750
rpx
;
padding
:
5px
8px
;
overflow
:
scroll
;
background-color
:
#fffae7
;
}
.code-box
{
white-space
:
nowrap
;
color
:
#447315
;
font-size
:
12px
;
}
.root
{
flex-direction
:
column
;
}
.dashed-box
{
border
:
dashed
1px
#EEEEEE
;
border-radius
:
5px
;
width
:
750
rpx
;
position
:
relative
;
}
.uni-title
{
width
:
680
rpx
;
margin
:
15
rpx
;
font-size
:
26
rpx
;
padding
:
20
rpx
;
line-height
:
1.5
;
background-color
:
#FFFFFF
;
}
.uni-title
text
{
font-size
:
24
rpx
;
color
:
#888
;
}
.toForm
{
width
:
500
rpx
;
margin
:
30px
125
rpx
;
}
.uni-title
text
.link
{
color
:
#586b95
;
}
text
.tip
{
background-color
:
#FFFFFF
;
color
:
#333
;
height
:
80px
;
width
:
750
rpx
;
}
.showSchemaCode
{
margin-top
:
10px
;
}
</
style
>
<
template
>
<view
class=
"root"
>
<view
class=
"uni-title dashed-box"
>
<text
class=
"tip"
>
schema2code是一个根据数据库schema自动生成代码的工具。它可以直接生成云端一体的列表、详情、新建、修改页面,云端一体直接可用。大幅提升开发效率。
</text>
<text>
\n schema路径:uniCloud/database/user-info.schema.json \n
</text>
<button
class=
"showSchemaCode"
size=
"mini"
@
click=
"showSchemaCode"
type=
"primary"
plain
>
查看schema代码
</button>
</view>
<j-video
v-if=
"showVideo"
:src=
"videoUrl"
title=
"schema2code步骤演示"
height=
"421rpx"
width=
"750rpx"
></j-video>
<alertCode
ref=
"alertCode"
></alertCode>
<button
class=
"toForm"
@
click=
"toForm"
type=
"primary"
size=
"mini"
plain
>
前往生成的云端一体页面
</button>
</view>
</
template
>
<
script
>
import
schemaCode
from
'
./schemaCode
'
;
export
default
{
data
()
{
return
{
schemaCode
:
schemaCode
,
videoUrl
:
"
https://web-assets.dcloud.net.cn/unidoc/zh/schema2code%E7%9A%84%E4%B8%A4%E7%A7%8D%E6%96%B9%E5%BC%8F.mp4
"
,
// https://web-assets.dcloud.net.cn/unidoc/zh/create-schema2code-video.mp4,
showVideo
:
false
,
isTest
:
false
}
},
onReady
()
{
setTimeout
(()
=>
{
if
(
!
this
.
isTest
){
this
.
showVideo
=
true
;
}
},
1000
)
},
methods
:
{
async
showSchemaCode
()
{
return
this
.
$refs
.
alertCode
.
open
(
schemaCode
)
},
toForm
()
{
uni
.
navigateTo
({
url
:
'
../user-info/list
'
})
}
}
}
</
script
>
<
style
scoped
>
.code-view
{
height
:
750
rpx
;
width
:
750
rpx
;
padding
:
5px
8px
;
overflow
:
scroll
;
background-color
:
#fffae7
;
}
.code-box
{
white-space
:
nowrap
;
color
:
#447315
;
font-size
:
12px
;
}
.root
{
flex-direction
:
column
;
}
.dashed-box
{
border
:
dashed
1px
#EEEEEE
;
border-radius
:
5px
;
width
:
750
rpx
;
position
:
relative
;
}
.uni-title
{
width
:
680
rpx
;
margin
:
15
rpx
;
font-size
:
26
rpx
;
padding
:
20
rpx
;
line-height
:
1.5
;
background-color
:
#FFFFFF
;
}
.uni-title
text
{
font-size
:
24
rpx
;
color
:
#888
;
}
.toForm
{
width
:
500
rpx
;
margin
:
30px
125
rpx
;
}
.uni-title
text
.link
{
color
:
#586b95
;
}
text
.tip
{
background-color
:
#FFFFFF
;
color
:
#333
;
height
:
80px
;
width
:
750
rpx
;
}
.showSchemaCode
{
margin-top
:
10px
;
}
</
style
>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录