Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
f8a46ff1
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看板
提交
f8a46ff1
编写于
1月 22, 2024
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
file system manager 测试用例调整 确保正常运行
上级
6e378556
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
15 deletion
+13
-15
pages/API/get-file-system-manager/get-file-system-manager.test.js
...I/get-file-system-manager/get-file-system-manager.test.js
+13
-15
未找到文件。
pages/API/get-file-system-manager/get-file-system-manager.test.js
浏览文件 @
f8a46ff1
...
...
@@ -278,11 +278,11 @@ describe('ExtApi-FileManagerTest', () => {
/**
* 从资源文件中读取图片为base64,测试写入较大文件场景
* 'static/
list-mock/safe.png
' 注意,依赖这个资源文件,不能删除
* 'static/
test-image/logo.ico
' 注意,依赖这个资源文件,不能删除
*/
await
page
.
setData
({
basePath
:
""
,
readFile
:
'
static/
list-mock/safe.png
'
,
readFile
:
'
static/
test-image/logo.ico
'
,
readFileEncoding
:
'
base64
'
})
...
...
@@ -292,10 +292,9 @@ describe('ExtApi-FileManagerTest', () => {
await
btnReadFileButton
.
tap
()
await
isDone
()
let
readFileRet
=
await
getData
(
'
readFileRet
'
)
expect
(
readFileRet
.
length
).
toEqual
(
426128
)
expect
(
readFileRet
.
length
).
toEqual
(
208544
)
let
endStr
=
readFileRet
.
substring
(
readFileRet
.
length
-
10
)
expect
(
endStr
).
toEqual
(
"
lFTkSuQmCC
"
)
expect
(
endStr
).
toEqual
(
"
///////w==
"
)
await
page
.
setData
({
basePath
:
globalTempPath
,
...
...
@@ -335,9 +334,9 @@ describe('ExtApi-FileManagerTest', () => {
await
isDone
()
let
getFileInfoSize
=
await
getData
(
'
getFileInfoSize
'
)
expect
(
getFileInfoSize
).
toEqual
(
426128
)
expect
(
getFileInfoSize
).
toEqual
(
208544
)
let
getFileInfoDigest
=
await
getData
(
'
getFileInfoDigest
'
)
expect
(
getFileInfoDigest
).
toEqual
(
"
795fd5a20b4f0a63504330e9132dcd30
"
)
expect
(
getFileInfoDigest
).
toEqual
(
"
486f75ea76625f8c103cac4bc9c49511
"
)
// 切换为 sha1
await
page
.
setData
({
...
...
@@ -348,9 +347,9 @@ describe('ExtApi-FileManagerTest', () => {
await
isDone
()
getFileInfoSize
=
await
getData
(
'
getFileInfoSize
'
)
expect
(
getFileInfoSize
).
toEqual
(
426128
)
expect
(
getFileInfoSize
).
toEqual
(
208544
)
getFileInfoDigest
=
await
getData
(
'
getFileInfoDigest
'
)
expect
(
getFileInfoDigest
).
toEqual
(
"
74877928eddd0351bd8b3b1c677b56f25db682fc
"
)
expect
(
getFileInfoDigest
).
toEqual
(
"
1830169a16e7c860beff4a3b0975ba0b6f775f9e
"
)
// 测试不支持的摘要算法,期望返回错误
await
page
.
setData
({
...
...
@@ -499,8 +498,8 @@ describe('ExtApi-FileManagerTest', () => {
// 准备从资源目录拷贝png
await
page
.
setData
({
basePath
:
""
,
unlinkFile
:
'
static/
list-mock/safe.png
'
,
accessFile
:
'
static/
list-mock/safe.png
'
,
unlinkFile
:
'
static/
test-image/logo.ico
'
,
accessFile
:
'
static/
test-image/logo.ico
'
,
})
// 检查资源文件,期望存在
await
btnAccessFileButton
.
tap
()
...
...
@@ -522,7 +521,7 @@ describe('ExtApi-FileManagerTest', () => {
// 复制资源到 root目录
await
page
.
setData
({
copyToBasePath
:
globalRootPath
,
copyFromFile
:
"
static/
list-mock/safe.png
"
,
copyFromFile
:
"
static/
test-image/logo.ico
"
,
copyToFile
:
"
a/从代码目录拷贝的资源.png
"
})
const
btnCopyFileButton
=
await
page
.
$
(
'
#btn-copy-file
'
)
...
...
@@ -542,12 +541,11 @@ describe('ExtApi-FileManagerTest', () => {
accessFileRet
=
await
getData
(
"
accessFileRet
"
)
expect
(
accessFileRet
).
toEqual
(
'
access:ok
'
)
await
btnUnLinkFileButton
.
tap
()
await
isDone
()
await
btnAccessFileButton
.
tap
()
await
isDone
()
await
btnAccessFileButton
.
tap
()
await
isDone
()
accessFileRet
=
await
getData
(
"
accessFileRet
"
)
expect
(
accessFileRet
).
toEqual
(
''
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录